summaryrefslogtreecommitdiffstats
path: root/sys/net/if_pflow.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Use FNONBLOCK instead of SS_NBIO to check/indicate that the I/O modempi2018-07-301-6/+6
* use 'switch' rathan than an if-else construct to match on the netflow version to in pflow_get_mbuf(),jasper2018-07-161-3/+8
* Pass the socket to sounlock(), this prepare the terrain for per-socketmpi2018-06-061-2/+2
* Remove almost unused `flags' argument of suser().mpi2018-02-191-2/+2
* Creating a cloned interface could return ENOMEM due to temporarybluhm2018-01-091-6/+2
* - add one more softnet taskqsashan2017-10-311-5/+5
* If you use sys/param.h, you don't need sys/types.hderaadt2017-09-081-3/+2
* Use the NET_LOCK() macro instead of handrolling it.mpi2017-08-121-6/+4
* Remove NET_LOCK()'s argument.mpi2017-08-111-7/+6
* Move the solock()/sounlock() dance outside of sobind().mpi2017-08-101-1/+4
* Use mbuf_queue to properly serialize access to pflow output queue.visa2017-05-311-10/+12
* remove no longer needed splnet/splx.benno2017-05-301-8/+4
* fix previous as noted by mpi, thx florianbenno2017-05-271-2/+3
* move sending of pflow packet into a task, seperated from the databenno2017-05-271-45/+40
* Enable the NET_LOCK(), take 3.mpi2017-05-151-1/+7
* Revert the NET_LOCK() and bring back pf's contention lock for release.mpi2017-03-171-7/+1
* Revert "Release the NET_LOCK() before entering per-driver ioctl() routine".mpi2017-02-161-1/+4
* No longer need to unlock the netlock since the upper layer is doing it.mpi2017-02-071-4/+1
* Enable the NET_LOCK(), take 2.mpi2017-01-251-1/+7
* A space here, a space there. Soon we're talking real whitespacekrw2017-01-241-3/+3
* Flag pseudo-interfaces as such in order to call add_net_randomness()mpi2017-01-231-1/+2
* No need to handle SIOCAIFADDR in drivers, it's never passed down tompi2017-01-201-2/+1
* Allow changing of sender ip/port without switching address family.florian2017-01-181-36/+27
* Allow changing of receiver ip/port without switching address family.florian2017-01-181-17/+20
* Move the logic for SIOCSETPFLOW in a helper function to help withmpi2017-01-031-154/+152
* Change NET_LOCK()/NET_UNLOCK() to be simple wrappers aroundmpi2016-12-291-10/+1
* Remove the netlock workaround since if_detach is doing it for us now.mikeb2016-12-211-4/+1
* Release the NET_LOCK() before calling any socket function since it ismpi2016-12-201-1/+13
* Convert timeouts that need a process context to timeout_set_proc(9).mpi2016-10-041-5/+6
* Make if_output() return EAFNOSUPPORT instead of just dropping packetskrw2016-04-291-2/+12
* IPv6 transport for pflow data.florian2015-10-031-37/+135
* Call socreate(9) only when we have a destination ip and port.florian2015-09-121-58/+44
* size for free()florian2015-09-091-2/+2
* pflow_flush() still needs sc->send_nam; free it later.florian2015-09-041-2/+2
* Fix an mbuf use-after-fruit in pflow_clone_create().mpi2015-09-041-2/+2
* We don't do 'ARGSUSED' anymoreflorian2015-07-211-2/+1
* use curproc instead of proc0florian2015-07-211-5/+3
* Use the kernel socket interface (sosend(9) etc) instead of shovingflorian2015-07-201-128/+96
* add missing malloc checkflorian2015-07-161-3/+6
* Store a unique ID, an interface index, rather than a pointer to thempi2015-06-161-2/+2
* Introduce unhandled_af() for cases where code conditionally doesjsg2015-06-071-3/+3
* unifdef INET in net code as a precursor to removing the pretend option.tedu2014-12-191-3/+1
* Yet more #include de-duplication.krw2014-11-201-2/+1
* move arc4random prototype to systm.h. more appropriate for most codetedu2014-11-181-2/+1
* Bring IPFIX sequence numbers in line with the RFC; originalblambert2014-08-131-3/+7
* Fewer <netinet/in_systm.h> !mpi2014-07-221-2/+1
* add a size argument to free. will be used soon, but for now default to 0.tedu2014-07-121-3/+3
* ip_output() using varargs always struck me as bizarre, esp since it's onlyhenning2014-04-211-2/+3
* "struct pkthdr" holds a routing table ID, not a routing domain one.mpi2014-04-141-2/+2
* Kill pflowproto 9, it's unfixable post 2038, a better, standardizedflorian2014-03-291-440/+13