1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00

Pass the right function to callout_reset() for a compressed

TIME-WAIT control block.
This commit is contained in:
Jeffrey Hsu 2003-02-24 00:48:12 +00:00
parent 28c9e1aa5c
commit 2fbef91887
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=111386
2 changed files with 2 additions and 2 deletions

View File

@ -2906,7 +2906,7 @@ tcp_timewait(tw, to, th, m, tlen)
seq = th->th_seq + tlen + (thflags & TH_SYN ? 1 : 0);
if (seq + 1 == tw->rcv_nxt)
callout_reset(tw->tt_2msl,
2 * tcp_msl, tcp_timer_2msl, tw);
2 * tcp_msl, tcp_timer_2msl_tw, tw);
}
/*

View File

@ -2906,7 +2906,7 @@ tcp_timewait(tw, to, th, m, tlen)
seq = th->th_seq + tlen + (thflags & TH_SYN ? 1 : 0);
if (seq + 1 == tw->rcv_nxt)
callout_reset(tw->tt_2msl,
2 * tcp_msl, tcp_timer_2msl, tw);
2 * tcp_msl, tcp_timer_2msl_tw, tw);
}
/*