Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-06-26 | Replicated TCP sequence tracking code in PF from Guido's IPF paper. | Mike Frantzen | |
2001-06-26 | sigh | Niels Provos | |
2001-06-26 | pflog_packet fails on NULL mbuf | Niels Provos | |
2001-06-26 | mea culpa | Daniel Hartmeier | |
2001-06-25 | extend the logging via a new link header type. export interface, direction, | Niels Provos | |
action and rule nr. | |||
2001-06-25 | remaining lists converted to TAILQs | Daniel Hartmeier | |
2001-06-25 | use TAILQ instead of homegrown list, other lists will follow | Daniel Hartmeier | |
2001-06-25 | ANSIfy | Artur Grabowski | |
2001-06-25 | first stab at packet logging for pf. inspired by late night dreams of art. | Niels Provos | |
we just pass drop and passed packets to different pseudo interface that can be listened to with bpf. | |||
2001-06-25 | Unnecessary gotos. | Artur Grabowski | |
2001-06-25 | Rework COMMITRULES. | Artur Grabowski | |
First we swap in the new rules, then we free the old (freeing can be done outside splnet). | |||
2001-06-25 | revised ioctl interface, first getopt version of pfctl | Daniel Hartmeier | |
2001-06-25 | display correct direction in log | jasoni | |
2001-06-25 | Rename the rest of the structs to be consistent. | Artur Grabowski | |
2001-06-25 | fix -> cksum_fixup | Artur Grabowski | |
2001-06-25 | No c++ comments. | Artur Grabowski | |
2001-06-25 | Even more global variables with too common names. | Artur Grabowski | |
2001-06-25 | More renaming. | Artur Grabowski | |
2001-06-25 | Avoid common names. Needs more work. | Artur Grabowski | |
2001-06-25 | rename tree_node -> pf_tree_node | Artur Grabowski | |
2001-06-25 | more | Artur Grabowski | |
2001-06-25 | no point using a char here. | Artur Grabowski | |
2001-06-25 | Detect loops, itojun@ ok | Angelos D. Keromytis | |
2001-06-25 | IF_DROP() | Angelos D. Keromytis | |
2001-06-25 | Use tags to detect loops. In the future, perhaps we'll use them to | Angelos D. Keromytis | |
actually also send the packet out the right interface. | |||
2001-06-25 | packetfilter -> pf in messages | Kjell Wooding | |
2001-06-25 | Copyright update. | Angelos D. Keromytis | |
2001-06-25 | PACKETFILTER -> NPF | Kjell Wooding | |
remove IPF cruft. ok jason | |||
2001-06-25 | No need to double-clear the mbuf flags and tags. | Angelos D. Keromytis | |
2001-06-25 | remove inlines they are plain wrong | Michael Shalayeff | |
2001-06-25 | Move common post M_COPY_HDR manipulation to the macro itself; angelos@ ok. | Federico G. Schwindt | |
2001-06-25 | do not drop unsupported protocol. default to pass. needs to be configurable | Niels Provos | |
later. | |||
2001-06-25 | Some KNF, do not have a char fiel between pointers, it creates | Niklas Hallqvist | |
padding. Do not inline expensive functions, esp. not such declared after first use. | |||
2001-06-25 | use only ioctl return values found in errno.h | Daniel Hartmeier | |
2001-06-24 | do not refer uninitialized var | Jun-ichiro itojun Hagino | |
2001-06-24 | printf string fix | Jun-ichiro itojun Hagino | |
2001-06-24 | remove assumption that protocol header follows the ip header. | Jun-ichiro itojun Hagino | |
always pass "off" around. pull_hdr: remove asumption that ip header is on the top of mbuf. we use pull_hdr on icmp payload (= original ip packet) parsing. avoid mbuf overrun on icmp parsing. never use pointer operations to get the pointer to next header. | |||
2001-06-24 | rename ioctlbuffer to pfioc. | Artur Grabowski | |
2001-06-24 | u_long/u_short and memcpy/memset changes | Daniel Hartmeier | |
2001-06-24 | fix error returns from open and close | Artur Grabowski | |
2001-06-24 | more attempts at cleanup | Theo de Raadt | |
2001-06-24 | - redefine vlan_input_tag to take mbuf * and tag only | Jason Wright | |
- call ether_input_mbuf() instead of ether_input() - most work done by fgsch | |||
2001-06-24 | Use pool for state, tree, nat, rdr, etc. | Artur Grabowski | |
Remove some unnecessary printfs. | |||
2001-06-24 | Use ETHER_IS_MULTICAST macro; jason@ ok. | Federico G. Schwindt | |
2001-06-24 | more cleaning | Theo de Raadt | |
2001-06-24 | pack structures better; dhartmei ok | Theo de Raadt | |
2001-06-24 | REGENTS? ;) | Daniel Hartmeier | |
2001-06-24 | REGENTS? ;) | Daniel Hartmeier | |
2001-06-24 | PACKETFILTER_H now PFVAR_H. thanks smart | Kjell Wooding | |
2001-06-24 | on pull_hdr(), check short m->m_pkthdr.len. fix mesasge (it's not the first | Jun-ichiro itojun Hagino | |
fragment, it's too short packet) |