Commit cef07387 authored by Paul Sokolovsky's avatar Paul Sokolovsky

example/http_client.py: Remove unused code.

parent cf4b72bf
......@@ -6,19 +6,9 @@ except:
s = _socket.socket()
if 1:
ai = _socket.getaddrinfo("google.com", 80)
print("Address infos:", ai)
addr = ai[0][4]
else:
# Deprecated ways to construct connection address
addr = _socket.sockaddr_in()
addr.sin_family = 2
#addr.sin_addr = (0x0100 << 16) + 0x007f
#addr.sin_addr = (0x7f00 << 16) + 0x0001
#addr.sin_addr = _socket.inet_aton("127.0.0.1")
addr.sin_addr = _socket.gethostbyname("google.com")
addr.sin_port = _socket.htons(80)
ai = _socket.getaddrinfo("google.com", 80)
print("Address infos:", ai)
addr = ai[0][4]
print("Connect address:", addr)
s.connect(addr)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment