diff options
author | Guido van Rossum <guido@python.org> | 1992-12-14 15:05:53 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-12-14 15:05:53 (GMT) |
commit | a8413b2ef00525b7f47cab1f5882ee7c0b2e9877 (patch) | |
tree | 80dfbe5880899d3af6d229b001af35f3e81b01b9 /Demo/sgi | |
parent | e266344faf20edeb1863be1550b68028a2ae7735 (diff) | |
download | cpython-a8413b2ef00525b7f47cab1f5882ee7c0b2e9877.zip cpython-a8413b2ef00525b7f47cab1f5882ee7c0b2e9877.tar.gz cpython-a8413b2ef00525b7f47cab1f5882ee7c0b2e9877.tar.bz2 |
Choose a port that doesn't conmflict with real radio
Diffstat (limited to 'Demo/sgi')
-rwxr-xr-x | Demo/sgi/al/broadcast.py | 2 | ||||
-rwxr-xr-x | Demo/sgi/al/radio.py | 2 | ||||
-rwxr-xr-x | Demo/sgi/al/unicast.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Demo/sgi/al/broadcast.py b/Demo/sgi/al/broadcast.py index 22452a3..5ee9656 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 1b72369..6cde805 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 8a53592..8e0c1a8 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) |