Skip to content
Snippets Groups Projects
Commit fa6a76be authored by brutzman's avatar brutzman
Browse files

default: no delays or looping

parent 84ade4ea
No related branches found
No related tags found
No related merge requests found
...@@ -24,10 +24,10 @@ public class AllPduSender ...@@ -24,10 +24,10 @@ public class AllPduSender
public static final int DEFAULT_MULTICAST_PORT = 3000; public static final int DEFAULT_MULTICAST_PORT = 3000;
/** Duration in milliseconds, set to 0 to avoid pausing between PDU sends */ /** Duration in milliseconds, set to 0 to avoid pausing between PDU sends */
private long THREAD_SLEEP_INTERVAL = 2000; private long THREAD_SLEEP_INTERVAL = 0;
/** Number of complete loops to perform */ /** Number of complete loops to perform */
private int SEND_LOOPS_TO_PERFORM = 10; private int SEND_LOOPS_TO_PERFORM = 1;
private static InetAddress multicastAddress; private static InetAddress multicastAddress;
private static int port; private static int port;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment