Unverified Commit 89bca7a6 authored by Tim Armstrong's avatar Tim Armstrong Committed by GitHub

Removing redundant comment

parent e3739d6f
...@@ -338,7 +338,7 @@ Connection::connect(const Address& addr) ...@@ -338,7 +338,7 @@ Connection::connect(const Address& addr)
struct addrinfo hints; struct addrinfo hints;
struct addrinfo *addrs; struct addrinfo *addrs;
memset(&hints, 0, sizeof(struct addrinfo)); memset(&hints, 0, sizeof(struct addrinfo));
hints.ai_family = addr.family(); /* Allow IPv4 */ hints.ai_family = addr.family();
hints.ai_socktype = SOCK_STREAM; /* Stream socket */ hints.ai_socktype = SOCK_STREAM; /* Stream socket */
hints.ai_flags = 0; hints.ai_flags = 0;
hints.ai_protocol = 0; hints.ai_protocol = 0;
......
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