]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
2292bis -> RFC 3542
authorMark Andrews <marka@isc.org>
Mon, 2 Apr 2007 02:03:55 +0000 (02:03 +0000)
committerMark Andrews <marka@isc.org>
Mon, 2 Apr 2007 02:03:55 +0000 (02:03 +0000)
lib/isc/unix/socket.c

index 6fea7920c94d6d6444fdd77c30fdf6d39d5d2653..367ce6ef6fea22f64bbe8dc097641293a0fa3f2d 100644 (file)
@@ -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,