aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet
Commit message (Expand)AuthorAgeFilesLines
* o Fix ipfw uid rules: socheckuid() returns 0 when uid matches a socketMaxim Konovalov2003-02-171-2/+2
* Take advantage of pre-existing lock-free synchronization and type stable memoryJeffrey Hsu2003-02-153-11/+10
* The protocol lock is always held in the dropafterack case, so we don'tJeffrey Hsu2003-02-132-4/+4
* in_pcbnotifyall() requires an exclusive protocol lock for notify functionsJeffrey Hsu2003-02-121-7/+7
* Properly document that syncache timer processing requires anJeffrey Hsu2003-02-121-3/+3
* s/IPSSEC/IPSEC/Seigo Tanimura2003-02-111-1/+1
* Get cosmetic changes out of the way before I add routing table SMP locks.Jeffrey Hsu2003-02-101-56/+47
* Avoid multiply for preemptive arp calculation since it hits everyOrion Hodson2003-02-081-6/+7
* MFS 1.64.2.22: Re-enable non pre-emptive ARP requests.Orion Hodson2003-02-041-14/+15
* Add the TCP flags to the log message whenever log_in_vain is 1, notCrist J. Clark2003-02-022-16/+6
* Move a comment and optimize the frag timeout code a slight bit.Mike Silbersack2003-02-011-3/+3
* FAST_IPSEC bandaid: act like KAME and ignore ENOENT error codes fromSam Leffler2003-01-301-0/+9
* remove the restriction on build a kernel with FAST_IPSEC and INET6;Sam Leffler2003-01-301-3/+0
* Fix a bug with syncookies; previously, the syncache's MSS size was notMike Silbersack2003-01-291-2/+2
* Check bounds for index before dereferencing memory past end of array.Poul-Henning Kamp2003-01-281-1/+1
* Avoid lock order reversal by expanding the scope of theJeffrey Hsu2003-01-281-15/+5
* A few fixes to rev 1.221Mike Silbersack2003-01-281-9/+17
* Merge the best parts of maxfragpackets and maxnipq together. (BothMike Silbersack2003-01-261-13/+5
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.Alfred Perlstein2003-01-2119-43/+43
* De-anonymity a couple of messages I missed in a previous sweep.Maxim Konovalov2003-01-201-2/+2
* If the first action is O_LOG adjust a pointer to the real one, unbreaksMaxim Konovalov2003-01-201-0/+2
* Optimize away call to bzero() in the common case by directly checkingJeffrey Hsu2003-01-181-6/+3
* Fix long-standing bug predating FreeBSD where calling connect() twiceJeffrey Hsu2003-01-181-1/+3
* SMP locking for ARP.Jeffrey Hsu2003-01-171-6/+21
* Introduce the ability to flag a sysctl for operation at secure level 2 or 3Matthew Dillon2003-01-141-3/+3
* Fix NewReno.Jeffrey Hsu2003-01-135-89/+94
* Clear the target hardware address field when generating an ARP request.Thomas Moestl2003-01-101-0/+1
* Validate inp before de-referencing it.Jeffrey Hsu2003-01-051-1/+1
* Correct typos, mostly s/ a / an / where appropriate. Some whitespace cleanup,Jens Schweikhardt2003-01-015-5/+5
* Correct mbuf packet header propagation. Previously, packet headersSam Leffler2002-12-301-1/+10
* Remove the PAWS ack-on-ack debugging printf().Matthew Dillon2002-12-302-10/+4
* correct style bogonsSam Leffler2002-12-301-4/+2
* Bridged packets are supplied to the firewall with their IP headerIan Dowse2002-12-272-3/+14
* Validate inp to prevent an use after free.Jeffrey Hsu2002-12-243-2/+29
* o De-anonymity dummynet(4) and ipfw(4) messages, prepend themMaxim Konovalov2002-12-242-45/+47
* SMP locking for radix nodes.Jeffrey Hsu2002-12-241-0/+8
* Remove forgotten INP_UNLOCK(inp) in my previous commit.Pierre Beyssac2002-12-221-1/+0
* In syncache_timer(), don't attempt to lock the inpcb structurePierre Beyssac2002-12-211-2/+0
* replace the special-purpose rate-limiting code with the general facilitySam Leffler2002-12-211-38/+28
* Eliminate a goto.Jeffrey Hsu2002-12-201-37/+34
* Unravel a nested conditional.Jeffrey Hsu2002-12-202-42/+24
* Expand scope of TCP protocol lock to cover syncache data structures.Jeffrey Hsu2002-12-201-2/+3
* o Untangle the confusion with the malloc flags {M_WAITOK, M_NOWAIT} andBosko Milekic2002-12-192-3/+3
* Lock up ifaddr reference counts.Jeffrey Hsu2002-12-181-3/+5
* Remove unused and incorrectly maintained variable "in_interfaces"Poul-Henning Kamp2002-12-171-4/+0
* Fix syntax in last commit.Matthew Dillon2002-12-172-6/+6
* o Trim EOL whitespaces.Maxim Konovalov2002-12-152-24/+24
* o s/if_name[16]/if_name[IFNAMSIZ]/Maxim Konovalov2002-12-151-1/+1
* o M_DONTWAIT is mbuf(9) flag: malloc(M_DONTWAIT) -> malloc(M_NOWAIT).Maxim Konovalov2002-12-151-7/+7
* o Fix byte order logging issue: sa.sin_port is already in host byte order.Maxim Konovalov2002-12-151-1/+1