tcpcb: fix tabulation count in i4012ef7754c and abbreviate "packets"

This lines up comments to the rest of the file.  Abbreviation
helps to fit in to 80 char terminal.  Not a functional change.
This commit is contained in:
Gleb Smirnoff 2022-09-19 10:29:53 -07:00
parent 64cce803c4
commit 0c7f3ae8c6

View File

@ -249,8 +249,8 @@ struct tcpcb {
int t_dupacks; /* consecutive dup acks recd */
int t_lognum; /* Number of log entries */
int t_loglimit; /* Maximum number of log entries */
uint32_t t_rcep; /* Number of received CE marked packets */
uint32_t t_scep; /* Synced number of delivered CE packets */
uint32_t t_rcep; /* Number of received CE marked pkts */
uint32_t t_scep; /* Synced number of delivered CE pkts */
int64_t t_pacing_rate; /* bytes / sec, -1 => unlimited */
struct tcp_log_stailq t_logs; /* Log buffer */
struct tcp_log_id_node *t_lin;