Switch example listening port from 6669 to 4000
authorJeremy Stanley <fungi@yuggoth.org>
Sat, 29 Jul 2017 15:27:22 +0000 (15:27 +0000)
committerJeremy Stanley <fungi@yuggoth.org>
Sat, 29 Jul 2017 15:27:22 +0000 (15:27 +0000)
As a nod to the legacy of DikuMUD, use 4000/tcp as the example
listening socket instead of 6669/tcp.

etc/mudpy.yaml
mudpy/tests/fixtures/test_daemon.yaml
mudpy/tests/selftest.py

index c745ab6..ab7c9ed 100644 (file)
@@ -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
index 6b72d15..ac63091 100644 (file)
@@ -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
index 3461b6d..8713be5 100644 (file)
@@ -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()