Deleted Added
full compact
tcp_var.h (181056) tcp_var.h (182851)
1/*-
2 * Copyright (c) 1982, 1986, 1993, 1994, 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

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

22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)tcp_var.h 8.4 (Berkeley) 5/24/95
1/*-
2 * Copyright (c) 1982, 1986, 1993, 1994, 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

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

22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)tcp_var.h 8.4 (Berkeley) 5/24/95
30 * $FreeBSD: head/sys/netinet/tcp_var.h 181056 2008-07-31 15:10:09Z rpaulo $
30 * $FreeBSD: head/sys/netinet/tcp_var.h 182851 2008-09-07 18:50:25Z bz $
31 */
32
33#ifndef _NETINET_TCP_VAR_H_
34#define _NETINET_TCP_VAR_H_
35
36#include <netinet/tcp.h>
37
38/*

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

541void tcp_fini(void *);
542char *tcp_log_addrs(struct in_conninfo *, struct tcphdr *, void *,
543 const void *);
544int tcp_reass(struct tcpcb *, struct tcphdr *, int *, struct mbuf *);
545void tcp_reass_init(void);
546void tcp_input(struct mbuf *, int);
547u_long tcp_maxmtu(struct in_conninfo *, int *);
548u_long tcp_maxmtu6(struct in_conninfo *, int *);
31 */
32
33#ifndef _NETINET_TCP_VAR_H_
34#define _NETINET_TCP_VAR_H_
35
36#include <netinet/tcp.h>
37
38/*

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

541void tcp_fini(void *);
542char *tcp_log_addrs(struct in_conninfo *, struct tcphdr *, void *,
543 const void *);
544int tcp_reass(struct tcpcb *, struct tcphdr *, int *, struct mbuf *);
545void tcp_reass_init(void);
546void tcp_input(struct mbuf *, int);
547u_long tcp_maxmtu(struct in_conninfo *, int *);
548u_long tcp_maxmtu6(struct in_conninfo *, int *);
549void tcp_mss_update(struct tcpcb *, int, struct hc_metrics_lite *);
549void tcp_mss(struct tcpcb *, int);
550int tcp_mssopt(struct in_conninfo *);
551struct inpcb *
552 tcp_drop_syn_sent(struct inpcb *, int);
553struct inpcb *
554 tcp_mtudisc(struct inpcb *, int);
555struct tcpcb *
556 tcp_newtcpcb(struct inpcb *);

--- 47 unchanged lines hidden ---
550void tcp_mss(struct tcpcb *, int);
551int tcp_mssopt(struct in_conninfo *);
552struct inpcb *
553 tcp_drop_syn_sent(struct inpcb *, int);
554struct inpcb *
555 tcp_mtudisc(struct inpcb *, int);
556struct tcpcb *
557 tcp_newtcpcb(struct inpcb *);

--- 47 unchanged lines hidden ---