aboutsummaryrefslogtreecommitdiff
path: root/sys/netgraph
Commit message (Expand)AuthorAgeFilesLines
* Make WITNESS happier:Gleb Smirnoff2005-02-141-20/+14
* Add new netgraph control message NGM_ETHER_DETACH, which actuallyGleb Smirnoff2005-02-142-0/+11
* Bump cookie value to reflect change in NGM_IFACE_GET_IFNAME semantics.Archie Cobbs2005-02-131-2/+2
* Drop mythical module dependency on ng_ether.Ruslan Ermilov2005-02-131-2/+0
* Restore previous cookie. Old programs will work with new node OK,Gleb Smirnoff2005-02-121-1/+1
* - bzero sockaddr_dlGleb Smirnoff2005-02-121-8/+4
* Fix typo in a comment.Ruslan Ermilov2005-02-121-1/+1
* Fallout from the ALTQ import.Ruslan Ermilov2005-02-121-1/+1
* Allocate enough space for new tag.Gleb Smirnoff2005-02-121-1/+2
* When netgraph(4) was converted to use mbuf_tags(9) instead of meta-dataGleb Smirnoff2005-02-122-3/+10
* Add two new netgraph messages NGM_ETHER_ADD_MULTI and NGM_ETHER_DEL_MULTI,Gleb Smirnoff2005-02-122-2/+59
* Removed redundant MODULE_VERSION().Ruslan Ermilov2005-02-122-2/+0
* Make netgraph ISR and callout MPSAFE.Gleb Smirnoff2005-02-122-4/+3
* style: fix indentation and spacing.Gleb Smirnoff2005-02-111-4/+4
* Do not trust ipfw: check m_len always, not only after m_dup.Gleb Smirnoff2005-02-111-2/+5
* - do m_pullup() after m_dup()Gleb Smirnoff2005-02-111-3/+4
* pullup to sizeof struct ip before sending to ip_output.Gleb Smirnoff2005-02-111-1/+7
* Packets from ipfw come with IP header in host byte order. Netgraph worksGleb Smirnoff2005-02-111-9/+12
* Make M_NETGRAPH_ETF staticPoul-Henning Kamp2005-02-101-1/+1
* Fix incorrect comment.Archie Cobbs2005-02-101-1/+1
* In revision 1.29 timeout() was converted to ng_callout().Ruslan Ermilov2005-02-091-15/+9
* bzero() -> M_ZERO.Ruslan Ermilov2005-02-083-5/+2
* Improve parsing of hook name.Gleb Smirnoff2005-02-071-6/+8
* Whitespace.Gleb Smirnoff2005-02-061-9/+9
* Remove comment which left after removal of ng_rcvdataq_t.Gleb Smirnoff2005-02-061-1/+1
* Increase size of arglen to uint32_t, since uint16_t proved to beGleb Smirnoff2005-02-051-7/+7
* Add a ng_ipfw node, implementing a quick and simple interface betweenGleb Smirnoff2005-02-052-0/+371
* Expire aged flows in normal expiry thread. This fixes the problem, whenGleb Smirnoff2005-02-051-1/+2
* Break long lines in code and comments.Gleb Smirnoff2005-02-051-15/+18
* Create a per-module mutex on MOD_LOAD, and destroy it on MOD_UNLOAD.Ruslan Ermilov2005-02-055-5/+97
* Do check that version of a message from userland matches ours.Gleb Smirnoff2005-02-041-0/+5
* - Fix build with TRACE_MESSAGES definedGleb Smirnoff2005-02-041-2/+2
* Parse "getifname" using the standard parse string type.Ruslan Ermilov2005-02-034-57/+12
* Fixed an off-by-one error when dealing with interface nameRuslan Ermilov2005-02-031-9/+6
* Fixed an off-by-one error when dealing with interface nameRuslan Ermilov2005-02-033-6/+6
* Added ASCII version of the NGM_EIFACE_GET_IFNAME message, "getifname".Ruslan Ermilov2005-02-032-14/+10
* Removed unused includes.Ruslan Ermilov2005-02-031-3/+0
* Fix the comment.Ruslan Ermilov2005-02-021-2/+2
* Whitespace and "const" changes to reduce diffs to RELENG_4.Ruslan Ermilov2005-02-022-88/+90
* In case of various tunneling protocols, mbuf may pass several interfacesGleb Smirnoff2005-02-011-3/+5
* Rename ng_callout_trapoline to ng_callout_trampoline.Gleb Smirnoff2005-01-261-3/+3
* With recent changes to _callout_stop_safe() we can remove a hackGleb Smirnoff2005-01-251-6/+1
* Fix an evil typo.Gleb Smirnoff2005-01-241-1/+1
* Use log() instead of printf(), to reduce flood on console.Gleb Smirnoff2005-01-202-5/+9
* Ups, misprint, change and => add.Roman Kurakin2005-01-161-1/+1
* Fix comment. Code 0x95 means locking shift to codeset 5 according toRoman Kurakin2005-01-161-2/+2
* Fix variable name in comment num=>alen. (Lost part of commit rev 1.2)Roman Kurakin2005-01-161-1/+1
* Raise & drop IFF_RUNNING upon receival of netgraph flow controlGleb Smirnoff2005-01-141-0/+12
* Consider IFF_UP as "administratively up" flag, and IFF_RUNNING asGleb Smirnoff2005-01-141-2/+2
* Locking and cleanup of tty netgraph node. Tty stack is Giant-locked,Gleb Smirnoff2005-01-131-176/+182