Untabify IPv6 changes.

This commit is contained in:
Martin v. Löwis 2001-07-26 13:37:33 +00:00
parent 2e441f7836
commit 4eb5940a4d
5 changed files with 126 additions and 126 deletions

View file

@ -136,18 +136,18 @@ class Telnet:
port = TELNET_PORT
self.host = host
self.port = port
for res in socket.getaddrinfo(host, port, 0, socket.SOCK_STREAM):
af, socktype, proto, canonname, sa = res
try:
self.sock = socket.socket(af, socktype, proto)
self.sock.connect(sa)
except socket.error, msg:
self.sock.close()
self.sock = None
continue
break
for res in socket.getaddrinfo(host, port, 0, socket.SOCK_STREAM):
af, socktype, proto, canonname, sa = res
try:
self.sock = socket.socket(af, socktype, proto)
self.sock.connect(sa)
except socket.error, msg:
self.sock.close()
self.sock = None
continue
break
if not self.sock:
raise socket.error, msg
raise socket.error, msg
def __del__(self):
"""Destructor -- close the connection."""