aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet/udp_usrreq.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Implement IP_DONTFRAG IP socket option enabling the Don't FragmentAndre Oppermann2005-09-261-0/+9
* Add socketoption IP_MINTTL. May be used to set the minimum acceptableAndre Oppermann2005-08-221-0/+3
* De-spl UDP.Robert Watson2005-06-011-31/+5
* If we are going toColin Percival2005-05-061-0/+1
* eliminate extraneous null ptr checksSam Leffler2005-03-291-2/+2
* In in_pcbconnect_setup() jailed sockets are treated specially: if localGleb Smirnoff2005-02-221-0/+5
* /* -> /*- for license, minor formatting changesWarner Losh2005-01-071-1/+1
* Initialize struct pr_userreqs in new/sparse style and fill in commonPoul-Henning Kamp2004-11-081-5/+12
* Hide udp_in6 behind #ifdef INET6Poul-Henning Kamp2004-11-041-0/+2
* Until this change, the UDP input code used global variables udp_in,Robert Watson2004-11-041-57/+24
* Don't release the udbinfo lock until after the last use of UDP inpcbRobert Watson2004-10-121-3/+3
* fix up socket/ip layer violation... don't assume/know thatJohn-Mark Gurney2004-09-051-1/+5
* When sliding the m_data pointer forward, update m_pktrhdr.len as wellRobert Watson2004-08-221-1/+3
* When prepending space onto outgoing UDP datagram payloads to hold theRobert Watson2004-08-211-4/+7
* Push down pcbinfo and inpcb locking from udp_send() into udp_output().Robert Watson2004-08-191-25/+35
* White space cleanup for netinet before branch:Robert Watson2004-08-161-12/+12
* When udp_send() fails, make sure to free the control mbufs as well asRobert Watson2004-08-121-0/+2
* Backout removal of UMA_ZONE_NOFREE flag for all zones which are establishedAndre Oppermann2004-08-111-1/+1
* Remove the UMA_ZONE_NOFREE flag to all uma_zcreate() calls in the IP andAndre Oppermann2004-08-111-1/+1
* When iterating the UDP inpcb list processing an inbound broadcastRobert Watson2004-08-061-10/+9
* Rename suser_cred()'s PRISON_ROOT flag to SUSER_ALLOWJAIL. This isColin Percival2004-07-261-1/+1
* Reduce the number of unnecessary unlock-relocks on socket buffer mutexesRobert Watson2004-06-261-2/+7
* Reverse a patch which has no effect on -CURRENT and should probably beBruce M Simpson2004-06-161-7/+1
* Disconnect a temporarily-connected UDP socket in out-of-mbufs case. ThisBruce M Simpson2004-06-161-1/+7