summaryrefslogtreecommitdiff
path: root/sys/netinet/tcp_var.h
diff options
context:
space:
mode:
authorAlexander Bluhm <bluhm@cvs.openbsd.org>2010-10-21 11:38:28 +0000
committerAlexander Bluhm <bluhm@cvs.openbsd.org>2010-10-21 11:38:28 +0000
commit751a0b8c53fe71f88c77521c103e87614be8173f (patch)
treed55db27bd2823139589e5613b5b5e508df6741eb /sys/netinet/tcp_var.h
parent836de14397ce1c2692dcfb3d8ca5965f7773cb65 (diff)
There is no TCP6 in our kernel, so remove the #ifndef TCP6.
No binary change. ok claudio@ henning@
Diffstat (limited to 'sys/netinet/tcp_var.h')
-rw-r--r--sys/netinet/tcp_var.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/tcp_var.h b/sys/netinet/tcp_var.h
index dcca8ad53a9..6ded3dd733f 100644
--- a/sys/netinet/tcp_var.h
+++ b/sys/netinet/tcp_var.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: tcp_var.h,v 1.96 2010/09/24 02:59:46 claudio Exp $ */
+/* $OpenBSD: tcp_var.h,v 1.97 2010/10/21 11:38:27 bluhm Exp $ */
/* $NetBSD: tcp_var.h,v 1.17 1996/02/13 23:44:24 christos Exp $ */
/*
@@ -560,7 +560,7 @@ struct tcpcb *
tcp_close(struct tcpcb *);
void tcp_reaper(void *);
int tcp_freeq(struct tcpcb *);
-#if defined(INET6) && !defined(TCP6)
+#ifdef INET6
void tcp6_ctlinput(int, struct sockaddr *, void *);
#endif
void *tcp_ctlinput(int, struct sockaddr *, u_int, void *);
@@ -572,7 +572,7 @@ struct tcpcb *
int tcp_dooptions(struct tcpcb *, u_char *, int, struct tcphdr *,
struct mbuf *, int, struct tcp_opt_info *, u_int);
void tcp_init(void);
-#if defined(INET6) && !defined(TCP6)
+#ifdef INET6
int tcp6_input(struct mbuf **, int *, int);
#endif
void tcp_input(struct mbuf *, ...);