summaryrefslogtreecommitdiff
path: root/sys/netinet/tcp_subr.c
diff options
context:
space:
mode:
authorJonathan Lemon <jlemon@FreeBSD.org>2000-11-25 06:22:16 +0000
committerJonathan Lemon <jlemon@FreeBSD.org>2000-11-25 06:22:16 +0000
commite82ac18e526c19effc5dbbde65a9253a41919802 (patch)
tree4ccdfb1db9a4af2b6ec85d15717c676537902006 /sys/netinet/tcp_subr.c
parent6e47e42f8d2bea2df54b6cd1bcac84aaf06af791 (diff)
Notes
Diffstat (limited to 'sys/netinet/tcp_subr.c')
-rw-r--r--sys/netinet/tcp_subr.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c
index c3616a524fa5..64302c6e17b0 100644
--- a/sys/netinet/tcp_subr.c
+++ b/sys/netinet/tcp_subr.c
@@ -490,11 +490,11 @@ tcp_newtcpcb(inp)
tcp_mssdflt;
/* Set up our timeouts. */
- callout_init(tp->tt_rexmt = &it->inp_tp_rexmt);
- callout_init(tp->tt_persist = &it->inp_tp_persist);
- callout_init(tp->tt_keep = &it->inp_tp_keep);
- callout_init(tp->tt_2msl = &it->inp_tp_2msl);
- callout_init(tp->tt_delack = &it->inp_tp_delack);
+ callout_init(tp->tt_rexmt = &it->inp_tp_rexmt, 0);
+ callout_init(tp->tt_persist = &it->inp_tp_persist, 0);
+ callout_init(tp->tt_keep = &it->inp_tp_keep, 0);
+ callout_init(tp->tt_2msl = &it->inp_tp_2msl, 0);
+ callout_init(tp->tt_delack = &it->inp_tp_delack, 0);
if (tcp_do_rfc1323)
tp->t_flags = (TF_REQ_SCALE|TF_REQ_TSTMP);