aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet/tcp_timer.h
diff options
context:
space:
mode:
authorJonathan Lemon <jlemon@FreeBSD.org>2003-02-19 22:32:43 +0000
committerJonathan Lemon <jlemon@FreeBSD.org>2003-02-19 22:32:43 +0000
commit340c35de6a249d9dd8b4f72f7c75c851a158db09 (patch)
tree6317b858b0555a797efb2e5b5bd4c2eebbdc0d10 /sys/netinet/tcp_timer.h
parent7990938421f8dfe53c82aaea0a6c8a9e0b79f4d4 (diff)
downloadsrc-340c35de6a249d9dd8b4f72f7c75c851a158db09.tar.gz
src-340c35de6a249d9dd8b4f72f7c75c851a158db09.zip
Add a TCP TIMEWAIT state which uses less space than a fullblown TCP
control block. Allow the socket and tcpcb structures to be freed earlier than inpcb. Update code to understand an inp w/o a socket. Reviewed by: hsu, silby, jayanth Sponsored by: DARPA, NAI Labs
Notes
Notes: svn path=/head/; revision=111145
Diffstat (limited to 'sys/netinet/tcp_timer.h')
-rw-r--r--sys/netinet/tcp_timer.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/netinet/tcp_timer.h b/sys/netinet/tcp_timer.h
index cb835fb721c4..40080b7651db 100644
--- a/sys/netinet/tcp_timer.h
+++ b/sys/netinet/tcp_timer.h
@@ -152,6 +152,7 @@ extern int tcp_ttl; /* time to live for TCP segs */
extern int tcp_backoff[];
void tcp_timer_2msl(void *xtp);
+void tcp_timer_2msl_tw(void *xtw); /* XXX temporary */
void tcp_timer_keep(void *xtp);
void tcp_timer_persist(void *xtp);
void tcp_timer_rexmt(void *xtp);