Browse Source

fix default multicast address

yanic sends requests to ff02::2:1001 and hopglass to ff02::1, so we will hear to both servers
Sunz3r 7 years ago
parent
commit
c794aebb4f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ext-respondd.py

+ 1 - 1
ext-respondd.py

@@ -452,7 +452,7 @@ if options["debug"]:
 if 'addr' in config:
     addr = config['addr']
 else:
-    addr = 'ff02::2'
+    addr = 'ff02::2:1001'
 
 if 'addr' in config:
     port = config['port']