summaryrefslogtreecommitdiff
path: root/sys/netinet
diff options
context:
space:
mode:
authorJoerg Wunsch <joerg@FreeBSD.org>1997-09-16 18:37:02 +0000
committerJoerg Wunsch <joerg@FreeBSD.org>1997-09-16 18:37:02 +0000
commit35dc68d1b9c30fe3121d62ed4230ed07bdc78fdb (patch)
tree473a754c4491b817b3919ada8d8eda0287fd9604 /sys/netinet
parentc6b3c9f414f4d0cdf83a6640c2b5b68c0c9d4a38 (diff)
Notes
Diffstat (limited to 'sys/netinet')
-rw-r--r--sys/netinet/in_proto.c4
-rw-r--r--sys/netinet/tcp_debug.c4
-rw-r--r--sys/netinet/tcp_input.c4
-rw-r--r--sys/netinet/tcp_output.c4
-rw-r--r--sys/netinet/tcp_subr.c4
-rw-r--r--sys/netinet/tcp_timer.c4
-rw-r--r--sys/netinet/tcp_usrreq.c4
7 files changed, 21 insertions, 7 deletions
diff --git a/sys/netinet/in_proto.c b/sys/netinet/in_proto.c
index f97c803a5278..9ffc04181759 100644
--- a/sys/netinet/in_proto.c
+++ b/sys/netinet/in_proto.c
@@ -31,9 +31,11 @@
* SUCH DAMAGE.
*
* @(#)in_proto.c 8.2 (Berkeley) 2/9/95
- * $Id: in_proto.c,v 1.32 1996/07/10 19:44:21 julian Exp $
+ * $Id: in_proto.c,v 1.33 1996/07/11 16:32:31 wollman Exp $
*/
+#include "opt_tcpdebug.h"
+
#include <sys/param.h>
#include <sys/queue.h>
#include <sys/kernel.h>
diff --git a/sys/netinet/tcp_debug.c b/sys/netinet/tcp_debug.c
index a54beb208d33..6b577255d44a 100644
--- a/sys/netinet/tcp_debug.c
+++ b/sys/netinet/tcp_debug.c
@@ -31,9 +31,11 @@
* SUCH DAMAGE.
*
* @(#)tcp_debug.c 8.1 (Berkeley) 6/10/93
- * $Id: tcp_debug.c,v 1.6 1996/03/11 15:13:26 davidg Exp $
+ * $Id: tcp_debug.c,v 1.7 1996/04/13 12:45:56 bde Exp $
*/
+#include "opt_tcpdebug.h"
+
#ifdef TCPDEBUG
/* load symbolic names */
#define PRUREQUESTS
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c
index dff266614526..23a49e0c43f7 100644
--- a/sys/netinet/tcp_input.c
+++ b/sys/netinet/tcp_input.c
@@ -31,9 +31,11 @@
* SUCH DAMAGE.
*
* @(#)tcp_input.c 8.12 (Berkeley) 5/24/95
- * $Id: tcp_input.c,v 1.54.2.1 1996/11/11 23:40:57 phk Exp $
+ * $Id: tcp_input.c,v 1.54.2.2 1997/07/07 20:50:22 jdp Exp $
*/
+#include "opt_tcpdebug.h"
+
#ifndef TUBA_INCLUDE
#include <sys/param.h>
#include <sys/queue.h>
diff --git a/sys/netinet/tcp_output.c b/sys/netinet/tcp_output.c
index 4297cd27f0f0..0d4a681c34a7 100644
--- a/sys/netinet/tcp_output.c
+++ b/sys/netinet/tcp_output.c
@@ -31,9 +31,11 @@
* SUCH DAMAGE.
*
* @(#)tcp_output.c 8.4 (Berkeley) 5/24/95
- * $Id: tcp_output.c,v 1.20 1996/04/15 03:46:32 davidg Exp $
+ * $Id: tcp_output.c,v 1.21 1996/06/08 08:19:00 bde Exp $
*/
+#include "opt_tcpdebug.h"
+
#include <sys/param.h>
#include <sys/queue.h>
#include <sys/systm.h>
diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c
index 93bfddd7c42d..980f856d5dfe 100644
--- a/sys/netinet/tcp_subr.c
+++ b/sys/netinet/tcp_subr.c
@@ -31,9 +31,11 @@
* SUCH DAMAGE.
*
* @(#)tcp_subr.c 8.2 (Berkeley) 5/24/95
- * $Id: tcp_subr.c,v 1.31 1996/07/24 18:46:19 wollman Exp $
+ * $Id: tcp_subr.c,v 1.31.2.1 1997/03/03 09:24:39 davidg Exp $
*/
+#include "opt_tcpdebug.h"
+
#include <sys/param.h>
#include <sys/queue.h>
#include <sys/proc.h>
diff --git a/sys/netinet/tcp_timer.c b/sys/netinet/tcp_timer.c
index fd477b9504af..d34df1c54a3c 100644
--- a/sys/netinet/tcp_timer.c
+++ b/sys/netinet/tcp_timer.c
@@ -31,9 +31,11 @@
* SUCH DAMAGE.
*
* @(#)tcp_timer.c 8.2 (Berkeley) 5/24/95
- * $Id: tcp_timer.c,v 1.19 1996/07/12 17:28:46 davidg Exp $
+ * $Id: tcp_timer.c,v 1.20 1996/09/13 23:51:42 pst Exp $
*/
+#include "opt_tcpdebug.h"
+
#ifndef TUBA_INCLUDE
#include <sys/param.h>
#include <sys/queue.h>
diff --git a/sys/netinet/tcp_usrreq.c b/sys/netinet/tcp_usrreq.c
index 47343c85d36b..c05cfefe1f11 100644
--- a/sys/netinet/tcp_usrreq.c
+++ b/sys/netinet/tcp_usrreq.c
@@ -31,9 +31,11 @@
* SUCH DAMAGE.
*
* From: @(#)tcp_usrreq.c 8.2 (Berkeley) 1/3/94
- * $Id: tcp_usrreq.c,v 1.26 1996/10/07 19:06:11 davidg Exp $
+ * $Id: tcp_usrreq.c,v 1.26.2.1 1997/02/21 16:48:34 wollman Exp $
*/
+#include "opt_tcpdebug.h"
+
#include <sys/param.h>
#include <sys/queue.h>
#include <sys/systm.h>