From: Guido van Rossum Date: Mon, 14 Dec 1992 15:05:53 +0000 (+0000) Subject: Choose a port that doesn't conmflict with real radio X-Git-Tag: v0.9.8~59 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a8413b2ef00525b7f47cab1f5882ee7c0b2e9877;p=thirdparty%2FPython%2Fcpython.git Choose a port that doesn't conmflict with real radio --- diff --git a/Demo/sgi/al/broadcast.py b/Demo/sgi/al/broadcast.py index 22452a3bc50d..5ee96560f837 100755 --- a/Demo/sgi/al/broadcast.py +++ b/Demo/sgi/al/broadcast.py @@ -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) diff --git a/Demo/sgi/al/radio.py b/Demo/sgi/al/radio.py index 1b723699aad2..6cde805c38f0 100755 --- a/Demo/sgi/al/radio.py +++ b/Demo/sgi/al/radio.py @@ -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) diff --git a/Demo/sgi/al/unicast.py b/Demo/sgi/al/unicast.py index 8a5359212ee5..8e0c1a8378a6 100755 --- a/Demo/sgi/al/unicast.py +++ b/Demo/sgi/al/unicast.py @@ -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)