summaryrefslogtreecommitdiffstats
path: root/sys/netgraph/ng_hub.c
Commit message (Collapse)AuthorAgeFilesLines
* Mechanically substitute flags from historic mbuf allocator withglebius2012-12-051-1/+1
| | | | | | | | | malloc(9) flags within sys. Exceptions: - sys/contrib not touched - sys/mbuf.h edited manually
* Mark MALLOC_DEFINEs static that have no corresponding MALLOC_DECLAREs.ed2011-11-071-1/+1
| | | | This means that their use is restricted to a single C file.
* Node constructor methods are supposed to be called in syscallglebius2011-04-181-3/+1
| | | | | | | context always. Convert nodes to consistently use M_WAITOK flag for memory allocation. Reviewed by: julian
* Properly unref ng_hub nodes on shutdown, so that we don't leak them.zec2011-04-071-0/+2
| | | | MFC after: 3 days
* Add an optional "persistent" flag to ng_hub and ng_bridge, which if set,zec2010-05-051-1/+73
| | | | | | disables automatic node shutdown when the last hook gets disconnected. Reviewed by: julian
* Having moved metadata usage to mbuf tags, remove code that supportsjulian2004-06-261-11/+1
| | | | | | the old way of doing it. Submitted by: Gleb Smirnoff <glebius@cell.sick.ru>
* Don't give up if sending to one link fails, continue.ru2004-04-171-1/+1
| | | | Suggested by: jmallett
* A simple packet distribution node type that acts like an Ethernet hub.ru2004-04-171-0/+110
OpenPOWER on IntegriCloud