summaryrefslogtreecommitdiffstats
path: root/lib/libc/net/getnameinfo.c
diff options
context:
space:
mode:
authorshin <shin@FreeBSD.org>2000-02-19 16:10:16 +0000
committershin <shin@FreeBSD.org>2000-02-19 16:10:16 +0000
commit98f78aba9d0830c72c8bc3a41299b63ac701f87d (patch)
treec2c50f9850955d5a43d78290f1052fd302da52ea /lib/libc/net/getnameinfo.c
parent64995770850f2ea869f74413a0bebc17df9a6db4 (diff)
downloadFreeBSD-src-98f78aba9d0830c72c8bc3a41299b63ac701f87d.zip
FreeBSD-src-98f78aba9d0830c72c8bc3a41299b63ac701f87d.tar.gz
Change IPv6 scoped addr format again based on recent standard discussion.
Sorry for the flapping, but no change will be done for 4.0 anymore. Official standard will be published around April or later. If different format would be adopted at that time, then support for the new format will be added to the succeeding FreeBSD 4.x. Approved by: jkh
Diffstat (limited to 'lib/libc/net/getnameinfo.c')
-rw-r--r--lib/libc/net/getnameinfo.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/lib/libc/net/getnameinfo.c b/lib/libc/net/getnameinfo.c
index 42f7906..5edcffb 100644
--- a/lib/libc/net/getnameinfo.c
+++ b/lib/libc/net/getnameinfo.c
@@ -199,14 +199,11 @@ getnameinfo(sa, salen, host, hostlen, serv, servlen, flags)
+ scopelen > hostlen)
return ENI_MEMORY;
/*
- * Shift the host string to allocate
- * space for the scope ID part.
+ * Construct <numeric-addr><delim><scopeid>
*/
- memmove(host + scopelen + 1, host, numaddrlen);
- /* copy the scope ID and the delimiter */
- memcpy(host, ifname, scopelen);
- host[scopelen] = SCOPE_DELIMITER;
- host[scopelen + 1 + numaddrlen] = '\0';
+ memcpy(host + numaddrlen + 1, ifname, scopelen);
+ host[numaddrlen] = SCOPE_DELIMITER;
+ host[numaddrlen + 1 + scopelen] = '\0';
}
}
#endif /* INET6 */
OpenPOWER on IntegriCloud