Deleted Added
full compact
tcp_var.h (266618) tcp_var.h (269699)
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 266618 2014-05-24 14:01:18Z bz $
30 * $FreeBSD: head/sys/netinet/tcp_var.h 269699 2014-08-08 01:57:15Z kevlo $
31 */
32
33#ifndef _NETINET_TCP_VAR_H_
34#define _NETINET_TCP_VAR_H_
35
36#include <netinet/tcp.h>
37
38#ifdef _KERNEL

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

649#endif
650void tcp_fini(void *);
651char *tcp_log_addrs(struct in_conninfo *, struct tcphdr *, void *,
652 const void *);
653char *tcp_log_vain(struct in_conninfo *, struct tcphdr *, void *,
654 const void *);
655int tcp_reass(struct tcpcb *, struct tcphdr *, int *, struct mbuf *);
656void tcp_reass_flush(struct tcpcb *);
31 */
32
33#ifndef _NETINET_TCP_VAR_H_
34#define _NETINET_TCP_VAR_H_
35
36#include <netinet/tcp.h>
37
38#ifdef _KERNEL

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

649#endif
650void tcp_fini(void *);
651char *tcp_log_addrs(struct in_conninfo *, struct tcphdr *, void *,
652 const void *);
653char *tcp_log_vain(struct in_conninfo *, struct tcphdr *, void *,
654 const void *);
655int tcp_reass(struct tcpcb *, struct tcphdr *, int *, struct mbuf *);
656void tcp_reass_flush(struct tcpcb *);
657void tcp_input(struct mbuf *, int);
657int tcp_input(struct mbuf **, int *, int);
658u_long tcp_maxmtu(struct in_conninfo *, struct tcp_ifcap *);
659u_long tcp_maxmtu6(struct in_conninfo *, struct tcp_ifcap *);
660void tcp_mss_update(struct tcpcb *, int, int, struct hc_metrics_lite *,
661 struct tcp_ifcap *);
662void tcp_mss(struct tcpcb *, int);
663int tcp_mssopt(struct in_conninfo *);
664struct inpcb *
665 tcp_drop_syn_sent(struct inpcb *, int);

--- 79 unchanged lines hidden ---
658u_long tcp_maxmtu(struct in_conninfo *, struct tcp_ifcap *);
659u_long tcp_maxmtu6(struct in_conninfo *, struct tcp_ifcap *);
660void tcp_mss_update(struct tcpcb *, int, int, struct hc_metrics_lite *,
661 struct tcp_ifcap *);
662void tcp_mss(struct tcpcb *, int);
663int tcp_mssopt(struct in_conninfo *);
664struct inpcb *
665 tcp_drop_syn_sent(struct inpcb *, int);

--- 79 unchanged lines hidden ---