From: Jeremy Stanley Date: Sat, 29 Jul 2017 15:27:22 +0000 (+0000) Subject: Switch example listening port from 6669 to 4000 X-Git-Tag: 0.0.1~149 X-Git-Url: https://mudpy.org/gitweb?p=mudpy.git;a=commitdiff_plain;h=e5d1eed02a846e4d2222e5069ab64319bf1b06f7 Switch example listening port from 6669 to 4000 As a nod to the legacy of DikuMUD, use 4000/tcp as the example listening socket instead of 6669/tcp. --- diff --git a/etc/mudpy.yaml b/etc/mudpy.yaml index c745ab6..ab7c9ed 100644 --- a/etc/mudpy.yaml +++ b/etc/mudpy.yaml @@ -43,7 +43,7 @@ __control__: .mudpy.movement.west.vector: [-1,0,0] .mudpy.network.host: '::1' -.mudpy.network.port: 6669 +.mudpy.network.port: 4000 #.mudpy.process.daemon: true #.mudpy.process.pidfile: mudpy.pid diff --git a/mudpy/tests/fixtures/test_daemon.yaml b/mudpy/tests/fixtures/test_daemon.yaml index 6b72d15..ac63091 100644 --- a/mudpy/tests/fixtures/test_daemon.yaml +++ b/mudpy/tests/fixtures/test_daemon.yaml @@ -43,7 +43,7 @@ __control__: .mudpy.movement.west.vector: [-1,0,0] .mudpy.network.host: '::1' -.mudpy.network.port: 6669 +.mudpy.network.port: 4000 .mudpy.process.daemon: true .mudpy.process.pidfile: var/mudpy.pid diff --git a/mudpy/tests/selftest.py b/mudpy/tests/selftest.py index 3461b6d..8713be5 100644 --- a/mudpy/tests/selftest.py +++ b/mudpy/tests/selftest.py @@ -223,7 +223,7 @@ def main(): success = True start = time.time() for luser in lusers: - luser.open("::1", 6669) + luser.open("::1", 4000) for test, description in dialogue: print("\nTesting %s..." % description) test_start = time.time()