svn commit: r342794 - in stable: 10/contrib/ipfilter 11/contrib/ipfilter 12/contrib/ipfilter

Cy Schubert cy at FreeBSD.org
Sun Jan 6 00:32:15 UTC 2019


Author: cy
Date: Sun Jan  6 00:32:14 2019
New Revision: 342794
URL: https://svnweb.freebsd.org/changeset/base/342794

Log:
  MFC r342605:
  
  TCP_PAWS_IDLE is does not exist in NetBSD and illumos. In FreeBSD
  TCP_PAWS_IDLE is defined in netinet/tcp_seq.h, however this header
  isn't included explicitly or implicitly at this point therefore
  as far ipfilter is concerned TCP_PAWS_IDLE is not defined. Remove
  the #ifdef and include netinet/tcp.h unconditionally.

Modified:
  stable/11/contrib/ipfilter/ipf.h
Directory Properties:
  stable/11/   (props changed)

Changes in other areas also in this revision:
Modified:
  stable/10/contrib/ipfilter/ipf.h
  stable/12/contrib/ipfilter/ipf.h
Directory Properties:
  stable/10/   (props changed)
  stable/12/   (props changed)

Modified: stable/11/contrib/ipfilter/ipf.h
==============================================================================
--- stable/11/contrib/ipfilter/ipf.h	Sat Jan  5 22:45:20 2019	(r342793)
+++ stable/11/contrib/ipfilter/ipf.h	Sun Jan  6 00:32:14 2019	(r342794)
@@ -47,9 +47,7 @@ struct file;
 #include <netinet/in_systm.h>
 #include <netinet/ip.h>
 #include <netinet/ip_icmp.h>
-#ifndef	TCP_PAWS_IDLE	/* IRIX */
 # include <netinet/tcp.h>
-#endif
 #include <netinet/udp.h>
 
 #include <arpa/inet.h>


More information about the svn-src-all mailing list