Home | History | Annotate | Download | only in netinet
History log of /src/sys/external/bsd/ipf/netinet/ip_log.c
RevisionDateAuthorComments
 1.8  03-Jun-2018  maxv Constify a bunch of global varialbes under ipf/ so that they land in
.rodata (3472 bytes).

Also, remove ipf_tuneables[], unused.
 1.7  03-May-2018  maxv Remove now unused tcpip.h includes. Some were already unused before.
 1.6  28-Mar-2013  christos branches: 1.6.34;
Destroying the mutex once is enough.
 1.5  27-Mar-2013  christos call mutex destroy in fini, so that we don't end up with a lockdebug panic
when we re-attach.
 1.4  15-Sep-2012  plunky the result of the construct

#define FOO defined(BAR)

#if FOO
[conditional code]
#endif

is "undefined", according to C99 6.10.1 note 4. So, change code like
that to use the following paradigm

#if defined(BAR)
#define FOO 1
#else
#define FOO 0
#endif

#if FOO
[conditional code]
#endif
 1.3  22-Jul-2012  darrenr branches: 1.3.2;
Merge IPFilter 5.1.2 into HEAD
 1.2  23-Mar-2012  christos branches: 1.2.2; 1.2.4;
apply our changes.
- prototypes
- ip_h323_pxy.c is missing from the distribution
- original tar distribution is missing <$>Id values in most files
 1.1  23-Mar-2012  christos branches: 1.1.1;
Initial revision
 1.1.1.2  22-Jul-2012  darrenr Import IPFilter 5.1.2
 1.1.1.1  23-Mar-2012  christos import kernel portion of ipfilter 5.1.1
 1.2.4.4  22-May-2014  yamt sync with head.

for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.

this commit was splitted into small chunks to avoid
a limitation of cvs. ("Protocol error: too many arguments")
 1.2.4.3  30-Oct-2012  yamt sync with head
 1.2.4.2  17-Apr-2012  yamt sync with head
 1.2.4.1  23-Mar-2012  yamt file ip_log.c was added on branch yamt-pagecache on 2012-04-17 00:08:16 +0000
 1.2.2.2  17-Apr-2012  joerg Re-add new ipf on the jmcneill-usbmp branch.
 1.2.2.1  23-Mar-2012  joerg file ip_log.c was added on branch jmcneill-usbmp on 2012-04-17 19:25:19 +0000
 1.3.2.2  23-Jun-2013  tls resync from head
 1.3.2.1  20-Nov-2012  tls Resync to 2012-11-19 00:00:00 UTC
 1.6.34.2  25-Jun-2018  pgoyette Sync with HEAD
 1.6.34.1  21-May-2018  pgoyette Sync with HEAD

RSS XML Feed