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!
This commit is contained in:
christos 2018-04-29 15:59:07 +00:00
parent c796a4efe9
commit fef18fab8e
1 changed files with 4 additions and 2 deletions

View File

@ -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 *));