Browse Source

add IPv6 support

pull/1/head
ghost 11 months ago
parent
commit
2f9c232540
  1. 3
      pymaster.py

3
pymaster.py

@ -67,6 +67,9 @@ class PyMaster: @@ -67,6 +67,9 @@ class PyMaster:
self.serverRL = IPRateLimit('server', 60, 30)
self.clientRL = IPRateLimit('client', 60, 120)
self.ipfilterRL = IPRateLimit('filterlog', 60, 10)
if ':' in ip:
self.sock = socket.socket(socket.AF_INET6, socket.SOCK_DGRAM)
else:
self.sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
self.sock.bind((ip, port))

Loading…
Cancel
Save