mirror of
https://github.com/markqvist/Reticulum.git
synced 2024-11-22 05:30:17 +00:00
Correctly display IPv6 addresses in interface names
This commit is contained in:
parent
212af2f43b
commit
5b8de73143
@ -409,7 +409,12 @@ class TCPClientInterface(Interface):
|
|||||||
|
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return "TCPInterface["+str(self.name)+"/"+str(self.target_ip)+":"+str(self.target_port)+"]"
|
if ":" in self.target_ip:
|
||||||
|
ip_str = f"[{self.target_ip}]"
|
||||||
|
else:
|
||||||
|
ip_str = f"{self.target_ip}"
|
||||||
|
|
||||||
|
return "TCPInterface["+str(self.name)+"/"+ip_str+":"+str(self.target_port)+"]"
|
||||||
|
|
||||||
|
|
||||||
class TCPServerInterface(Interface):
|
class TCPServerInterface(Interface):
|
||||||
@ -575,7 +580,12 @@ class TCPServerInterface(Interface):
|
|||||||
|
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return "TCPServerInterface["+self.name+"/"+self.bind_ip+":"+str(self.bind_port)+"]"
|
if ":" in self.bind_ip:
|
||||||
|
ip_str = f"[{self.bind_ip}]"
|
||||||
|
else:
|
||||||
|
ip_str = f"{self.bind_ip}"
|
||||||
|
|
||||||
|
return "TCPServerInterface["+self.name+"/"+ip_str+":"+str(self.bind_port)+"]"
|
||||||
|
|
||||||
|
|
||||||
class TCPInterfaceHandler(socketserver.BaseRequestHandler):
|
class TCPInterfaceHandler(socketserver.BaseRequestHandler):
|
||||||
|
Loading…
Reference in New Issue
Block a user