cvs commit: src/sys/netinet tcp_input.c tcp_subr.c tcp_timer.c tcp_timer.h tcp_var.h

Ruslan Ermilov ru at FreeBSD.org
Thu Sep 7 06:06:13 PDT 2006


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


More information about the cvs-src mailing list