mirror of
https://github.com/uhi22/pyPLC.git
synced 2024-11-10 01:05:42 +00:00
fix: removed other unused gethostbyname and getaddrinfo to avoid crash in simulation mode
This commit is contained in:
parent
c3cc7f7eae
commit
c26763ac5d
1 changed files with 1 additions and 9 deletions
|
@ -186,15 +186,7 @@ class pyPlcTcpServerSocket():
|
||||||
self.ourSocket.listen(1)
|
self.ourSocket.listen(1)
|
||||||
self.callbackStateNotification(1) # inform the higher level state machines, that TCP is listening
|
self.callbackStateNotification(1) # inform the higher level state machines, that TCP is listening
|
||||||
self.addToTrace("pyPlcTcpSocket listening on port " + str(self.tcpPort))
|
self.addToTrace("pyPlcTcpSocket listening on port " + str(self.tcpPort))
|
||||||
hostname=socket.gethostname()
|
# (unused gethostbyname removed, see https://openinverter.org/forum/viewtopic.php?p=59970#p59970)
|
||||||
IPAddr=socket.gethostbyname(hostname)
|
|
||||||
addressInfo = socket.getaddrinfo(hostname, None, socket.AF_INET6)
|
|
||||||
#print("Your Computer Name is:"+hostname)
|
|
||||||
self.addToTrace("The socket is linked the following IP addresses:")
|
|
||||||
for i in range(0, len(addressInfo)):
|
|
||||||
#fe80::4c46:fea5:b6c9:25a9
|
|
||||||
IPv6Addr = addressInfo[i][4][0]
|
|
||||||
self.addToTrace(IPv6Addr)
|
|
||||||
self.read_list = [self.ourSocket]
|
self.read_list = [self.ourSocket]
|
||||||
self.rxData = []
|
self.rxData = []
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue