Date: Sun, 6 Jan 2019 00:32:14 +0000 (UTC) From: Cy Schubert <cy@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r342794 - in stable: 10/contrib/ipfilter 11/contrib/ipfilter 12/contrib/ipfilter Message-ID: <201901060032.x060WE3e028955@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201901060032.x060WE3e028955>