From 2e7ceffc7d2bc663f0a4f950e153e1f65ab74a52 Mon Sep 17 00:00:00 2001 From: Brittokki <Brittokki@192.168.0.6> Date: Wed, 2 Sep 2020 11:48:56 -0700 Subject: [PATCH] --- examples/src/UdpMulticastExamples/UdpSender.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/src/UdpMulticastExamples/UdpSender.java b/examples/src/UdpMulticastExamples/UdpSender.java index 00fd1fb11e..499122c2a8 100644 --- a/examples/src/UdpMulticastExamples/UdpSender.java +++ b/examples/src/UdpMulticastExamples/UdpSender.java @@ -23,7 +23,7 @@ public class UdpSender public static final int SENDING_PORT = 1414; public static final int RECEIVING_PORT = 1415; public static final int TOTAL_PACKETS_TO_SEND = 100; - public static final String DESTINATION_HOST = "localhost"; // localhost 127.0.0.1 or argon 10.1.105.1 + public static final String DESTINATION_HOST = "10.1.105.8"; @SuppressWarnings("SleepWhileInLoop") public static void main(String[] args) throws IOException @@ -32,7 +32,7 @@ public class UdpSender DataOutputStream dos = null; int packetID = 0; // counter variable to send in packet float value = -1.0f; // unreachable value is good sentinel to ensure expected changes occur - String message = "Hello MV3500"; // no really + String message = "We got London on da Track"; // no really String padding = new String(); try -- GitLab