diff options
| author | Jonathan Lemon <jlemon@FreeBSD.org> | 2000-06-02 17:38:45 +0000 |
|---|---|---|
| committer | Jonathan Lemon <jlemon@FreeBSD.org> | 2000-06-02 17:38:45 +0000 |
| commit | 59f577ad8c0e31e18f80f9f99687b12703dcf00f (patch) | |
| tree | cb034ce82a73d72b0b7df958952e00bafb5473cd /sys/netinet/tcp_output.c | |
| parent | 3885812c8c5a4fe35139eaa147974c5a577fefd0 (diff) | |
Notes
Diffstat (limited to 'sys/netinet/tcp_output.c')
| -rw-r--r-- | sys/netinet/tcp_output.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/netinet/tcp_output.c b/sys/netinet/tcp_output.c index 4a5ac6e1e041..eb498483bf68 100644 --- a/sys/netinet/tcp_output.c +++ b/sys/netinet/tcp_output.c @@ -859,6 +859,10 @@ send: if (error) { out: if (error == ENOBUFS) { + if (!callout_active(tp->tt_rexmt) && + !callout_active(tp->tt_persist)) + callout_reset(tp->tt_rexmt, tp->t_rxtcur, + tcp_timer_rexmt, tp); tcp_quench(tp->t_inpcb, 0); return (0); } |
