summaryrefslogtreecommitdiffstats
path: root/sys/contrib/ipfilter
Commit message (Collapse)AuthorAgeFilesLines
* We don't need ip_ipsec_pxy.c in userland.ru2002-03-261-1/+1
|
* do not include the missing ip_h323_pxy.cdarrenr2002-03-191-1/+0
|
* fix conflicts (mostly damn rcs id's) generated by importdarrenr2002-03-1920-854/+2055
|
* This file is being removed pending the all clear on its licence by someonedarrenr2002-03-191-275/+0
| | | | else.
* This commit was generated by cvs2svn to compensate for changes in r92680,darrenr2002-03-193-0/+676
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import IPFilter 3.4.25 (last version 3.4.20)darrenr2002-03-193-0/+676
| |
| * This commit was manufactured by cvs2svn to create branchcvs2svn2001-09-121-0/+29
| | | | | | | | 'VENDOR-sys-ipfilter'.
| * Import version 3.4.20 of IPFilterdarrenr2001-07-2818-510/+862
| |
| * Update IP Filter kernel sourcedarrenr2001-02-0414-119/+259
| |
| * Import IP filter 3.4.13darrenr2000-10-298-48/+58
| |
| * Import IP Filter 3.4.12 into kernel source treedarrenr2000-10-2614-192/+613
| |
| * Import IP Filter 3.4.9 bits into the kerneldarrenr2000-08-1310-102/+367
| |
| * import ipfilter 3.4.8darrenr2000-07-1913-112/+226
| |
| * Import IP Filter 3.4.4 into the kerneldarrenr2000-05-2420-2519/+6875
| |
| * This commit was manufactured by cvs2svn to create branchcvs2svn1999-12-063-0/+612
| | | | | | | | 'VENDOR-sys-ipfilter'.
* | Change two occurrences of HTONS() to use htons().mike2002-02-281-2/+2
| |
* | Fix warning (unused variable)peter2002-02-271-1/+0
| | | | | | | | Submitted by: LINT, -Werror
* | Backout inclusion of queue.h since rev 1.38 sys/file.h now has italfred2002-01-148-24/+0
| | | | | | | | included in the right order.
* | Include sys/_lock.h and sys/_mutex.h to reduce namespace pollution.alfred2002-01-138-0/+24
| | | | | | | | Requested by: jhb
* | Import this patch to address user concerns.darrenr2002-01-042-2/+2
| | | | | | | | | | | | | | PR: 27615 Submitted by: Andria Thomas <andria@tovaris.com> Approved by: Me. MFC after: 7 days
* | Fix initialisation of struct nat entry, to solve a panic that occursguido2001-12-051-0/+1
| | | | | | | | | | | | | | | | when reloading a nat table after reboot Submitted by: Arjan de Vet <devet@devet.org> Reviewed by: IP Filter mailing list MFC after: 3 days
* | IPFilter munges multicast address packets on the loopback interface.darrenr2001-09-121-1/+1
| | | | | | | | | | | | Submitted by: Frank Zolf Approved by: jkh MFC after: 0
* | Add IPFLITER.LICENCE to the kernel (requested by rwatson)darrenr2001-09-121-0/+29
| |
* | KSE Milestone 2julian2001-09-122-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Note ALL MODULES MUST BE RECOMPILED make the kernel aware that there are smaller units of scheduling than the process. (but only allow one thread per process at this time). This is functionally equivalent to teh previousl -current except that there is a thread associated with each process. Sorry john! (your next MFC will be a doosie!) Reviewed by: peter@freebsd.org, dillon@freebsd.org X-MFC after: ha ha ha ha
* | fix import/merge related code problemsdarrenr2001-07-301-6/+3
| |
* | fix conflicts created by importdarrenr2001-07-2818-475/+829
| |
* | fix security hole created by fragment cachedarrenr2001-04-065-10/+36
| |
* | Send the remains (such as I have located) of "block major numbers" tophk2001-03-261-1/+0
| | | | | | | | the bit-bucket.
* | fix duplicate rcsiddarrenr2001-02-041-1/+0
| |
* | fix conflictsdarrenr2001-02-0414-114/+254
| |
* | Lock down the network interface queues. The queue mutex must be obtainedjlemon2000-11-251-10/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | before adding/removing packets from the queue. Also, the if_obytes and if_omcasts fields should only be manipulated under protection of the mutex. IF_ENQUEUE, IF_PREPEND, and IF_DEQUEUE perform all necessary locking on the queue. An IF_LOCK macro is provided, as well as the old (mutex-less) versions of the macros in the form _IF_ENQUEUE, _IF_QFULL, for code which needs them, but their use is discouraged. Two new macros are introduced: IF_DRAIN() to drain a queue, and IF_HANDOFF, which takes care of locking/enqueue, and also statistics updating/start if necessary.
* | While I'm here, get rid of (now useless) MCLISREFERENCED and use MEXT_IS_REFbmilekic2000-11-111-6/+2
| | | | | | | | | | | | | | | | | | instead. Also, fix a small set of "avail." If we're setting `avail,' we shouldn't be re-checking whether m_flags is M_EXT, because we know that it is, as if it wasn't, we would have already returned several lines above. Reviewed by: jlemon
* | Fix conflicts creted by import.darrenr2000-10-298-41/+51
| |
* | Include sys/param.h for `__FreeBSD_version' rather than the non-existentobrien2000-10-271-2/+2
| | | | | | | | | | | | osreldate.h. Submitted by: dougb
* | fix conflicts from rcsidsdarrenr2000-10-2614-178/+599
| |
* | We now keep the ip_id field in network byte order all theru2000-10-251-0/+4
| | | | | | | | | | | | | | time, so there is no need to make the distinction between ip_output() and ip_input() cases. Reviewed by: silence on freebsd-net
* | If we do not byte-swap the ip_id in the first place, don't do it inru2000-10-181-0/+2
| | | | | | | | | | the second. NetBSD (from where I've taken this originally) needs to fix this too.
* | Follow BSD/OS and NetBSD, keep the ip_id field in network order all the time.ru2000-09-142-1/+3
| | | | | | | | Requested by: wollman
* | resolve conflictsdarrenr2000-08-139-91/+356
| |
* | Change __FreeBSD_Version into the proper __FreeBSD_version.roberto2000-08-012-6/+6
| | | | | | | | Submitted by: Alain.Thivillon@hsc.fr (Alain Thivillon) (for ip_fil.c)
* | Add missing '0' to FreeBSD_version test: 50011 -> 500011ache2000-08-011-5/+5
| |
* | activate pfil_hooks and covert ipfilter to use itdarrenr2000-07-312-6/+10
| |
* | fix conflictsdarrenr2000-07-1913-109/+221
| |
* | define CSUM_DELAY_DATA to match mergedarrenr2000-05-261-0/+4
| |
* | fix up #ifdef jungle for FreeBSDdarrenr2000-05-251-4/+9
| |
* | remove duplicate prototypesdarrenr2000-05-251-2/+0
| |
* | fix duplicate rcsid'sdarrenr2000-05-241-3/+0
| |
* | It would have been nice if this actually compiled. Close the headerpeter2000-05-241-0/+1
| | | | | | | | comment */.
* | fix up conflictsdarrenr2000-05-2411-174/+639
| |
* | fix conflictsdarrenr2000-05-244-71/+190
| |
OpenPOWER on IntegriCloud