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

2015-11-28 Thread Elia Pinto
2015-11-28 18:23 GMT+01:00, Jeff King : > On Fri, Nov 27, 2015 at 02:08:27PM +, Elia Pinto wrote: > >> This is the third version of the patch ($gmane/280488) >> Changes from previous: >> >> - Simplified the implementation, adding the new >> function canonical_name (Jeff King) ($gmane/281479). >

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

2015-11-28 Thread Jeff King
On Fri, Nov 27, 2015 at 02:08:27PM +, Elia Pinto wrote: > This is the third version of the patch ($gmane/280488) > Changes from previous: > > - Simplified the implementation, adding the new > function canonical_name (Jeff King) ($gmane/281479). > Fixed a new typo introduced in the second vers

[PATCHv3] ident.c: add support for IPv6

2015-11-27 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 third version of the patch