Module Name:    src
Committed By:   christos
Date:           Sun Apr 29 15:59:07 UTC 2018

Modified Files:
        src/external/bsd/ipf/dist/ipsend: ipsend.h

Log Message:
fix the build: tcpiphdr is now defined in tcp_var.h and tcp_var.h needs
tcp_timer.h. This struct move is more trouble than its worth. It breaks
header compatibility with other BSD's and can't be really removed because
it is an installed header that will break other 3rd party software. I
suggest that it gets reverted!


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.2 -r1.2 src/external/bsd/ipf/dist/ipsend/ipsend.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/ipf/dist/ipsend/ipsend.h
diff -u src/external/bsd/ipf/dist/ipsend/ipsend.h:1.1.1.2 src/external/bsd/ipf/dist/ipsend/ipsend.h:1.2
--- src/external/bsd/ipf/dist/ipsend/ipsend.h:1.1.1.2	Sun Jul 22 09:44:36 2012
+++ src/external/bsd/ipf/dist/ipsend/ipsend.h	Sun Apr 29 11:59:07 2018
@@ -1,4 +1,4 @@
-/*	$NetBSD: ipsend.h,v 1.1.1.2 2012/07/22 13:44:36 darrenr Exp $	*/
+/*	$NetBSD: ipsend.h,v 1.2 2018/04/29 15:59:07 christos Exp $	*/
 
 /*
  * ipsend.h (C) 1997-1998 Darren Reed
@@ -29,7 +29,9 @@
 #ifdef	linux
 #include <linux/sockios.h>
 #endif
-#include "netinet/tcpip.h"
+#include <netinet/tcp_timer.h>
+#include <netinet/tcp_var.h>
+#include <netinet/tcpip.h>
 #include "ipt.h"
 
 extern	int	resolve __P((char *, char *));

Reply via email to