From 0f58c2df4f0e4c22cb19ed70071a63ba49baeeed Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Mon, 4 Feb 2013 09:13:09 -0500 Subject: [PATCH] update udp simulator to new default port --- tests/simulator-udp.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/simulator-udp.pl b/tests/simulator-udp.pl index ef6a65e86..86539f5e2 100755 --- a/tests/simulator-udp.pl +++ b/tests/simulator-udp.pl @@ -53,7 +53,7 @@ sub msg { } socket($fd, AF_INET, SOCK_DGRAM, 0) or die $!; -connect($fd, sockaddr_in(12222, inet_aton("127.0.0.1"))) or die $!; +connect($fd, sockaddr_in(2222, inet_aton("127.0.0.1"))) or die $!; msg('V') eq '20040107' or die;