From ab56e8b192f1b86fc9601d31ae4f9a1f0ab4a9d8 Mon Sep 17 00:00:00 2001 From: wollman Date: Thu, 13 Jun 1996 20:45:05 +0000 Subject: Add an independent implementation of addr2ascii(3) and ascii2addr(3) following the API of the INRIA IPv6 implementation. --- lib/libc/net/Makefile.inc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/libc/net/Makefile.inc b/lib/libc/net/Makefile.inc index 4c9bd23..a1cb045 100644 --- a/lib/libc/net/Makefile.inc +++ b/lib/libc/net/Makefile.inc @@ -3,7 +3,8 @@ # machine-independent net sources .PATH: ${.CURDIR}/${MACHINE}/net ${.CURDIR}/net -SRCS+= gethostbydns.c gethostbyht.c gethostbynis.c gethostnamadr.c \ +SRCS+= addr2ascii.c ascii2addr.c \ + gethostbydns.c gethostbyht.c gethostbynis.c gethostnamadr.c \ getnetbydns.c getnetbyht.c getnetbynis.c getnetnamadr.c \ getproto.c getprotoent.c getprotoname.c getservbyname.c \ getservbyport.c getservent.c herror.c inet_addr.c inet_lnaof.c \ @@ -17,12 +18,14 @@ SRCS+= gethostbydns.c gethostbyht.c gethostbynis.c gethostnamadr.c \ # machine-dependent net sources .include "${.CURDIR}/${MACHINE}/net/Makefile.inc" -MAN3+= net/byteorder.3 net/ethers.3 net/gethostbyname.3 net/getnetent.3 \ +MAN3+= net/addr2ascii.3 \ + net/byteorder.3 net/ethers.3 net/gethostbyname.3 net/getnetent.3 \ net/getprotoent.3 net/getservent.3 net/inet.3 net/linkaddr.3 \ net/rcmd.3 net/resolver.3 # not installed: net/ns.3 net/iso_addr.3 +MLINKS+=addr2ascii.3 ascii2addr.3 MLINKS+=byteorder.3 htonl.3 byteorder.3 htons.3 byteorder.3 ntohl.3 \ byteorder.3 ntohs.3 MLINKS+=ethers.3 ether_line.3 ethers.3 ether_aton.3 ethers.3 ether_ntoa.3 \ -- cgit v1.1