| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove zero-copy sockets code. It only worked for anonymous memory, | kib | 2013-09-16 | 1 | -167/+0 |
* | Fix socket buffer timeouts precision using the new sbintime_t KPI instead | davide | 2013-09-01 | 1 | -4/+3 |
* | Don't return an error for socket timeouts that are too large. Just | jhb | 2013-08-29 | 1 | -7/+2 |
* | Use tvtohz() to convert a socket buffer timeout to a tick value rather | jhb | 2013-08-23 | 1 | -7/+2 |
* | When the accept queue is full print the number of already pending | andre | 2013-05-08 | 1 | -1/+1 |
* | Back out r249318, r249320 and r249327 due to a heisenbug most | andre | 2013-05-06 | 1 | -2/+2 |
* | socket: Make shutdown() wake up a blocked accept(). | jilles | 2013-04-30 | 1 | -0/+2 |
* | Fix the build. | jimharris | 2013-04-10 | 1 | -1/+1 |
* | Change certain heavily used network related mutexes and rwlocks to | andre | 2013-04-09 | 1 | -2/+2 |
* | When soreceive_generic() hands off an mbuf from buffer, | glebius | 2013-03-29 | 1 | -0/+1 |
* | Implement SOCK_CLOEXEC, SOCK_NONBLOCK and MSG_CMSG_CLOEXEC. | jilles | 2013-03-19 | 1 | -2/+2 |
* | Return an error if sctp_peeloff() fails because a socket can't be allocated. | tuexen | 2013-03-11 | 1 | -1/+6 |
* | - Implement two new system calls: | pjd | 2013-03-02 | 1 | -3/+43 |
* | Configure UMA warnings for the following zones: | pjd | 2012-12-07 | 1 | -0/+1 |
* | - Make socket_zone static - it is used only in this file. | pjd | 2012-12-07 | 1 | -3/+3 |
* | Style cleanups. | pjd | 2012-12-07 | 1 | -51/+54 |
* | - according to POSIX, make socket(2) return EAFNOSUPPORT rather than | kevlo | 2012-12-07 | 1 | -1/+10 |
* | Mechanically substitute flags from historic mbuf allocator with | glebius | 2012-12-05 | 1 | -13/+13 |
* | Fix r243627 by testing against the head socket instead of the socket | andre | 2012-11-27 | 1 | -1/+1 |
* | Base the mbuf related limits on the available physical memory or | andre | 2012-11-27 | 1 | -6/+3 |
* | Fix a race on listen socket teardown where while draining the | andre | 2012-11-27 | 1 | -4/+21 |
* | In soreceive_stream() don't drop an already dequeued mbuf chain by | andre | 2012-10-29 | 1 | -5/+11 |
* | Add logging for socket attach failures in sonewconn() during accept(2). | andre | 2012-10-29 | 1 | -5/+21 |
* | Replace the ill-named ZERO_COPY_SOCKET kernel option with two | andre | 2012-10-23 | 1 | -16/+19 |
* | Grammar fixes to r241781. | andre | 2012-10-20 | 1 | -1/+1 |
* | Hide the unfortunate named sysctl kern.ipc.somaxconn from sysctl -a | andre | 2012-10-20 | 1 | -1/+7 |
* | Tidy up somaxconn (accept queue limit) and related functions | andre | 2012-10-20 | 1 | -22/+26 |
* | Move socket UMA zone initialization functionality together into | andre | 2012-10-19 | 1 | -17/+16 |
* | Move UMA socket zone initialization from uipc_domain.c to uipc_socket.c | andre | 2012-10-19 | 1 | -0/+23 |
* | Remove unnecessary includes from sosend_copyin() and fix | andre | 2012-10-18 | 1 | -10/+4 |
* | Remove double-wrapping of #ifdef ZERO_COPY_SOCKETS within | andre | 2012-10-18 | 1 | -17/+1 |
* | Fix spelling of the function name in two assertion messages. | wollman | 2012-10-02 | 1 | -2/+2 |
* | In soreceive_generic() remove the optimization for the case when | trociny | 2012-09-02 | 1 | -8/+2 |
* | In soreceive_generic() when checking if the type of mbuf has changed | trociny | 2012-09-02 | 1 | -2/+2 |
* | Fix KASSERT message. | trociny | 2012-07-03 | 1 | -1/+1 |
* | - Remove redundant call to pr_ctloutput from code that handles SO_SETFIB. | np | 2012-04-03 | 1 | -6/+5 |
* | Add SO_PROTOCOL/SO_PROTOTYPE socket SOL_SOCKET-level option to get the | kib | 2012-02-26 | 1 | -0/+4 |
* | Remove apparently redundand checks for socket so_proto being non-NULL | kib | 2012-02-26 | 1 | -9/+5 |
* | Fix found places where uio_resid is truncated to int. | kib | 2012-02-21 | 1 | -6/+11 |
* | Merge multi-FIB IPv6 support from projects/multi-fibv6/head/: | bz | 2012-02-17 | 1 | -0/+2 |
* | Fix input validation in SO_SETFIB. | hrs | 2012-02-04 | 1 | -1/+1 |
* | Remove a few bits of FreeBSD 2.x compatibility code. | rmh | 2011-11-14 | 1 | -3/+0 |
* | Fix a deficiency in the selinfo interface: | attilio | 2011-08-25 | 1 | -0/+2 |
* | In the experimental soreceive_stream(): | andre | 2011-07-08 | 1 | -13/+9 |
* | Remove the TCP_SORECEIVE_STREAM compile time option. The use of | andre | 2011-07-07 | 1 | -2/+0 |
* | In soreceive_generic(), if MSG_WAITALL is set but the request is | trociny | 2011-05-29 | 1 | -4/+10 |
* | Mfp4 CH=177274,177280,177284-177285,177297,177324-177325 | bz | 2011-02-16 | 1 | -20/+78 |
* | Allow the SO_SETFIB socket option to select the default (0) | deischen | 2011-02-13 | 1 | -4/+5 |
* | Mfp4 CH=177255: | bz | 2011-02-11 | 1 | -1/+2 |
* | This commit implements the SO_USER_COOKIE socket option, which lets | luigi | 2010-11-12 | 1 | -0/+10 |