summaryrefslogtreecommitdiff
path: root/sys/netinet/udp_usrreq.c
Commit message (Expand)AuthorAgeFilesLines
* MFC: r183982Bjoern A. Zeeb2008-10-311-3/+2
* MFC: r183606, r183610Bjoern A. Zeeb2008-10-301-1/+1
* Test the soreceive_dgram tunable and set up the pr_usrreqs structureRobert Watson2008-10-101-8/+8
* Conditionalize setting udp6_usrreqs.pru_soreceive to soreceive_dgramRobert Watson2008-09-161-0/+2
* Merge r180198, r180211, r180365, r182682 from head to stable/7:Robert Watson2008-09-151-0/+14
* MFC r180836Alexander Motin2008-08-251-1/+1
* MFC: r181782, cvs 1.235 udp_usrreq.c, 1.102 ip6_input.c, 1.44 ip6_var.hBjoern A. Zeeb2008-08-181-1/+1
* Merge r178285, r178318, r178319, r178320, r178321, r178322, r178325,Robert Watson2008-08-181-73/+173
* MFC r179289, rev. 1.221 udp_usrreq.c, 1.98 ip6_input.c, 1.42 ip6_var.hBjoern A. Zeeb2008-07-301-8/+3
* Add FBSDID to all files in netinet so that people can moreMike Silbersack2007-10-071-1/+3
* Further UDPv4 cleanup:Robert Watson2007-09-101-17/+17
* Further cleanup of UDPv4:Robert Watson2007-07-101-98/+95
* Minor UDPv4 cleanup: capitalize comment, move statistics update after mbufRobert Watson2007-07-071-3/+3
* Commit the change from FAST_IPSEC to IPSEC. The FAST_IPSECGeorge V. Neville-Neil2007-07-031-3/+3
* Commit IPv6 support for FAST_IPSEC to the tree.George V. Neville-Neil2007-07-011-9/+3
* Make gcc4.2 happy and zero save_ip for the unlikely (blackhole != 0)Matt Jacob2007-06-171-0/+2
* Import rewrite of IPv4 socket multicast layer to support source-specificBruce M Simpson2007-06-121-50/+71
* Eliminate now-unused SUSER_ALLOWJAIL arguments to priv_check_cred(); inRobert Watson2007-06-121-2/+1
* When verifying the IPv4 UDP checksum, don't overwrite the checksumDavid Malone2007-05-161-5/+7
* Reduce network stack oddness: implement .pru_sockaddr and .pru_peeraddrRobert Watson2007-05-111-2/+2
* Since udp_peeraddr() and udp_sockaddr() directly wrap in_setpeeraddr()Robert Watson2007-05-071-25/+2
* Minor style tweaks.Robert Watson2007-05-071-17/+22
* Remove unused pcbinfo arguments to in_setsockaddr() andRobert Watson2007-05-011-2/+2
* Rename some fields of struct inpcbinfo to have the ipi_ prefix,Robert Watson2007-04-301-5/+6
* Fix IP_SENDSRCADDR semantics.Bruce M Simpson2007-03-081-4/+11
* Rename two identically named log_in_vain variables: tcp_input.c's staticRobert Watson2007-02-201-3/+3
* Gratuitous UDP restyling toward style(9) in 7.x.Robert Watson2007-02-201-142/+135
* o One more typo in the comment.Maxim Konovalov2007-01-061-1/+1
* Fix typo in comment.Warner Losh2007-01-011-1/+1
* Add comment about udp checksums being off in BSD 4.2 compatibility mode.Warner Losh2006-12-311-1/+8
* Some whitespace nits and remove a few casts.John Baldwin2006-12-291-1/+2
* Sweep kernel replacing suser(9) calls with priv(9) calls, assigningRobert Watson2006-11-061-1/+3
* Complete break-out of sys/sys/mac.h into sys/security/mac/mac_framework.hRobert Watson2006-10-221-1/+2
* Check inp_flags instead of inp_vflag for INP_ONESBCAST flag.Andre Oppermann2006-09-061-2/+2
* Fix typo in comment.Thomas Quinot2006-09-041-1/+1
* Change semantics of socket close and detach. Add a new protocol switchRobert Watson2006-07-211-4/+28
* Fix race conditions on enumerating pcb lists by moving the initializationStephan Uphoff2006-07-181-4/+14
* Acquire udbinfo lock after call to soreserve() rather than before, as itRobert Watson2006-06-031-4/+2
* o In udp|rip_disconnect() acquire a socket lock before the socketMaxim Konovalov2006-05-211-1/+3
* Modify UDP to use sosend_dgram() instead of sosend(). This allowsRobert Watson2006-05-061-0/+1
* Rename 'last' to 'inp' in udp_append(): the name 'last' is due toRobert Watson2006-04-251-15/+15
* Allow for nmbclusters and maxsockets to be increased via sysctl.Paul Saab2006-04-211-0/+10
* Update in_pcb-derived basic socket types following changes toRobert Watson2006-04-011-35/+16
* Chance protocol switch method pru_detach() so that it returns voidRobert Watson2006-04-011-4/+2
* Change protocol switch pru_abort() API so that it returns void ratherRobert Watson2006-04-011-3/+2
* Implement 'ipfw fwd laddr,port' feature for UDP. According to ipfw(8)Gleb Smirnoff2006-01-241-0/+20
* Remove dead code: 'opts' is not used in udp_append(), only in udp_input(),Robert Watson2006-01-141-3/+0
* Fix a bunch of SYSCTL_INT() that should have been SYSCTL_ULONG() toMaxime Henrion2005-12-141-2/+2
* Consolidate all IP Options handling functions into ip_options.[ch] andAndre Oppermann2005-11-181-0/+1
* o INP_ONESBCAST is inpcb.inp_vflag flag not inp_flags. The confusionMaxim Konovalov2005-10-121-2/+2