From: Mark Andrews Date: Mon, 2 Apr 2007 02:03:55 +0000 (+0000) Subject: 2292bis -> RFC 3542 X-Git-Tag: v9.5.0a3~8 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=278a75dbfe6307095cf58dd27810cf6723d36d78;p=thirdparty%2Fbind9.git 2292bis -> RFC 3542 --- diff --git a/lib/isc/unix/socket.c b/lib/isc/unix/socket.c index 6fea7920c94..367ce6ef6fe 100644 --- a/lib/isc/unix/socket.c +++ b/lib/isc/unix/socket.c @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: socket.c,v 1.270 2007/02/26 01:37:37 marka Exp $ */ +/* $Id: socket.c,v 1.271 2007/04/02 02:03:55 marka Exp $ */ /*! \file */ @@ -1613,7 +1613,7 @@ isc_socket_create(isc_socketmgr_t *manager, int pf, isc_sockettype_t type, } #ifdef ISC_PLATFORM_HAVEIN6PKTINFO #ifdef IPV6_RECVPKTINFO - /* 2292bis */ + /* RFC 3542 */ if ((pf == AF_INET6) && (setsockopt(sock->fd, IPPROTO_IPV6, IPV6_RECVPKTINFO, (void *)&on, sizeof(on)) < 0)) { @@ -1628,7 +1628,7 @@ isc_socket_create(isc_socketmgr_t *manager, int pf, isc_sockettype_t type, strbuf); } #else - /* 2292 */ + /* RFC 2292 */ if ((pf == AF_INET6) && (setsockopt(sock->fd, IPPROTO_IPV6, IPV6_PKTINFO, (void *)&on, sizeof(on)) < 0)) { @@ -1644,7 +1644,7 @@ isc_socket_create(isc_socketmgr_t *manager, int pf, isc_sockettype_t type, } #endif /* IPV6_RECVPKTINFO */ #endif /* ISC_PLATFORM_HAVEIN6PKTINFO */ -#ifdef IPV6_USE_MIN_MTU /*2292bis, not too common yet*/ +#ifdef IPV6_USE_MIN_MTU /* RFC 3542, not too common yet*/ /* use minimum MTU */ if (pf == AF_INET6) { (void)setsockopt(sock->fd, IPPROTO_IPV6,