diff --git a/lib/libc/net/getaddrinfo.3 b/lib/libc/net/getaddrinfo.3 index d9008903dc6b..ac94d83b072e 100644 --- a/lib/libc/net/getaddrinfo.3 +++ b/lib/libc/net/getaddrinfo.3 @@ -1,5 +1,5 @@ -.\" $NetBSD: getaddrinfo.3,v 1.15 2000/07/25 04:51:27 itojun Exp $ -.\" $KAME: getaddrinfo.3,v 1.21 2000/07/25 04:49:42 itojun Exp $ +.\" $NetBSD: getaddrinfo.3,v 1.16 2000/08/09 22:52:49 itojun Exp $ +.\" $KAME: getaddrinfo.3,v 1.22 2000/08/09 21:16:17 itojun Exp $ .\" .\" Copyright (c) 1983, 1987, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -601,4 +601,6 @@ and documented in .Pq RFC2553 . .\" .Sh BUGS +The current implementation is not thread-safe. +.Pp The text was shamelessly copied from RFC2553. diff --git a/lib/libc/net/getnameinfo.3 b/lib/libc/net/getnameinfo.3 index 26c059205717..a80c24b61a7e 100644 --- a/lib/libc/net/getnameinfo.3 +++ b/lib/libc/net/getnameinfo.3 @@ -1,5 +1,5 @@ .\" $KAME: getnameinfo.3,v 1.10 2000/05/11 03:02:45 itojun Exp $ -.\" $KAME: getnameinfo.3,v 1.14 2000/06/30 16:46:00 itojun Exp $ +.\" $KAME: getnameinfo.3,v 1.17 2000/08/09 21:16:17 itojun Exp $ .\" .\" Copyright (c) 1983, 1987, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -60,7 +60,8 @@ function is defined for protocol-independent address-to-nodename translation. Its functionality is a reverse conversion of .Xr getaddrinfo 3 , and implements similar functionality with -.Xr gethostbyaddr 3 and +.Xr gethostbyaddr 3 +and .Xr getservbyport 3 in more sophisticated manner. .Pp @@ -282,7 +283,7 @@ The error code can be found in errno. .%A Atsushi Onoe .%T "An Extension of Format for IPv6 Scoped Addresses" .%R internet draft -.%N draft-ietf-ipngwg-scopedaddr-format-01.txt +.%N draft-ietf-ipngwg-scopedaddr-format-02.txt .%O work in progress material .Re .Rs @@ -304,4 +305,6 @@ and documented in .Pq RFC2553 . .\" .Sh BUGS +The current implementation is not thread-safe. +.Pp The text was shamelessly copied from RFC2553.