mirror of
https://github.com/YGGverse/pymaster.git
synced 2025-09-05 18:42:27 +00:00
add IPv6 support
This commit is contained in:
parent
75487e36e8
commit
2f9c232540
@ -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…
x
Reference in New Issue
Block a user