aboutsummaryrefslogtreecommitdiff
path: root/sys/netgraph
Commit message (Expand)AuthorAgeFilesLines
* Change the way that the queue(3) structures are declared; don't assume thatJake Burkholder2000-05-235-12/+12
* Add hook for IPv6.Archie Cobbs2000-05-102-4/+9
* Fix a couple of bugs:Archie Cobbs2000-05-052-41/+253
* Don't assume *lasthook is initialized in ng_path2node().Archie Cobbs2000-05-021-2/+2
* Fix broken multi-link fragment reassembly algorithm.Archie Cobbs2000-05-022-260/+715
* Macro call to ng_send_dataq() should have been to ng_send_data() instead.Archie Cobbs2000-05-011-5/+5
* Use 'type_name' structure field instead of 'typename', which isArchie Cobbs2000-05-013-2/+23
* A temporary band-aid for ng_base. It works for some people, a betterPeter Wemm2000-05-011-6/+3
* Minimal tweak to make the ng_XXX modules depend on netgraph so that theyPeter Wemm2000-04-292-1/+4
* Two simple changes to the kernel internal API for netgraph modules,Julian Elischer2000-04-2823-78/+161
* Remove ~25 unneeded #include <sys/conf.h>Poul-Henning Kamp2000-04-192-2/+0
* Fix uninitialized variable.Archie Cobbs2000-04-121-1/+1
* A netgraph node that implements Microsoft Point-to-Point compressionArchie Cobbs2000-04-092-0/+880
* Call bpfdetach() before going away.Archie Cobbs2000-03-211-0/+1
* Newer ciscos have become more picky, and will not accept the MULTICAST bitPoul-Henning Kamp2000-03-171-1/+1
* Updates to the ng_iface(8) netgraph node type:Archie Cobbs2000-03-132-178/+216
* Some minor prototype tweaks.Archie Cobbs2000-03-132-6/+5
* Use snprintf() instead of sprintf().Archie Cobbs2000-03-131-1/+1
* Fix typo: "ng_parse_fixedsstring_info" -> "ng_parse_fixedstring_info"Archie Cobbs2000-03-132-11/+11
* Add control message ASCII conversion for this node type.Archie Cobbs2000-01-272-4/+62
* Fix a few obscure memory leaks.Archie Cobbs2000-01-051-5/+11
* Fix race condition caused by missing splnet()'s.Archie Cobbs2000-01-041-0/+4
* Change #ifdef KERNEL to #ifdef _KERNEL in the public headers. "KERNEL"Peter Wemm1999-12-292-3/+3
* Fix bugs in the MP fragment reassembly code that can cause a panic.Archie Cobbs1999-12-171-26/+32
* New netgraph node type 'pptpgre': this performs GRE encapsulationArchie Cobbs1999-12-082-0/+843
* Remove a bunch of un-needed includes.Julian Elischer1999-12-0716-42/+0
* Change definition of NG_BPF_HOOKPROG_SIZE() so as not to requireArchie Cobbs1999-12-062-9/+10
* New netgraph node type, ng_bpf(8). This node type allows you toArchie Cobbs1999-12-032-0/+607
* Add a new function ng_findhook() for finding a node's hook;Archie Cobbs1999-12-032-14/+26
* Fix bug parsing 32 bit integers on machines where sizeof(long) == 4.Archie Cobbs1999-12-031-1/+2
* Use m_dup() instead of m_copypacket() to duplicate the mbuf chain.Archie Cobbs1999-12-011-1/+1
* Add more comments describing how to use parse types and how they work.Archie Cobbs1999-12-011-46/+165
* Show how to supply a struct ng_cmdlist for (de)asciificationArchie Cobbs1999-12-012-7/+49
* change intial timeout for session negotiation from 1 to 2 seconds.Julian Elischer1999-12-012-2/+4
* Add two new generic control messages, NGM_ASCII2BINARY andArchie Cobbs1999-11-3029-149/+3320
* Change the prototype of the strto* routines to make the secondArchie Cobbs1999-11-245-7/+9
* oops cut-n-paste errorJulian Elischer1999-11-211-1/+1
* It's time to only allow root to manipulate netgraph nodes.Julian Elischer1999-11-211-0/+2
* Hopefully the last patch from Brian to get server side PPPoE working.Julian Elischer1999-11-211-4/+2
* Fixes from brian. With some changes from me.Julian Elischer1999-11-213-43/+74
* Revert previous commit now that 'acfcomp' has been removed fromArchie Cobbs1999-11-191-1/+0
* Add a field archie forgot to merge in from out sources.Julian Elischer1999-11-191-1/+2
* Use 'struct ng_xxx_private' instead of 'struct private' to help gdbArchie Cobbs1999-11-191-2/+2
* Fix bug where hook pointers were not getting updated on disconnection.Archie Cobbs1999-11-192-8/+38
* Move misplaced #define.Archie Cobbs1999-11-191-1/+3
* Add some safety using KASSERT() and splnet().Archie Cobbs1999-11-191-12/+18
* Use KASSERT() instead of old #ifdef DIAGNOSTICS.Archie Cobbs1999-11-191-14/+22
* Remove the address and control field compression functionality of thisArchie Cobbs1999-11-192-34/+17
* Rename 'struct private' to 'struct ng_xxx_private' to allow gdbArchie Cobbs1999-11-192-4/+4
* When allocating a new PKTHDR mbuf, always set m->m_pkthdr.rcvif = NULL.Archie Cobbs1999-11-173-2/+4