| Commit message (Expand) | Author | Age | Files | Lines |
* | Add code to allow the system to handle multiple routing tables. | julian | 2008-05-09 | 1 | -1/+2 |
* | When querying the local or foreign address from an IP socket, acquire | rwatson | 2008-04-19 | 1 | -6/+6 |
* | Convert pcbinfo and inpcb mutexes to rwlocks, and modify macros to | rwatson | 2008-04-17 | 1 | -31/+40 |
* | In in_pcbnotifyall() and in6_pcbnotify(), use LIST_FOREACH_SAFE() and | rwatson | 2008-04-06 | 1 | -5/+2 |
* | change inp_wlock_assert to inp_lock_assert | kmacy | 2008-03-24 | 1 | -2/+2 |
* | Insulate inpcb consumers outside the stack from the lock type and offset with... | kmacy | 2008-03-23 | 1 | -0/+44 |
* | Fix indentation for a closing brace in in_pcballoc(). | rwatson | 2008-03-17 | 1 | -1/+1 |
* | Change the default port range for outgoing connections by introducing | rpaulo | 2008-03-04 | 1 | -40/+21 |
* | When IPSEC fails to allocate policy state for an inpcb, and MAC is in use, | rwatson | 2007-12-22 | 1 | -1/+5 |
* | Merge first in a series of TrustedBSD MAC Framework KPI changes | rwatson | 2007-10-24 | 1 | -3/+3 |
* | Add FBSDID to all files in netinet so that people can more | silby | 2007-10-07 | 1 | -1/+3 |
* | Commit the change from FAST_IPSEC to IPSEC. The FAST_IPSEC | gnn | 2007-07-03 | 1 | -7/+7 |
* | Commit IPv6 support for FAST_IPSEC to the tree. | gnn | 2007-07-01 | 1 | -23/+6 |
* | Import rewrite of IPv4 socket multicast layer to support source-specific | bms | 2007-06-12 | 1 | -1/+2 |
* | Eliminate now-unused SUSER_ALLOWJAIL arguments to priv_check_cred(); in | rwatson | 2007-06-12 | 1 | -3/+3 |
* | Reduce network stack oddness: implement .pru_sockaddr and .pru_peeraddr | rwatson | 2007-05-11 | 1 | -15/+7 |
* | Remove unused pcbinfo arguments to in_setsockaddr() and | rwatson | 2007-05-01 | 1 | -4/+2 |
* | Rename some fields of struct inpcbinfo to have the ipi_ prefix, | rwatson | 2007-04-30 | 1 | -19/+20 |
* | Add a new privilege, PRIV_NETINET_REUSEPORT, which will replace superuser | rwatson | 2007-04-10 | 1 | -1/+2 |
* | #ifdef INET6 printing of inpcb IPv6 addresses in DDB. Patch committed | rwatson | 2007-02-18 | 1 | -0/+4 |
* | Add "show inpcb", "show tcpcb" DDB commands, which should come in handy | rwatson | 2007-02-17 | 1 | -1/+251 |
* | Some whitespace nits and remove a few casts. | jhb | 2006-12-29 | 1 | -1/+1 |
* | Consistently use #ifdef INET6 rather than mixing and matching with | rwatson | 2006-11-30 | 1 | -21/+19 |
* | Sweep kernel replacing suser(9) calls with priv(9) calls, assigning | rwatson | 2006-11-06 | 1 | -2/+6 |
* | Complete break-out of sys/sys/mac.h into sys/security/mac/mac_framework.h | rwatson | 2006-10-22 | 1 | -1/+2 |
* | o Backout rev. 1.125 of in_pcb.c. It appeared to behave extremely | glebius | 2006-09-06 | 1 | -16/+0 |
* | Fix race conditions on enumerating pcb lists by moving the initialization | ups | 2006-07-18 | 1 | -5/+9 |
* | Use INPLOOKUP_WILDCARD instead of just 1 more consistently. | bz | 2006-06-29 | 1 | -1/+1 |
* | - Use suser_cred(9) instead of directly checking cr_uid. | pjd | 2006-06-27 | 1 | -2/+2 |
* | Minor restyling and cleanup around ipport_tick(). | rwatson | 2006-06-02 | 1 | -11/+9 |
* | In in_pcbdrop(), fix !INVARIANTS build. | marcel | 2006-04-25 | 1 | -2/+1 |
* | Abstract inpcb drop logic, previously just setting of INP_DROPPED in TCP, | rwatson | 2006-04-25 | 1 | -0/+28 |
* | Assert the inpcb lock when rehashing an inpcb. | rwatson | 2006-04-22 | 1 | -0/+5 |
* | Remove pcbinfo locking from in_setsockaddr() and in_setpeeraddr(); | rwatson | 2006-04-22 | 1 | -6/+4 |
* | Before dereferencing intotw() when INP_TIMEWAIT, check for inp_ppcb being | rwatson | 2006-04-04 | 1 | -4/+14 |
* | Change inp_ppcb from caddr_t to void *, fix/remove associated related | rwatson | 2006-04-03 | 1 | -2/+4 |
* | Break out in_pcbdetach() into two functions: | rwatson | 2006-04-01 | 1 | -18/+21 |
* | In in_pcbconnect_setup() reduce code duplication and use ip_rtaddr() | andre | 2006-02-16 | 1 | -16/+10 |
* | Never select the PCB that has INP_IPV6 flag and is bound to :: if | ume | 2006-02-04 | 1 | -1/+23 |
* | Convert remaining functions to ANSI C function declarations; remove | rwatson | 2006-01-22 | 1 | -77/+33 |
* | Remove no-op spl references in in_pcb.c, since in_pcb locking has been | rwatson | 2005-07-19 | 1 | -15/+3 |
* | Commit correct version of previous commit (in_pcb.c:1.164). Use the | rwatson | 2005-06-01 | 1 | -2/+2 |
* | Assert pcbinfo lock in in_pcbdisconnect() and in_pcbdetach(), as the | rwatson | 2005-06-01 | 1 | -0/+3 |
* | o Tweak the comment a bit. | maxim | 2005-04-08 | 1 | -1/+1 |
* | o Disable random port allocation when ip.portrange.first == | maxim | 2005-04-08 | 1 | -0/+6 |
* | o Document net.inet.ip.portrange.random* sysctls. | maxim | 2005-03-23 | 1 | -7/+10 |
* | We can make code simplier after last change. | glebius | 2005-02-22 | 1 | -2/+2 |
* | In in_pcbconnect_setup() remove a check that route points at | glebius | 2005-02-22 | 1 | -4/+2 |
* | /* -> /*- for license, minor formatting changes | imp | 2005-01-07 | 1 | -1/+1 |
* | Port randomization leads to extremely fast port reuse at high | silby | 2005-01-02 | 1 | -4/+52 |