Fixed Java client implementation of setCONN

- The Java client now reads the CONF message sent by the plugin in response to the CONN command.
This commit is contained in:
Jason Watkins
2015-04-14 10:14:59 -07:00
parent fe88204b57
commit 4927b6d1b8

View File

@@ -693,5 +693,6 @@ public class XPlaneConnect implements AutoCloseable
inSocket.close();
inSocket = new DatagramSocket(recvPort);
inSocket.setSoTimeout(soTimeout);
readUDP(); // Try to read response
}
}