Kaydet (Commit) 34321180 authored tarafından Raymond Hettinger's avatar Raymond Hettinger

SF #784031: Byte-order bug in socket-module getaddrinfo.c

üst 6a180127
......@@ -421,6 +421,7 @@ getaddrinfo(const char*hostname, const char*servname,
switch (gai_afdl[i].a_af) {
case AF_INET:
v4a = ((struct in_addr *)pton)->s_addr;
v4a = ntohl(v4a);
if (IN_MULTICAST(v4a) || IN_EXPERIMENTAL(v4a))
pai->ai_flags &= ~AI_CANONNAME;
v4a >>= IN_CLASSA_NSHIFT;
......
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