From owner-cvs-src@FreeBSD.ORG Sun May 15 20:15:21 2005 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6290016A4CE; Sun, 15 May 2005 20:15:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4993243D9B; Sun, 15 May 2005 20:15:21 +0000 (GMT) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j4FKFG1f021151; Sun, 15 May 2005 20:15:16 GMT (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j4FKFGsI021150; Sun, 15 May 2005 20:15:16 GMT (envelope-from ume) Message-Id: <200505152015.j4FKFGsI021150@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Sun, 15 May 2005 20:15:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/include netdb.h src/lib/libc/net getaddrinfo.c getnetbydns.c getnetbyht.c getnetbynis.c getnetnamadr.c netdb_private.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 May 2005 20:15:21 -0000 ume 2005-05-15 20:15:15 UTC FreeBSD src repository Modified files: include netdb.h lib/libc/net getaddrinfo.c getnetbydns.c getnetbyht.c getnetbynis.c getnetnamadr.c netdb_private.h Log: - The ai_addrlen of a struct addrinfo used to be a size_t, per RFC 2553. In XNS5.2, and subsequently in POSIX-2001 and RFC 3493, it was changed to a socklen_t. And, the n_net of a struct netent used to be an unsigned long integer. In XNS5, and subsequently in POSIX-2001, it was changed to an uint32_t. To accomodate for this while preserving ABI compatibility with the old interface, we need to prepend or append 32 bits of padding, depending on the (LP64) architecture's endianness. - Correct 1st argument of getnetbyaddr() to uint32_t on 32 bit arch. Stay as is on 64 bit arch for ABI backward compatibility for now. Reviewed by: das, peter MFC after: 2 weeks Revision Changes Path 1.36 +46 -5 src/include/netdb.h 1.69 +4 -1 src/lib/libc/net/getaddrinfo.c 1.30 +12 -8 src/lib/libc/net/getnetbydns.c 1.15 +5 -2 src/lib/libc/net/getnetbyht.c 1.18 +7 -4 src/lib/libc/net/getnetbynis.c 1.20 +8 -3 src/lib/libc/net/getnetnamadr.c 1.9 +1 -7 src/lib/libc/net/netdb_private.h