mirror of
https://github.com/nasa/trick.git
synced 2025-06-19 15:43:54 +00:00
Updated var server multicast address to 239.3.14.15. Ref #452
This commit is contained in:
@ -1411,7 +1411,7 @@ public class SimControlApplication extends TrickApplication implements PropertyC
|
||||
private void retrieveHostPort() {
|
||||
try {
|
||||
multicastSocket = new MulticastSocket(9265);
|
||||
InetAddress group = InetAddress.getByName("224.3.14.15");
|
||||
InetAddress group = InetAddress.getByName("239.3.14.15");
|
||||
multicastSocket.joinGroup(group);
|
||||
|
||||
byte[] buffer = new byte[1024];
|
||||
|
@ -63,7 +63,7 @@ public class SimulationSniffer extends Thread {
|
||||
public void run() {
|
||||
try {
|
||||
multicastSocket = new MulticastSocket(9265) {{
|
||||
joinGroup(InetAddress.getByName("224.3.14.15"));
|
||||
joinGroup(InetAddress.getByName("239.3.14.15"));
|
||||
}};
|
||||
byte[] buffer = new byte[4096];
|
||||
DatagramPacket packet = new DatagramPacket(buffer, buffer.length);
|
||||
|
Reference in New Issue
Block a user