Age | Commit message (Expand) | Author |
2009-10-31 | Use suser when possible. Suggested by miod@. | Federico G. Schwindt |
2009-08-10 | Don't use char arrays for sleep wchans and reuse them. | Thordur I. Bjornsson |
2009-06-05 | Initial support for routing domains. This allows to bind interfaces to | Claudio Jeker |
2009-03-15 | Introduce splsoftassert(), similar to splassert() but for soft interrupt | Miod Vallat |
2009-02-22 | fix PR 6082: do not create more fd's than will fit in the message on | Otto Moerbeek |
2009-01-13 | Change sbreserve() to return 0 on success, 1 on failure, as god intended. | Bret Lambert |
2008-10-09 | Change sb_timeo to unsigned, so that even if some calculation (ie. n * HZ) | Theo de Raadt |
2008-08-07 | don't wait for a free mbuf cluster in sosend() and enter the existing | Reyk Floeter |
2008-06-14 | A bunch of pool_get() + bzero() -> pool_get(..., .. | PR_ZERO) | Michael Knudsen |
2008-05-23 | Deal with the situation when TCP nfs mounts timeout and processes | Thordur I. Bjornsson |
2008-05-09 | Add SO_BINDANY socket option from BSD/OS. | Markus Friedl |
2008-05-02 | Make the SO_TIMESTAMP sockopt work. When set, this allows the user to | Chris Kuethe |
2007-12-20 | Remove an obsolete nfs kludge, spotted by Frank Denis (many thanks), also the... | Charles Longeau |
2007-02-26 | exclude control data from the number of bytes returned by FIONREAD ioctl() | Kurt Miller |
2007-02-14 | Consistently spell FALLTHROUGH to appease lint. | Jonathan Gray |
2006-06-10 | allow SO_SNDBUF and SO_RECVBUF setsockopts on existing sockets to succeed | Bob Beck |
2006-03-04 | With the exception of two other small uncommited diffs this moves | Brad Smith |
2006-01-05 | ansi/deregister | Jonathan Gray |
2005-09-16 | backout until we find a socket state for init | Theo de Raadt |
2005-09-10 | upon shutdown(), if socket is unconnected return ENOTCONN; ok millert | Theo de Raadt |
2005-08-11 | Use SHUT_* values directly in soshutdown() instead of converting | Todd C. Miller |
2005-05-27 | add a field to struct socket that stores the pid of the process that | Daniel Hartmeier |
2005-05-27 | Experimental support for opportunitic use of jumbograms where only some hosts | Ryan Thomas McBride |
2004-11-18 | enable receive() accounting and use uio_procp for send() accounting, too | Markus Friedl |
2004-09-16 | add hint for lower layer that a sosend() is in progress (SS_ISSENDING) | Markus Friedl |
2004-07-28 | Call dom_dispose() for any SCM_RIGHTS message that went through the | Todd C. Miller |
2004-04-19 | also use sbcheckreserve() for setsockopt of SO_SNDBUF and SO_RCVBUF | Theo de Raadt |
2004-04-01 | use NULL for ptrs. parts from Joris Vink | Ted Unangst |
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 |
2003-02-03 | knf | Theo de Raadt |
2002-11-27 | Avoid possible wraparound when checking timeout size; mickey@ OK | Todd C. Miller |
2002-11-27 | fix an underflow in socket timeout calculations. | Michael Shalayeff |
2002-08-08 | redo socketbuf speedup. | Niels Provos |
2002-08-08 | backout the tree break. ok pb@, art@ | Todd T. Fries |
2002-08-08 | socket buf speedup from thorpej@netbsd, okay art@ ericj@: | Niels Provos |
2002-06-11 | splassert where necessary | Artur Grabowski |
2002-05-11 | track egid/rgid on bound/connected sockets too (pf will use this) | Theo de Raadt |
2002-02-05 | Do range check on SO_LINGER, closes pr#2375. art@ ok | Thomas Nordin |
2002-01-23 | Pool deals fairly well with physical memory shortage, but it doesn't deal | Artur Grabowski |
2001-11-28 | avoid possible infinite loop in sosend() on 64bit systems. - from netbsd | Eric Jackson |
2001-11-27 | change socket allocation to pool allocator; from netbsd; okay niklas@ | Niels Provos |
2001-11-27 | fix an error in sosend() that could make a transient error permant. | Niels Provos |
2001-11-27 | change socket connection queues to use TAILQ_ | Niels Provos |
2001-06-22 | KNF | Theo de Raadt |
2001-05-25 | recover old acecept(2) behavior (no ECONNABORTED) for unix domain socket. | Jun-ichiro itojun Hagino |
2001-03-06 | different fix, we still need to deliver EV_EOF; from jlemon@freebsd.org | Niels Provos |
2001-03-06 | fix a kqueue related panic triggered by shutdown, okay art@ | Niels Provos |
2001-03-01 | port kqueue changes from freebsd, plus all required openbsd glue. | Niels Provos |
2001-02-07 | return ECONNABORTED, if the socket (tcp connection for example) | Jun-ichiro itojun Hagino |