aboutsummaryrefslogtreecommitdiff
path: root/sys/netgraph/ng_socket.c
Commit message (Expand)AuthorAgeFilesLines
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.Alfred Perlstein2003-01-211-5/+5
* Bow to the whining masses and change a union back into void *. RetainMatthew Dillon2003-01-131-1/+1
* Change struct file f_data to un_data, a union of the correct structMatthew Dillon2003-01-121-1/+1
* Correct typos, mostly s/ a / an / where appropriate. Some whitespace cleanup,Jens Schweikhardt2003-01-011-2/+2
* Don't use "NULL" when "0" is really meant.Archie Cobbs2002-08-221-2/+2
* Const'ify variables to make it clear we're not writing to the mbuf data.Archie Cobbs2002-06-051-1/+1
* Back out my lats commit of locking down a socket, it conflicts with hsu's work.Seigo Tanimura2002-05-311-16/+0
* Lock down a socket, milestone 1.Seigo Tanimura2002-05-201-0/+16
* Revert the change of #includes in sys/filedesc.h and sys/socketvar.h.Seigo Tanimura2002-04-301-3/+5
* Change the suser() API to take advantage of td_ucred as well as do aJohn Baldwin2002-04-011-1/+1
* Replace ffind_* with fget calls.Alfred Perlstein2002-01-141-3/+2
* SMP Lock struct file, filedesc and the global file list.Alfred Perlstein2002-01-131-4/+5
* Staticise the socket list.Mike Smith2002-01-081-1/+1
* Update to C99, s/__FUNCTION__/__func__/,David E. O'Brien2001-12-101-1/+1
* Fix bug that cheated hook names out of the last 2 bytes.Archie Cobbs2001-10-101-2/+2
* Hopefully improve control message passing over Unix domain sockets.David Malone2001-10-041-2/+2
* KSE Milestone 2Julian Elischer2001-09-121-12/+12
* Shuffle sysctls a bit (thankyou whoever made them dynamic for modules)Julian Elischer2001-02-231-1/+0
* Add a dummy disconnect function so that the socket code doesn't leap intoJulian Elischer2001-02-051-2/+7
* Make netgraph modules refuse to link with modules of a different ABI version.Julian Elischer2001-02-051-37/+70
* Fix some memory leaksJulian Elischer2001-01-101-7/+15
* Part 2 of the netgraph rewrite.Julian Elischer2001-01-081-29/+68
* Rewrite of netgraph to start getting ready for SMP.Julian Elischer2001-01-061-107/+96
* Divorce the kernel binary ABI version number from the messageJulian Elischer2000-12-181-1/+1
* Reviewed by: Archie@freebsd.orgJulian Elischer2000-12-121-8/+9
* Add the use of M_ZERO to netgraph.David Malone2000-11-181-6/+3
* Move suser() and suser_xxx() prototypes and a related #define fromPoul-Henning Kamp2000-10-291-1/+0
* Since neither archie nor I work at Whistle any more, change our emailJulian Elischer2000-10-241-1/+1
* Increase the maximum allowable datagram length.Archie Cobbs2000-08-101-1/+1
* Back out the previous change to the queue(3) interface.Jake Burkholder2000-05-261-1/+1
* Change the way that the queue(3) structures are declared; don't assume thatJake Burkholder2000-05-231-1/+1
* Two simple changes to the kernel internal API for netgraph modules,Julian Elischer2000-04-281-3/+4
* Remove a bunch of un-needed includes.Julian Elischer1999-12-071-1/+0
* Add two new generic control messages, NGM_ASCII2BINARY andArchie Cobbs1999-11-301-1/+2
* 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-211-22/+38
* Provide an empty name to getsockname() if one hasn't been set up.Brian Somers1999-11-111-15/+28
* Move a structure Netstat needs back out to ng_socketvar.h (yech)Julian Elischer1999-11-061-18/+1
* Add the option for a socket node to shut down when the last hookJulian Elischer1999-11-051-2/+55
* Add typedefs for node methodsJulian Elischer1999-11-011-7/+6
* Whistle's Netgraph link-layer (sometimes more) networking infrastructure.Julian Elischer1999-10-211-0/+957