Change port for raw socket connection from 5300 (chosen at random
authordjfiander <djfiander>
Sun, 30 Apr 2006 00:12:59 +0000 (00:12 +0000)
committerdjfiander <djfiander>
Sun, 30 Apr 2006 00:12:59 +0000 (00:12 +0000)
by your's truly) to 6001, as per Envisionware email.

SIPconfig.xml
t/SIPtest.pm

index 2bc6de4..cb97e9b 100644 (file)
@@ -15,7 +15,7 @@
       timeout="60" />
 
     <service
-      port="127.0.0.1:5300/tcp"
+      port="127.0.0.1:6001/tcp"
       transport="RAW" 
       protocol="SIP/2.00"
       timeout="60" />
index bdfb853..acd774b 100644 (file)
@@ -145,7 +145,7 @@ sub run_sip_tests {
     $Sip::error_detection = 1;
     $/ = "\r";
 
-    $sock = new IO::Socket::INET(PeerAddr => 'localhost:5300',
+    $sock = new IO::Socket::INET(PeerAddr => 'localhost:6001',
                                 Type     => SOCK_STREAM);
     BAIL_OUT('failed to create connection to server') unless $sock;