]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Choose a port that doesn't conmflict with real radio
authorGuido van Rossum <guido@python.org>
Mon, 14 Dec 1992 15:05:53 +0000 (15:05 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 14 Dec 1992 15:05:53 +0000 (15:05 +0000)
Demo/sgi/al/broadcast.py
Demo/sgi/al/radio.py
Demo/sgi/al/unicast.py

index 22452a3bc50d7cc66e0101f637e5f5fea45dba28..5ee96560f837bc24c110ad1ea3aed7d6ce4a5096 100755 (executable)
@@ -12,7 +12,7 @@
 import sys, al
 from socket import *
 
-port = 54321
+port = 5555
 if sys.argv[1:]: port = eval(sys.argv[1])
 
 s = socket(AF_INET, SOCK_DGRAM)
index 1b723699aad2756a1c6e5c4a82b34074b792b099..6cde805c38f0f2bb4b556be3940c19099618f3c6 100755 (executable)
@@ -8,7 +8,7 @@
 import sys, al
 from socket import *
 
-port = 54321
+port = 5555
 if sys.argv[1:]: port = eval(sys.argv[1])
 
 s = socket(AF_INET, SOCK_DGRAM)
index 8a5359212ee599913c6500cc49981fb4d8d8f070..8e0c1a8378a68ea9169db774d55780c5d4bd4e8f 100755 (executable)
@@ -12,7 +12,7 @@ from socket import *
 
 host = sys.argv[1]
 
-port = 54321
+port = 5555
 if sys.argv[2:]: port = eval(sys.argv[1])
 
 s = socket(AF_INET, SOCK_DGRAM)