aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet
Commit message (Expand)AuthorAgeFilesLines
* Don't claim "(+ipv6)" if we didn't build with INET6.Max Laier2006-05-111-1/+5
* Modify UDP to use sosend_dgram() instead of sosend(). This allowsRobert Watson2006-05-061-0/+1
* Make sure the ip data pointer is correct before touching it againBjoern A. Zeeb2006-05-051-0/+1
* Only return (tw) from tcp_twclose() if reuse is passed, otherwiseRobert Watson2006-05-051-1/+1
* /tmp/cvsTXPIwQPawel Jakub Dawidek2006-05-051-0/+1
* In in_pcbdrop(), fix !INVARIANTS build.Marcel Moolenaar2006-04-251-2/+1
* Rename 'last' to 'inp' in udp_append(): the name 'last' is due toRobert Watson2006-04-251-15/+15
* Abstract inpcb drop logic, previously just setting of INP_DROPPED in TCP,Robert Watson2006-04-254-6/+33
* Instead of calling tcp_usr_detach() from tcp_usr_abort(), break outRobert Watson2006-04-241-52/+64
* Replace isn_mtx direct use with ISN_*() lock macros so that lockingRobert Watson2006-04-232-10/+18
* Introduce a new TCP mutex, isn_mtx, which protects the initial sequenceRobert Watson2006-04-222-6/+12
* Assert the inpcb lock when rehashing an inpcb.Robert Watson2006-04-221-0/+5
* Remove pcbinfo locking from in_setsockaddr() and in_setpeeraddr();Robert Watson2006-04-221-6/+4
* Allow for nmbclusters and maxsockets to be increased via sysctl.Paul Saab2006-04-218-0/+83
* Merge rev. 1.240 of ip_output.c, so that IPFIREWALL_FORWARD_EXTENDEDGleb Smirnoff2006-04-181-2/+6
* Modify tcp_timewait() to accept an inpcb reference, not a tcptwRobert Watson2006-04-092-22/+24
* Eliminate debug code that catches bugs in the hinting of sack variablesMohan Srinivasan2006-04-061-13/+3
* Don't unlock a timewait structure if the pointer is NULL inRobert Watson2006-04-052-2/+4
* Certain (bad) values of sack blocks can end up corrupting the sack scoreboard.Mohan Srinivasan2006-04-051-0/+2
* Add a tunable net.inet.tcp.maxtcptw, that allows to set a limitGleb Smirnoff2006-04-042-2/+16
* Before dereferencing intotw() when INP_TIMEWAIT, check for inp_ppcb beingRobert Watson2006-04-045-14/+62
* In TCP notify routines, check inpcb for INP_TIMEWAIT and INP_DROPPED.Robert Watson2006-04-032-132/+162
* Change inp_ppcb from caddr_t to void *, fix/remove associated relatedRobert Watson2006-04-036-21/+27
* Style tweaks: convert to ANSI from K&R function prototypes.Robert Watson2006-04-032-118/+52
* Update comment on tcp_close() for new world order.Robert Watson2006-04-032-8/+4
* Clarify comment on handling of non-timewait TCP states inRobert Watson2006-04-031-5/+7
* Fix up locking surrounding tcp_drop sysctl: in the new world order, weRobert Watson2006-04-032-16/+16
* After checking for SO_ISDISCONNECTED in tcp_usr_accept(), returnRobert Watson2006-04-031-5/+3
* Correct incorrect assertion in div_bind(): inp must not be NULL here.Robert Watson2006-04-031-1/+1
* During reformulation of tcp_usr_detach(), the call to initiate TCPRobert Watson2006-04-021-7/+18
* Properly handle an edge case previously not handled correctly: aRobert Watson2006-04-013-42/+79
* Update TCP for infrastructural changes to the socket/pcb refcount model,Robert Watson2006-04-017-273/+693
* Update in_pcb-derived basic socket types following changes toRobert Watson2006-04-013-129/+55
* Break out in_pcbdetach() into two functions:Robert Watson2006-04-012-18/+22
* Chance protocol switch method pru_detach() so that it returns voidRobert Watson2006-04-014-14/+8
* Change protocol switch pru_abort() API so that it returns void ratherRobert Watson2006-04-013-12/+19
* Define two new inpcb flags in the inp_vflag field, which for whateverRobert Watson2006-03-261-0/+2
* Minor style tweak: tab after #define, not space.Robert Watson2006-03-261-4/+4
* Explicitly assert socket pointer is non-NULL in tcp_input() so as toRobert Watson2006-03-263-14/+16
* o Introduce carp_multicast_cleanup(), which removes and freesGleb Smirnoff2006-03-212-85/+101
* Add descriptions for the sysctls:Giorgos Keramidas2006-03-201-4/+4
* Make net.inet.ip.portrange.reservedhigh andDavid Malone2006-03-191-0/+2
* Change soabort() from returning int to returning void, since allRobert Watson2006-03-161-1/+1
* Further refine the bridge hack in the arp code. Only do the special arpAndrew Thompson2006-03-071-2/+2
* - Do not leak read lock in IP_FW_TABLE_GETSIZE case of ipfw_ctl().Gleb Smirnoff2006-03-031-7/+5
* Rework TCP window scaling (RFC1323) to properly scale the send windowAndre Oppermann2006-02-284-40/+42
* This patch fixes the problem where the current TCP code can not handleQing Li2006-02-233-3/+4
* Obey opt_inet6.h in kernel build directory.Hajimu UMEMOTO2006-02-201-2/+0
* Remove unneeded includes and provide more accurate descriptionAndre Oppermann2006-02-183-6/+4
* Add missing TH_PUSH to the TH_FLAGS enumeration.Andre Oppermann2006-02-181-1/+1