aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet
Commit message (Expand)AuthorAgeFilesLines
* Fix the source address selection for boundall socketsMichael Tuexen2011-05-142-44/+153
* Oops, fix order of sequence numbers in KASSERT()'s to catch negativeJohn Baldwin2011-05-142-2/+2
* Refactor TCP ISN increment logic. Instead of firing callout at 100Hz toAlexander Motin2011-05-091-32/+9
* Fix a locking issue showing up on Mac OS X when subscribing toMichael Tuexen2011-05-0812-81/+112
* Change the name of an internal structure, since the nameMichael Tuexen2011-05-061-2/+2
* Convert delay parameter back to ms when reporting to user.Andrey V. Elsukov2011-05-062-1/+2
* Implement Resource Pooling V2 and an MPTCP like congestionMichael Tuexen2011-05-044-30/+217
* Remove code with any effect.Michael Tuexen2011-05-033-8/+0
* Add a missing break. This bug was introduced in r221249.Michael Tuexen2011-05-031-0/+1
* Handle a rare edge case with nearly full TCP receive buffers. If a TCPJohn Baldwin2011-05-023-6/+22
* Some more cleanups related to an kernel without INET.Michael Tuexen2011-05-022-40/+96
* Fix a mismerge from p4 in that in_localaddr() is not available without INET.Bjoern A. Zeeb2011-04-301-1/+5
* Remove some leftover debug code.Michael Tuexen2011-04-301-2/+0
* Make the TCP code compile without INET. Sort #includes and add #ifdef INETs.Bjoern A. Zeeb2011-04-306-83/+264
* Improve compilation of SCTP code without INET support.Michael Tuexen2011-04-3010-1291/+2054
* Make the UDP code compile without INET. Expose udp_usrreq.c to IPv6 onlyBjoern A. Zeeb2011-04-301-9/+25
* Make the PCB code compile without INET support by adding #ifdef INETsBjoern A. Zeeb2011-04-301-4/+20
* TCP reuses t_rxtshift to determine the backoff timer used for both theJohn Baldwin2011-04-294-2/+9
* MfP4 CH=192029:Bjoern A. Zeeb2011-04-271-12/+17
* MfP4 CH=192004:Bjoern A. Zeeb2011-04-272-5/+5
* Make various (pseudo) interfaces compile without INET in the kernelBjoern A. Zeeb2011-04-271-7/+46
* Add the possibility to verify MD5 hash of incoming TCP packets.Attilio Rao2011-04-254-8/+179
* Be less strict on includes than in r220746. We need in.h for bothBjoern A. Zeeb2011-04-251-0/+5
* Use size_t for sopt_valsize.Gleb Smirnoff2011-04-211-1/+2
* MFp4 CH=191760:Bjoern A. Zeeb2011-04-201-8/+17
* MFp4 CH=191470:Bjoern A. Zeeb2011-04-204-20/+28
* MFp4 CH=191466:Bjoern A. Zeeb2011-04-202-2/+1
* - Rewrite functions that copyin/out NAT configuration, so that theyGleb Smirnoff2011-04-193-55/+74
* Add sysctl handlers for net.inet.ip.dummynet.hash_size, .pipe_byte_limitAndrey V. Elsukov2011-04-191-8/+52
* ipdn_bound_var() functions is designed to bound a variable betweenAndrey V. Elsukov2011-04-191-1/+5
* Use M_WAITOK instead M_WAIT for malloc. Remove unneded checks.Andrey V. Elsukov2011-04-191-7/+1
* LibAliasInit() should allocate memory with M_WAITOK flag. Modify itGleb Smirnoff2011-04-182-14/+12
* Pullup up to TCP header length before matching against 'tcpopts'.Gleb Smirnoff2011-04-181-2/+5
* When checking to see if a window update should be sent to the remote peer,John Baldwin2011-04-181-0/+8
* Make in_proto.c dependent on either inet or inet6.Bjoern A. Zeeb2011-04-171-0/+9
* Refactor udp_input(), moving calls to u_tun_func() into udp_append().Edward Tomasz Napierala2011-04-141-45/+17
* The mbuf_frag_size always was and is file local and not queried from baseBjoern A. Zeeb2011-04-141-1/+1
* Staticize malloc types.Sergey Kandaurov2011-04-135-16/+9
* Restore previous behaviour - always match rule when we doing tagging,Andrey V. Elsukov2011-04-121-4/+7
* Use the full and proper company name for Swinburne University of TechnologyLawrence Stewart2011-04-1214-85/+89
* Port of the LRO fix from mxge driver to the genericJack F Vogel2011-04-071-2/+4
* Fill up src_port and dst_port variables for SCTP over IPv4.Andrey V. Elsukov2011-03-311-0/+6
* Fix malloc types.Andrey V. Elsukov2011-03-311-2/+2
* Fix a memory leak. Memory that is allocated for schedulers hash tableAndrey V. Elsukov2011-03-311-2/+3
* Clamp the initial advertised receive window when responding to a SYN/ACKJohn Baldwin2011-03-301-1/+2
* Covers values if (BYTES_THIS_ACK(tp, th) / tp->t_maxseg) value is fromWeongyo Jeong2011-03-281-1/+1
* Reference ifaddr object before unlocking as it can be freedSergey Kandaurov2011-03-211-2/+3
* - Merge changes to the base system to support OFED. These includeJeff Roberson2011-03-211-1/+2
* Properly check for an IPv4 socket after r219579.Bjoern A. Zeeb2011-03-191-2/+2
* Merge the two identical implementations for local port selections fromBjoern A. Zeeb2011-03-122-67/+125