Deleted Added
full compact
tcp_var.h (155767) tcp_var.h (156125)
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 155767 2006-02-16 19:38:07Z andre $
30 * $FreeBSD: head/sys/netinet/tcp_var.h 156125 2006-02-28 23:05:59Z andre $
31 */
32
33#ifndef _NETINET_TCP_VAR_H_
34#define _NETINET_TCP_VAR_H_
35
36#include <netinet/tcp.h>
37
38/*

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

168 char t_oobflags; /* have some */
169 char t_iobc; /* input character */
170#define TCPOOB_HAVEDATA 0x01
171#define TCPOOB_HADDATA 0x02
172/* RFC 1323 variables */
173 u_char snd_scale; /* window scaling for send window */
174 u_char rcv_scale; /* window scaling for recv window */
175 u_char request_r_scale; /* pending window scaling */
31 */
32
33#ifndef _NETINET_TCP_VAR_H_
34#define _NETINET_TCP_VAR_H_
35
36#include <netinet/tcp.h>
37
38/*

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

168 char t_oobflags; /* have some */
169 char t_iobc; /* input character */
170#define TCPOOB_HAVEDATA 0x01
171#define TCPOOB_HADDATA 0x02
172/* RFC 1323 variables */
173 u_char snd_scale; /* window scaling for send window */
174 u_char rcv_scale; /* window scaling for recv window */
175 u_char request_r_scale; /* pending window scaling */
176 u_char requested_s_scale;
176 u_char requested_s_scale; /* unused, to be reused later */
177 u_long ts_recent; /* timestamp echo data */
178
179 u_long ts_recent_age; /* when last updated */
180 tcp_seq last_ack_sent;
181/* experimental */
182 u_long snd_cwnd_prev; /* cwnd prior to retransmit */
183 u_long snd_ssthresh_prev; /* ssthresh prior to retransmit */
184 tcp_seq snd_recover_prev; /* snd_recover prior to retransmit */

--- 411 unchanged lines hidden ---
177 u_long ts_recent; /* timestamp echo data */
178
179 u_long ts_recent_age; /* when last updated */
180 tcp_seq last_ack_sent;
181/* experimental */
182 u_long snd_cwnd_prev; /* cwnd prior to retransmit */
183 u_long snd_ssthresh_prev; /* ssthresh prior to retransmit */
184 tcp_seq snd_recover_prev; /* snd_recover prior to retransmit */

--- 411 unchanged lines hidden ---