aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet/in.c
Commit message (Expand)AuthorAgeFilesLines
* This fixes a bug in the way that the LLE timers for nd6Randall Stewart2015-02-091-2/+1
* Remove SYSCTL_VNET_* macros, and simply put CTLFLAG_VNET where needed.Gleb Smirnoff2014-11-071-1/+1
* Add a change missing in r271916.Hiroki Sato2014-09-211-2/+2
* Restore historical behavior of in_control, which, when no matching addressXin LI2014-08-221-4/+11
* Ensure that IP's added to CARP always use the CARP MACSteven Hartland2014-07-311-12/+11
* Only check error if one could have been generatedSteven Hartland2014-07-311-6/+8
* Garbage collect couple of unused fields from struct ifaddr:Gleb Smirnoff2014-07-291-1/+0
* Fix a panic when removing an IP address from an interface, if the same addressAlan Somers2014-04-291-3/+7
* Fix subnet and default routes on different FIBs on the same subnet.Alan Somers2014-04-241-3/+8
* Fix host and network routes for new interfaces when net.add_addr_allfibs=0Alan Somers2014-04-241-1/+1
* Add support for UDP-Lite protocol (RFC 3828) to IPv4 and IPv6 stacks.Kevin Lo2014-04-071-0/+1
* Correct ARP update handling when the routes for network interfaces areAlan Somers2014-03-261-2/+3
* Fix refcount leak on netinet ifa.Alexander V. Chernikov2014-01-161-4/+4
* Simplify inet alias handling code: if we're adding/removing alias whichAlexander V. Chernikov2014-01-101-43/+8
* Add IF_AFDATA_WLOCK_ASSERT() in case lla_lookup() is called withAndrey V. Elsukov2014-01-031-0/+1
* Fix couple of bugs from r257692 related to scan of address list onGleb Smirnoff2013-12-291-4/+8
* In r257692 I intentionally deleted code that handled P2P interfacesGleb Smirnoff2013-11-171-1/+3
* Remove never used ioctls that originate from KAME. The proofGleb Smirnoff2013-11-111-232/+0
* Provide compat layer for OSIOCAIFADDR.Gleb Smirnoff2013-11-061-4/+5
* Fix my braino in r257692. For SIOCG*ADDR we don't need exact match onGleb Smirnoff2013-11-061-9/+16
* Fix build on GCC.Nathan Whitehorn2013-11-061-1/+2
* Rewrite in_control(), so that it is comprehendable without getting mad.Gleb Smirnoff2013-11-051-447/+373
* Remove net.link.ether.inet.useloopback sysctl tunable. It was always on byGleb Smirnoff2013-11-051-1/+1
* Cleanup in_ifscrub(), which is just an entry to in_scrubprefix().Gleb Smirnoff2013-11-011-14/+4
* Include necessary headers that now are available due to pollutionGleb Smirnoff2013-10-281-0/+1
* Remove ifa_init() and provide ifa_alloc() that will allocate and setupGleb Smirnoff2013-10-151-10/+2
* Migrate structs arpstat, icmpstat, mrtstat, pimstat and udpstat to PCPUAndrey V. Elsukov2013-07-091-3/+0
* Plug static llentry leak (ipv4 & ipv6 were affected).Oleg Bulyzhin2013-04-211-2/+6
* Retire struct sockaddr_inarp.Gleb Smirnoff2013-01-311-7/+3
* Temporarily revert rev 244678. This is causing loopback problems withPeter Wemm2013-01-031-8/+3
* The SIOCSIFFLAGS ioctl handler runs if_up()/if_down() that notifyGleb Smirnoff2012-12-251-3/+8
* Minor style(9) changes:Gleb Smirnoff2012-12-241-1/+3
* Though I disagree, I conceed to jhb & Rui. NoteRandall Stewart2012-08-191-1/+1
* Ok jhb, lets move the ifa_free() down to the bottom toRandall Stewart2012-08-171-1/+1
* Its never a good idea to double free the sameRandall Stewart2012-08-161-1/+1
* Fix races between in_lltable_prefix_free(), lla_lookup(),Gleb Smirnoff2012-08-021-7/+9
* Some more whitespace cleanup.Gleb Smirnoff2012-08-011-4/+4
* Some style(9) and whitespace changes.Gleb Smirnoff2012-07-311-42/+35
* - Updated TOE support in the kernel.Navdeep Parhar2012-06-191-1/+1
* M_DONTWAIT is a flag from historical mbuf(9)Gleb Smirnoff2012-04-101-1/+1
* When using flowtable llentrys can outlive the interface with which they're as...Kip Macy2012-02-231-16/+15
* Add multi-FIB IPv6 support to the core network stack supplementingBjoern A. Zeeb2012-02-031-1/+1
* Drop support for SIOCSIFADDR, SIOCSIFNETMASK, SIOCSIFBRDADDR, SIOCSIFDSTADDRGleb Smirnoff2012-01-161-76/+6
* Convert all users of IF_ADDR_LOCK to use new locking macros that specifyJohn Baldwin2012-01-051-11/+11
* Use a helper variable to wrap a long line.John Baldwin2012-01-041-1/+2
* In the handling of the SIOC[DG]LIFADDR icotls in in_lifaddr_ioctl(), addJohn Baldwin2012-01-041-0/+6
* Fix the SIOC[DG]LIFADDR ioctls in in_lifaddr_ioctl() to work with IPv4John Baldwin2012-01-041-3/+3
* Provide ABI compatibility shim to enable configuring of addressesGleb Smirnoff2011-12-211-1/+17
* Since size of struct in_aliasreq has just been changed in r228571,Gleb Smirnoff2011-12-161-6/+0
* A major overhaul of the CARP implementation. The ip_carp.c was startedGleb Smirnoff2011-12-161-34/+29