Deleted Added
full compact
tcp_subr.c (111483) tcp_subr.c (111748)
1/*
2 * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1995
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 17 unchanged lines hidden (view full) ---

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)tcp_subr.c 8.2 (Berkeley) 5/24/95
1/*
2 * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1995
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 17 unchanged lines hidden (view full) ---

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)tcp_subr.c 8.2 (Berkeley) 5/24/95
34 * $FreeBSD: head/sys/netinet/tcp_subr.c 111483 2003-02-25 14:08:41Z rwatson $
34 * $FreeBSD: head/sys/netinet/tcp_subr.c 111748 2003-03-02 16:54:40Z des $
35 */
36
37#include "opt_compat.h"
38#include "opt_inet6.h"
39#include "opt_ipsec.h"
40#include "opt_mac.h"
41#include "opt_tcpdebug.h"
42

--- 824 unchanged lines hidden (view full) ---

867 tp->t_softerror) {
868 tcp_drop(tp, error);
869 return (struct inpcb *)0;
870 } else {
871 tp->t_softerror = error;
872 return inp;
873 }
874#if 0
35 */
36
37#include "opt_compat.h"
38#include "opt_inet6.h"
39#include "opt_ipsec.h"
40#include "opt_mac.h"
41#include "opt_tcpdebug.h"
42

--- 824 unchanged lines hidden (view full) ---

867 tp->t_softerror) {
868 tcp_drop(tp, error);
869 return (struct inpcb *)0;
870 } else {
871 tp->t_softerror = error;
872 return inp;
873 }
874#if 0
875 wakeup((caddr_t) &so->so_timeo);
875 wakeup( &so->so_timeo);
876 sorwakeup(so);
877 sowwakeup(so);
878#endif
879}
880
881static int
882tcp_pcblist(SYSCTL_HANDLER_ARGS)
883{

--- 1048 unchanged lines hidden ---
876 sorwakeup(so);
877 sowwakeup(so);
878#endif
879}
880
881static int
882tcp_pcblist(SYSCTL_HANDLER_ARGS)
883{

--- 1048 unchanged lines hidden ---