Age | Commit message (Expand) | Author |
2005-07-06 | Eliminate a couple of 'msg.msg_iovlen < 0' tests. msg_iovlen is | Kenneth R Westerback |
2004-07-22 | remove p arg from fdplock | Ted Unangst |
2004-04-12 | make sockargs take void *, combine a len check. | Ted Unangst |
2004-04-01 | use NULL for ptrs. parts from Joris Vink | Ted Unangst |
2004-01-06 | lock filedesc before manipulating. avoids some rare races. | Ted Unangst |
2003-09-01 | match syscallargs comments with reality | Henning Brauer |
2003-07-21 | remove caddr_t casts. it's just silly to cast something when the function | Ted Unangst |
2003-06-02 | Remove the advertising clause in the UCB license which Berkeley | Todd C. Miller |
2002-08-23 | Just like getvnode, make getsock FREF the file so that we can't get away | Artur Grabowski |
2002-05-23 | In sys_accept don't FILE_SET_MATURE the file if we got an error and we've fre... | Artur Grabowski |
2002-02-12 | Fix my total blackout of the brain. | Artur Grabowski |
2002-02-12 | Fix all users of getsock to use FREF/FRELE properly. | Artur Grabowski |
2002-02-11 | In {send,recv}msg allow zero sized message. We can have control data. | Artur Grabowski |
2002-02-08 | - Rename FILE_{,UN}USE to FREF and FRELE. USE is a bad verb and we don't have | Artur Grabowski |
2001-12-27 | makes a new accept() socket have the nonblock behavior. | Federico G. Schwindt |
2001-12-02 | release the right descriptors when pipe fails; bug report from | Niels Provos |
2001-11-28 | avoid "thundering herd" problem in accept by waking just one process. | Niels Provos |
2001-11-27 | change socket connection queues to use TAILQ_ | Niels Provos |
2001-10-26 | - every new fd created by falloc() is marked as larval and should not be used | Artur Grabowski |
2001-09-20 | occured->occurred | Mike Pechkin |
2001-09-17 | Don't treated return length of recvfrom() as a size_t... it's a socklen_t. | Jason Wright |
2001-06-26 | implement djb's getpeereid(2), to allow local-domain servers to determine cli... | Dug Song |
2001-06-22 | KNF | Theo de Raadt |
2001-05-16 | No need to check M_WAIT/M_WAITOK malloc return values. (art@ ok) | Hakan Olsson |
2001-05-14 | gc OLD_PIPE. | Artur Grabowski |
2001-02-19 | Indentation nit. | Artur Grabowski |
2001-02-09 | return error from soaccept() upwards. part of accept(2) fix against RST | Jun-ichiro itojun Hagino |
2000-11-16 | support kernel event queues, from FreeBSD by Jonathan Lemon, | Niels Provos |
2000-11-10 | Change the ktrace interface functions from taking the trace vnode to taking the | Artur Grabowski |
2000-10-12 | allow buflen > MLEN for !SO_NAME case (like ancillary data, necessary for | Jun-ichiro itojun Hagino |
2000-09-27 | replace MALLOC/FREE w/ malloc/free for non-constant-sized memory allocations;... | Michael Shalayeff |
2000-01-17 | oops, another syscall pipe() botch; karls@inet.no | Theo de Raadt |
1999-12-08 | bring in KAME IPv6 code, dated 19991208. | Jun-ichiro itojun Hagino |
1999-07-13 | introduce fdremove() to mark a file descriptor as unused. fdremove makes | Niels Provos |
1999-06-15 | do not mangle retval, makes return value sane; problem found by millert | Theo de Raadt |
1999-06-11 | oops | Niels Provos |
1999-06-08 | copy int sized objects, not register_t sized objects in pipe() | Theo de Raadt |
1999-06-08 | better fd leak prevention | Theo de Raadt |
1999-06-07 | need seperate sys_pipe() versions, for pipeclose() or soclose() calls | Theo de Raadt |
1999-06-07 | replacement pipe() system call; copies data into place inside kernel, so | Theo de Raadt |
1999-06-07 | do not leak file descriptors if copyout() fails | Theo de Raadt |
1999-06-07 | store NULL in fd_ofiles | Theo de Raadt |
1999-02-15 | sendto(2) takes a socklen_t as well | Todd C. Miller |
1999-02-15 | use socklen_t | Todd C. Miller |
1999-02-14 | Use IOV_MAX, not the deprecated UIO_MAXIOV | Todd C. Miller |
1999-02-14 | Don't do range checking on namelen unless name is non-NULL, otherwise | Todd C. Miller |
1999-02-14 | readv/writev with iov_len == 0 is legal (was already ok in uipc_syscalls.c). | Todd C. Miller |
1999-02-11 | avoid insane lengths for various syscalls | Theo de Raadt |
1998-09-14 | allow the recvfrom (fd, NULL, 0, MSG_PEEK, ...) again, pr 584. | Niels Provos |
1998-08-05 | return EMSGSIZE, not EINVAL is msg_iovlen <= 0 as per XPG 4.2 | Todd C. Miller |