| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix select on fifos. | alfred | 2002-01-14 | 1 | -1/+8 |
* | o Make the credential used by socreate() an explicit argument to | rwatson | 2001-12-31 | 1 | -2/+3 |
* | Give struct socket structures a ref counting interface similar to | dillon | 2001-11-17 | 1 | -6/+27 |
* | Remove EOL whitespace. | keramida | 2001-11-12 | 1 | -8/+8 |
* | Make KASSERT's print the values that triggered a panic. | keramida | 2001-11-12 | 1 | -2/+3 |
* | Change the kernel's ucred API as follows: | jhb | 2001-10-11 | 1 | -2/+1 |
* | - Combine kern.ps_showallprocs and kern.ipc.showallsockets into | rwatson | 2001-10-09 | 1 | -19/+0 |
* | Only allow users to see their own socket connections if | ps | 2001-10-05 | 1 | -0/+30 |
* | Hopefully improve control message passing over Unix domain sockets. | dwmalone | 2001-10-04 | 1 | -14/+13 |
* | Use the passed in thread to selrecord() instead of curthread. | jhb | 2001-09-21 | 1 | -2/+2 |
* | KSE Milestone 2 | julian | 2001-09-12 | 1 | -34/+34 |
* | Undo part of the tangle of having sys/lock.h and sys/mutex.h included in | markm | 2001-05-01 | 1 | -0/+3 |
* | Actually show the values that tripped the assertion "receive 1" | alfred | 2001-04-27 | 1 | -1/+3 |
* | When doing a recv(.. MSG_WAITALL) for a message which is larger than | jlemon | 2001-03-16 | 1 | -0/+6 |
* | Push the test for a disconnected socket when accept()ing down to the | jlemon | 2001-03-09 | 1 | -4/+1 |
* | In soshutdown(), use SHUT_{RD,WR,RDWR} instead of FREAD and FWRITE. | ru | 2001-02-27 | 1 | -3/+5 |
* | Introduce a NOTE_LOWAT flag for use with the read/write filters, which | jlemon | 2001-02-24 | 1 | -0/+4 |
* | When returning EV_EOF for the socket read/write filters, also return | jlemon | 2001-02-24 | 1 | -0/+2 |
* | o Move per-process jail pointer (p->pr_prison) to inside of the subject | rwatson | 2001-02-21 | 1 | -1/+1 |
* | Extend kqueue down to the device layer. | jlemon | 2001-02-15 | 1 | -27/+28 |
* | Return ECONNABORTED from accept if connection is closed while on the | jlemon | 2001-02-14 | 1 | -5/+2 |
* | First step towards an MP-safe zone allocator: | des | 2001-01-21 | 1 | -2/+2 |
* | * Rename M_WAIT mbuf subsystem flag to M_TRYWAIT. | bmilekic | 2000-12-21 | 1 | -9/+9 |
* | Convert more malloc+bzero to malloc+M_ZERO. | dwmalone | 2000-12-08 | 1 | -4/+2 |
* | Accept filters broke kernels compiled without options INET. | alfred | 2000-11-20 | 1 | -6/+19 |
* | Check so_error in filt_so{read|write} in order to detect UDP errors. | jlemon | 2000-09-28 | 1 | -0/+4 |
* | Remove uidinfo hash table lookup and maintenance out of chgproccnt() and | truckman | 2000-09-05 | 1 | -2/+2 |
* | Remove any possibility of hiwat-related race conditions by changing | green | 2000-08-29 | 1 | -2/+2 |
* | Make the kqueue socket read filter honor the SO_RCVLOWAT value. | jlemon | 2000-08-07 | 1 | -1/+1 |
* | only allow accept filter modifications on listening sockets | alfred | 2000-07-20 | 1 | -0/+8 |
* | fix races in the uidinfo subsystem, several problems existed: | alfred | 2000-06-22 | 1 | -2/+2 |
* | return of the accept filter part II | alfred | 2000-06-20 | 1 | -0/+101 |
* | backout accept optimizations. | alfred | 2000-06-18 | 1 | -4/+0 |
* | add socketoptions DELAYACCEPT and HTTPACCEPT which will not allow an accept() | alfred | 2000-06-15 | 1 | -0/+4 |
* | Fix panic by moving the prp == 0 check up the order of sanity checks. | asmodai | 2000-06-13 | 1 | -2/+3 |
* | o Modify jail to limit creation of sockets to UNIX domain sockets, | rwatson | 2000-06-04 | 1 | -0/+9 |
* | Back out the previous change to the queue(3) interface. | jake | 2000-05-26 | 1 | -2/+2 |
* | Change the way that the queue(3) structures are declared; don't assume that | jake | 2000-05-23 | 1 | -2/+2 |
* | Introduce kqueue() and kevent(), a kernel event notification facility. | jlemon | 2000-04-16 | 1 | -0/+109 |
* | Make sure to free the socket in soabort() if the protocol couldn't | fenner | 2000-03-18 | 1 | -1/+7 |
* | Add aio_waitcomplete(). Make aio work correctly for socket descriptors. | jasone | 2000-01-14 | 1 | -0/+1 |
* | Correct an uninitialized variable use, which, unlike most times, is | green | 1999-12-27 | 1 | -4/+2 |
* | This is Bosko Milekic's mbuf allocation waiting code. Basically, this | green | 1999-12-12 | 1 | -0/+12 |
* | KAME netinet6 basic part(no IPsec,no V6 Multicast Forwarding, no UDP/TCP | shin | 1999-11-22 | 1 | -1/+112 |
* | This is a partial commit of the patch from PR 14914: | phk | 1999-11-16 | 1 | -5/+6 |
* | Implement RLIMIT_SBSIZE in the kernel. This is a per-uid sockbuf total | green | 1999-10-09 | 1 | -4/+10 |
* | Change so_cred's type to a ucred, not a pcred. THis makes more sense, actually. | green | 1999-09-19 | 1 | -8/+4 |
* | $Id$ -> $FreeBSD$ | peter | 1999-08-28 | 1 | -1/+1 |
* | Reviewed by: the cast of thousands | green | 1999-06-17 | 1 | -4/+11 |
* | Plug a mbuf leak in tcp_usr_send(). pru_send() routines are expected | peter | 1999-06-04 | 1 | -1/+10 |