aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/uipc_socket.c
Commit message (Expand)AuthorAgeFilesLines
* Make similar changes to fo_stat() and fo_poll() as made earlier toRobert Watson2002-08-161-1/+2
* Use the credential authorizing the socket creation operation to performRobert Watson2002-08-121-2/+2
* Include file cleanup; mac.h and malloc.h at one point had orderingRobert Watson2002-08-011-1/+1
* Introduce support for Mandatory Access Control and extensibleRobert Watson2002-08-011-1/+42
* Introduce support for Mandatory Access Control and extensibleRobert Watson2002-07-311-0/+11
* Catch up to rev 1.87 of sys/sys/socketvar.h (sb_cc changed from u_longMike Barcroft2002-07-241-1/+1
* More caddr_t removal.Alfred Perlstein2002-06-291-2/+2
* At long last, commit the zero copy sockets code.Kenneth D. Merry2002-06-261-0/+102
* Implement SO_NOSIGPIPE option for sockets. This allows one to request thatAlfred Perlstein2002-06-201-0/+2
* Back out my lats commit of locking down a socket, it conflicts with hsu's work.Seigo Tanimura2002-05-311-177/+31
* - td will never be NULL, so the call to soalloc() in socreate() will alwaysAndrew R. Reiter2002-05-211-2/+2
* - OR the flag variable with M_ZERO so that the uma_zalloc() handles theAndrew R. Reiter2002-05-211-2/+1
* Lock down a socket, milestone 1.Seigo Tanimura2002-05-201-31/+177
* Make funsetown() take a 'struct sigio **' so that the locking canAlfred Perlstein2002-05-061-1/+1
* Redo the sigio locking.Alfred Perlstein2002-05-011-1/+1
* Make sure that sockets undergoing accept filtering are aborted in aMike Silbersack2002-04-261-2/+1
* There's only one socket zone so we don't need to remember itJeffrey Hsu2002-04-081-2/+1
* UMA permited us to utilize the 'waitok' flag to soalloc.Jeff Roberson2002-03-201-2/+7
* Remove references to vm_zone.h and switch over to the new uma API.Jeff Roberson2002-03-201-4/+4
* This is the first part of the new kernel memory allocator. This replacesJeff Roberson2002-03-191-1/+1
* In sosend(), enforce the socket buffer limits regardless of whetherIan Dowse2002-02-281-1/+1
* Simple p_ucred -> td_ucred changes to start using the per-thread ucredJohn Baldwin2002-02-271-1/+1
* Get rid of the twisted MFREE() macro entirely.Matthew Dillon2002-02-051-2/+2
* Fix select on fifos.Alfred Perlstein2002-01-141-1/+8
* o Make the credential used by socreate() an explicit argument toRobert Watson2001-12-311-2/+3
* Give struct socket structures a ref counting interface similar toMatthew Dillon2001-11-171-6/+27
* Remove EOL whitespace.Giorgos Keramidas2001-11-121-8/+8
* Make KASSERT's print the values that triggered a panic.Giorgos Keramidas2001-11-121-2/+3
* Change the kernel's ucred API as follows:John Baldwin2001-10-111-2/+1
* - Combine kern.ps_showallprocs and kern.ipc.showallsockets intoRobert Watson2001-10-091-19/+0
* Only allow users to see their own socket connections ifPaul Saab2001-10-051-0/+30
* Hopefully improve control message passing over Unix domain sockets.David Malone2001-10-041-14/+13
* Use the passed in thread to selrecord() instead of curthread.John Baldwin2001-09-211-2/+2
* KSE Milestone 2Julian Elischer2001-09-121-34/+34
* Undo part of the tangle of having sys/lock.h and sys/mutex.h included inMark Murray2001-05-011-0/+3
* Actually show the values that tripped the assertion "receive 1"Alfred Perlstein2001-04-271-1/+3
* When doing a recv(.. MSG_WAITALL) for a message which is larger thanJonathan Lemon2001-03-161-0/+6
* Push the test for a disconnected socket when accept()ing down to theJonathan Lemon2001-03-091-4/+1
* In soshutdown(), use SHUT_{RD,WR,RDWR} instead of FREAD and FWRITE.Ruslan Ermilov2001-02-271-3/+5
* Introduce a NOTE_LOWAT flag for use with the read/write filters, whichJonathan Lemon2001-02-241-0/+4
* When returning EV_EOF for the socket read/write filters, also returnJonathan Lemon2001-02-241-0/+2
* o Move per-process jail pointer (p->pr_prison) to inside of the subjectRobert Watson2001-02-211-1/+1
* Extend kqueue down to the device layer.Jonathan Lemon2001-02-151-27/+28
* Return ECONNABORTED from accept if connection is closed while on theJonathan Lemon2001-02-141-5/+2
* First step towards an MP-safe zone allocator:Dag-Erling Smørgrav2001-01-211-2/+2
* * Rename M_WAIT mbuf subsystem flag to M_TRYWAIT.Bosko Milekic2000-12-211-9/+9
* Convert more malloc+bzero to malloc+M_ZERO.David Malone2000-12-081-4/+2
* Accept filters broke kernels compiled without options INET.Alfred Perlstein2000-11-201-6/+19
* Check so_error in filt_so{read|write} in order to detect UDP errors.Jonathan Lemon2000-09-281-0/+4
* Remove uidinfo hash table lookup and maintenance out of chgproccnt() andDon Lewis2000-09-051-2/+2