Date: Tue, 14 Dec 1999 01:24:55 -0800 From: Don Lewis <Don.Lewis@tsc.tdk.com> To: Brian Fundakowski Feldman <green@FreeBSD.org>, Don Lewis <Don.Lewis@tsc.tdk.com> Cc: Jonathan Lemon <jlemon@FreeBSD.org>, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp_input.c Message-ID: <199912140924.BAA22636@salsa.gv.tsc.tdk.com> In-Reply-To: Brian Fundakowski Feldman <green@FreeBSD.org> "Re: cvs commit: src/sys/netinet tcp_input.c" (Dec 13, 8:06pm)
next in thread | previous in thread | raw e-mail | index | archive | help
On Dec 13, 8:06pm, Brian Fundakowski Feldman wrote:
} Subject: Re: cvs commit: src/sys/netinet tcp_input.c
} Is this what you mean?
Yep.
} Index: tcp_input.c
} ===================================================================
} RCS file: /usr2/ncvs/src/sys/netinet/tcp_input.c,v
} retrieving revision 1.98
} diff -u -r1.98 tcp_input.c
} --- tcp_input.c 1999/12/11 04:05:52 1.98
} +++ tcp_input.c 1999/12/14 01:04:11
} @@ -1125,8 +1125,8 @@
} * RFC 1337.
} */
} if (tiflags & TH_RST) {
} - if (ti->ti_seq >= tp->last_ack_sent &&
} - ti->ti_seq < tp->last_ack_sent + tp->rcv_wnd) {
} + if (SEQ_GEQ(ti->ti_seq, tp->last_ack_sent) &&
} + SEQ_LT(ti->ti_seq, tp->last_ack_sent + tp->rcv_wnd)) {
} switch (tp->t_state) {
}
} case TCPS_SYN_RECEIVED:
}
} --
} Brian Fundakowski Feldman \ FreeBSD: The Power to Serve! /
} green@FreeBSD.org `------------------------------'
}
}-- End of excerpt from Brian Fundakowski Feldman
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199912140924.BAA22636>
