Nicolas Terray (nterray)2015-07-17 14:29 Patch integrated into Tuleap 8.4.99.1. Thanks for your input! Status changed from Under review to ClosedClose date set to 2015-07-17
Thomas Gerbet (tgerbet)2015-07-15 22:32 I have fixed the issue and do some quick tests, I have not encounter other problems. However, if you do, please do not hesitate to open an new request. A patch is under review: gerrit #4219. Status changed from New to Under reviewReported in version changed from 8.3 to AllPlatform cleared values: CentOS 6
Thomas Gerbet (tgerbet)2015-07-13 09:49 I think I can answer the question: an IPv6 is represented with 8 groups of 4 digits with a separator between each group (8*4+7) which means 39 characters seem enough to store an IPv6. However, to facilitate the transition to IPv6, an IPv6 could be mapped to an IPv4 (RFC 4291 Section 2.5.5.1 and 2.5.5.2). In that case, the last 32 bits of the address are displayed with the IPv4 style format. In that case we need at least 45 characters (6*4+6+4*3+3). The value of INET6_ADDRSTRLEN is defined to 46 chars because it counts 45 chars for the address and the \0 at the end of the string.
Manuel Vacelet (vaceletm)2015-07-09 17:31 Thanks for reporting this, it seems that we should extends even to 46 http://stackoverflow.com/a/2212055/1528413 I'm not an ipv6 expert so I'd like to understand why you propose 45 here, could you explain ?