Revision b6dce92e slirp/tcp_var.h

b/slirp/tcp_var.h
75 75
	tcp_seq	snd_wl1;		/* window update seg seq number */
76 76
	tcp_seq	snd_wl2;		/* window update seg ack number */
77 77
	tcp_seq	iss;			/* initial send sequence number */
78
	u_int32_t snd_wnd;		/* send window */
78
	uint32_t snd_wnd;		/* send window */
79 79
/* receive sequence variables */
80
	u_int32_t rcv_wnd;		/* receive window */
80
	uint32_t rcv_wnd;		/* receive window */
81 81
	tcp_seq	rcv_nxt;		/* receive next */
82 82
	tcp_seq	rcv_up;			/* receive urgent pointer */
83 83
	tcp_seq	irs;			/* initial receive sequence number */
......
91 91
					 * used to recognize retransmits
92 92
					 */
93 93
/* congestion control (for slow start, source quench, retransmit after loss) */
94
	u_int32_t snd_cwnd;		/* congestion-controlled window */
95
	u_int32_t snd_ssthresh;		/* snd_cwnd size threshold for
94
	uint32_t snd_cwnd;		/* congestion-controlled window */
95
	uint32_t snd_ssthresh;		/* snd_cwnd size threshold for
96 96
					 * for slow start exponential to
97 97
					 * linear switch
98 98
					 */
......
106 106
	short	t_srtt;			/* smoothed round-trip time */
107 107
	short	t_rttvar;		/* variance in round-trip time */
108 108
	u_short	t_rttmin;		/* minimum rtt allowed */
109
	u_int32_t max_sndwnd;		/* largest window peer has offered */
109
	uint32_t max_sndwnd;		/* largest window peer has offered */
110 110

  
111 111
/* out-of-band data */
112 112
	char	t_oobflags;		/* have some */
......
120 120
	u_char	rcv_scale;		/* window scaling for recv window */
121 121
	u_char	request_r_scale;	/* pending window scaling */
122 122
	u_char	requested_s_scale;
123
	u_int32_t	ts_recent;		/* timestamp echo data */
124
	u_int32_t	ts_recent_age;		/* when last updated */
123
	uint32_t	ts_recent;		/* timestamp echo data */
124
	uint32_t	ts_recent_age;		/* when last updated */
125 125
	tcp_seq	last_ack_sent;
126 126

  
127 127
};

Also available in: Unified diff