Date: Thu, 7 Sep 2006 13:06:01 +0000 (UTC) From: Ruslan Ermilov <ru@FreeBSD.org> To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet tcp_input.c tcp_subr.c tcp_timer.c tcp_timer.h tcp_var.h Message-ID: <200609071306.k87D61RP008814@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
ru 2006-09-07 13:06:01 UTC FreeBSD src repository Modified files: sys/netinet tcp_input.c tcp_subr.c tcp_timer.c tcp_timer.h tcp_var.h Log: Back when we had T/TCP support, we used to apply different timeouts for TCP and T/TCP connections in the TIME_WAIT state, and we had two separate timed wait queues for them. Now that is has gone, the timeout is always 2*MSL again, and there is no reason to keep two queues (the first was unused anyway!). Also, reimplement the remaining queue using a TAILQ (it was technically impossible before, with two queues). Revision Changes Path 1.306 +2 -2 src/sys/netinet/tcp_input.c 1.261 +2 -3 src/sys/netinet/tcp_subr.c 1.85 +20 -43 src/sys/netinet/tcp_timer.c 1.30 +1 -1 src/sys/netinet/tcp_timer.h 1.136 +1 -1 src/sys/netinet/tcp_var.h
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200609071306.k87D61RP008814>