aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet6/udp6_usrreq.c
Commit message (Expand)AuthorAgeFilesLines
* Fix L2 caching for UDP over IPv6Mike Karels2016-08-241-1/+1
* Disable L2 caching for UDP over IPv6Mike Karels2016-08-201-1/+1
* Cleanup unneded include "opt_ipfw.h".Andrey V. Elsukov2016-06-091-1/+0
* Use correct order of source and destination address and port.Michael Tuexen2016-04-291-3/+3
* Complete the UDP tunneling of ICMP msgs to those protocolsRandall Stewart2016-04-281-0/+23
* sys/net* : for pointers replace 0 with NULL.Pedro F. Giffuni2016-04-151-2/+2
* FreeBSD previously provided route caching for TCP (and UDP). Re-addGeorge V. Neville-Neil2016-03-241-2/+2
* Split in6_selectsrc() into in6_selectsrc_addr() and in6_selectsrc_socket().Alexander V. Chernikov2016-01-101-8/+2
* Remove 'struct route_int6' argument from in6_selectsrc() andAlexander V. Chernikov2016-01-031-1/+1
* Compare mbuf pointer to NULL rather than to 0.Bjoern A. Zeeb2015-09-211-1/+1
* In the UDP over IPv6 implementation several cases are using the wrong protocol,Bjoern A. Zeeb2015-09-211-12/+26
* remove a left-over after r220463 empty #ifdef INET check.Bjoern A. Zeeb2015-08-281-2/+0
* get_inpcbinfo() and get_pcblist() are UDP local functions andBjoern A. Zeeb2015-08-271-10/+10
* Call the new RSS hash calculation function to correctly calculate a hashAdrian Chadd2015-08-251-10/+27
* Fix inverted logic bug that David Wolfskill found (thanks David!)Randall Stewart2015-07-221-1/+1
* When a tunneling protocol is being used with UDP we must release theRandall Stewart2015-07-211-9/+15
* Refactor / restructure the RSS code into generic, IPv4 and IPv6 specificAdrian Chadd2015-01-181-1/+2
* Migrate the RSS IPv6 hash code to use pointers to the v6 addressesAdrian Chadd2014-12-311-1/+1
* Do not count security policy violation twice.Andrey V. Elsukov2014-12-111-1/+0
* Start process of removing the use of the deprecated "M_FLOWID" flagHans Petter Selasky2014-12-011-1/+0
* Renove faith(4) and faithd(8) from base. It looks like industryAlexander V. Chernikov2014-11-091-6/+0
* Add context pointer and source address to the UDP tunnel callbackBryan Venteicher2014-10-101-1/+2
* Add missing UDP multicast receive dtrace probesBryan Venteicher2014-10-091-0/+2
* Move the calls to u_tun_func() into udp6_append()Bryan Venteicher2014-10-091-32/+12
* Fix a bug introduced inMichael Tuexen2014-10-071-1/+1
* UPD and UDPLite require a checksum. So check for it.Michael Tuexen2014-10-031-0/+8
* Check for UDP/IPv6 packets that the length in the UDP header is at leastMichael Tuexen2014-10-021-12/+3
* Fix the checksum computation for UDPLite/IPv6. This requires theMichael Tuexen2014-10-021-5/+10
* The default for UDPLITE_RECV_CSCOV is zero. RFC 3828 recommendMichael Tuexen2014-10-011-2/+2
* If the checksum coverage field in the UDPLITE header is the lengthMichael Tuexen2014-09-301-2/+3
* When plen != ulen, it should only be checked when this is UDP.Kevin Lo2014-09-301-1/+1
* Add basic RSS awareness for the UDPv6 send path.Adrian Chadd2014-09-091-0/+24
* Add support for UDP-Lite protocol (RFC 3828) to IPv4 and IPv6 stacks.Kevin Lo2014-04-071-44/+124
* - For kernel compiled only with KDTRACE_HOOKS and not any lock debuggingAttilio Rao2013-11-251-1/+0
* The r48589 promised to remove implicit inclusion of if_var.h soon. PrepareGleb Smirnoff2013-10-261-0/+1
* Implement the ip, tcp, and udp DTrace providers. The probe definitions useMark Johnston2013-08-251-2/+6
* Remove the large part of struct ipsecstat. Only few fields of thisAndrey V. Elsukov2013-07-231-1/+1
* Use IPSECSTAT_INC() and IPSEC6STAT_INC() macros for ipsec statisticsAndrey V. Elsukov2013-06-201-1/+1
* Mechanically substitute flags from historic mbuf allocator withGleb Smirnoff2012-12-051-1/+1
* Remove the recently added sysctl variable net.pfil.forward.Andrey V. Elsukov2012-11-021-2/+2
* Remove the IPFIREWALL_FORWARD kernel option and make possible to turnAndrey V. Elsukov2012-10-251-6/+4
* Mechanically remove the last stray remains of spl* calls from net*/*.Andre Oppermann2012-10-181-2/+0
* It turns out that too many drivers are not only parsing the L2/3/4Bjoern A. Zeeb2012-05-281-2/+2
* MFp4 bz_ipv6_fast:Bjoern A. Zeeb2012-05-251-5/+16
* Add support for IPv6 to ipfw fwd:Bjoern A. Zeeb2011-08-201-3/+41
* Add _mbuf() variants of various inpcb-related interfaces, including lookup,Robert Watson2011-06-041-2/+2
* Decompose the current single inpcbinfo lock into two locks:Robert Watson2011-05-301-34/+44
* Make the UDP code compile without INET. Expose udp_usrreq.c to IPv6 onlyBjoern A. Zeeb2011-04-301-0/+6
* Remove a check in udp6_send() that prevented v4-mapped v6 addresses fromBjoern A. Zeeb2011-04-091-13/+0
* After r219579 and r219779 unbreak v4-mapped v6 sockets for UDPBjoern A. Zeeb2011-04-091-13/+11