From owner-cvs-src@FreeBSD.ORG Tue Jul 10 09:30:46 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AFF2416A46D; Tue, 10 Jul 2007 09:30:46 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 9FA3713C48C; Tue, 10 Jul 2007 09:30:46 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l6A9UkW3039052; Tue, 10 Jul 2007 09:30:46 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l6A9UkPA039051; Tue, 10 Jul 2007 09:30:46 GMT (envelope-from rwatson) Message-Id: <200707100930.l6A9UkPA039051@repoman.freebsd.org> From: Robert Watson Date: Tue, 10 Jul 2007 09:30:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet udp_usrreq.c udp_var.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 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: Tue, 10 Jul 2007 09:30:46 -0000 rwatson 2007-07-10 09:30:46 UTC FreeBSD src repository Modified files: sys/netinet udp_usrreq.c udp_var.h Log: Further cleanup of UDPv4: - Move udp_sendspace and udp_recvspace global variables and associated sysctls to the top of the file where most other such things are present. - Rename static variable 'blackhole' to 'udp_blackhole' and unstaticize so that we can add blackhole support for UDPv6 using the same MIB variable. - Move udp_append() above udp_input() to match the function order in udp6_usrreq.c. Approved by: re (kensmith) Revision Changes Path 1.216 +95 -98 src/sys/netinet/udp_usrreq.c 1.33 +1 -0 src/sys/netinet/udp_var.h