From owner-cvs-src-old@FreeBSD.ORG Fri Feb 13 15:14:53 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6B11F10656EA for ; Fri, 13 Feb 2009 15:14:53 +0000 (UTC) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 5754D8FC21 for ; Fri, 13 Feb 2009 15:14:53 +0000 (UTC) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n1DFErHp004050 for ; Fri, 13 Feb 2009 15:14:53 GMT (envelope-from luigi@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n1DFErln004049 for cvs-src-old@freebsd.org; Fri, 13 Feb 2009 15:14:53 GMT (envelope-from luigi@repoman.freebsd.org) Message-Id: <200902131514.n1DFErln004049@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to luigi@repoman.freebsd.org using -f From: Luigi Rizzo Date: Fri, 13 Feb 2009 15:14:43 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet in_systm.h ip.h ip_icmp.c ip_icmp.h ip_options.c tcp_debug.h tcp_subr.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Feb 2009 15:14:53 -0000 luigi 2009-02-13 15:14:43 UTC FreeBSD src repository Modified files: sys/netinet in_systm.h ip.h ip_icmp.c ip_icmp.h ip_options.c tcp_debug.h tcp_subr.c Log: SVN rev 188578 on 2009-02-13 15:14:43Z by luigi Use uint32_t instead of n_long and n_time, and uint16_t instead of n_short. Add a note next to fields in network format. The n_* types are not enough for compiler checks on endianness, and their use often requires an otherwise unnecessary #include The typedef in in_systm.h are still there. Revision Changes Path 1.13 +1 -1 src/sys/netinet/in_systm.h 1.34 +2 -2 src/sys/netinet/ip.h 1.129 +5 -2 src/sys/netinet/ip_icmp.c 1.28 +13 -9 src/sys/netinet/ip_icmp.h 1.15 +5 -5 src/sys/netinet/ip_options.c 1.17 +1 -1 src/sys/netinet/tcp_debug.h 1.334 +2 -2 src/sys/netinet/tcp_subr.c