mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-16 10:20:30 +00:00
Fix the 'type' for a few variables from tcpcb.
Reviewed by: markj Sponsored by: Limelight Networks Differential Revision: https://reviews.freebsd.org/D5973
This commit is contained in:
parent
fca8407655
commit
2dbc593176
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=298087
@ -108,16 +108,16 @@ typedef struct tcpsinfo {
|
||||
uint32_t tcps_snxt; /* next sequence # to send */
|
||||
uint32_t tcps_rack; /* sequence # we have acked */
|
||||
uint32_t tcps_rnxt; /* next sequence # expected */
|
||||
uint32_t tcps_swnd; /* send window size */
|
||||
u_long tcps_swnd; /* send window size */
|
||||
int32_t tcps_snd_ws; /* send window scaling */
|
||||
uint32_t tcps_swl1; /* window update seg seq number */
|
||||
uint32_t tcps_swl2; /* window update seg ack number */
|
||||
uint32_t tcps_rup; /* receive urgent pointer */
|
||||
uint32_t tcps_radv; /* advertised window */
|
||||
uint32_t tcps_rwnd; /* receive window size */
|
||||
u_long tcps_rwnd; /* receive window size */
|
||||
int32_t tcps_rcv_ws; /* receive window scaling */
|
||||
uint32_t tcps_cwnd; /* congestion window */
|
||||
uint32_t tcps_cwnd_ssthresh; /* threshold for congestion avoidance */
|
||||
u_long tcps_cwnd; /* congestion window */
|
||||
u_long tcps_cwnd_ssthresh; /* threshold for congestion avoidance */
|
||||
uint32_t tcps_srecover; /* for use in NewReno Fast Recovery */
|
||||
uint32_t tcps_sack_fack; /* SACK sequence # we have acked */
|
||||
uint32_t tcps_sack_snxt; /* next SACK seq # for retransmission */
|
||||
|
@ -24,7 +24,7 @@
|
||||
.\"
|
||||
.\" $FreeBSD$
|
||||
.\"
|
||||
.Dd July 5, 2015
|
||||
.Dd April 15, 2016
|
||||
.Dt DTRACE_TCP 4
|
||||
.Os
|
||||
.Sh NAME
|
||||
@ -217,17 +217,17 @@ Next sequence number for send.
|
||||
Sequence number of received and acknowledged data.
|
||||
.It Vt uint32_t tcps_rnxt
|
||||
Next expected sequence number for receive.
|
||||
.It Vt uint32_t tcps_swnd
|
||||
.It Vt u_long tcps_swnd
|
||||
TCP send window size.
|
||||
.It Vt int32_t tcps_snd_ws
|
||||
Window scaling factor for the TCP send window.
|
||||
.It Vt uint32_t tcps_rwnd
|
||||
.It Vt u_long tcps_rwnd
|
||||
TCP receive window size.
|
||||
.It Vt int32_t tcps_rcv_ws
|
||||
Window scaling factor for the TCP receive window.
|
||||
.It Vt uint32_t tcps_cwnd
|
||||
.It Vt u_long tcps_cwnd
|
||||
TCP congestion window size.
|
||||
.It Vt uint32_t tcps_cwnd_ssthresh
|
||||
.It Vt u_long tcps_cwnd_ssthresh
|
||||
Congestion window threshold at which slow start ends and congestion avoidance
|
||||
begins.
|
||||
.It Vt uint32_t tcps_sack_fack
|
||||
|
Loading…
Reference in New Issue
Block a user