History log of /src/sys/external/bsd/ipf/netinet/ip_fil.h |
Revision | | Date | Author | Comments |
1.8 |
| 11-Nov-2019 |
chs | revert rev 1.7 (which removed the fd_local field from frdest_t). this structure is part of the kernel/user ABI and so we would need to version the ioctl ABI again in order to remove this field. but that's a big pain so let's just leave the field there. the problem that was being fixed in FreeBSD related to this was a failure to locate filter rules in certain situations, but having an unused always-zero field there won't cause that problem.
|
1.7 |
| 26-Jun-2019 |
christos | branches: 1.7.2; Remove fd_local, it is not used, from FreeBSD r349401, reported by Cy Schubert
|
1.6 |
| 03-Jun-2018 |
maxv | branches: 1.6.2; Constify a bunch of global varialbes under ipf/ so that they land in .rodata (3472 bytes).
Also, remove ipf_tuneables[], unused.
|
1.5 |
| 29-Jun-2013 |
rmind | branches: 1.5.30; - Rewrite parts of pfil(9): use array to store hooks and thus be more cache friendly (there are only few hooks in the system). Make the structures opaque and the interface more strict. - Remove PFIL_HOOKS option by making pfil(9) mandatory.
|
1.4 |
| 15-Sep-2012 |
plunky | branches: 1.4.2; 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_fil.h was added on branch yamt-pagecache on 2012-04-17 00:08:15 +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_fil.h was added on branch jmcneill-usbmp on 2012-04-17 19:25:18 +0000
|
1.3.2.2 |
| 20-Aug-2014 |
tls | Rebase to HEAD as of a few days ago.
|
1.3.2.1 |
| 20-Nov-2012 |
tls | Resync to 2012-11-19 00:00:00 UTC
|
1.4.2.1 |
| 28-Aug-2013 |
rmind | sync with head
|
1.5.30.1 |
| 25-Jun-2018 |
pgoyette | Sync with HEAD
|
1.6.2.1 |
| 13-Apr-2020 |
martin | Mostly merge changes from HEAD upto 20200411
|
1.7.2.1 |
| 11-Nov-2019 |
martin | Pull up following revision(s) (requested by chs in ticket #418):
sys/external/bsd/ipf/netinet/ip_fil.h: revision 1.8
revert rev 1.7 (which removed the fd_local field from frdest_t). this structure is part of the kernel/user ABI and so we would need to version the ioctl ABI again in order to remove this field. but that's a big pain so let's just leave the field there. the problem that was being fixed in FreeBSD related to this was a failure to locate filter rules in certain situations, but having an unused always-zero field there won't cause that problem.
|