Re: [PATCHv2] ident.c: add support for IPv6

2015-11-19 Thread Jeff King
On Thu, Nov 19, 2015 at 02:54:20PM +0100, Elia Pinto wrote: > Add IPv6 support by implementing name resolution with the > protocol agnostic getaddrinfo(3) API. The old gethostbyname(3) > code is still available when git is compiled with NO_IPV6. > > Signed-off-by: Elia Pinto > Helped-by: Jeff Ki

[PATCHv2] ident.c: add support for IPv6

2015-11-19 Thread Elia Pinto
Add IPv6 support by implementing name resolution with the protocol agnostic getaddrinfo(3) API. The old gethostbyname(3) code is still available when git is compiled with NO_IPV6. Signed-off-by: Elia Pinto Helped-by: Jeff King Helped-by: Eric Sunshine --- This is the second version of the patc