summaryrefslogtreecommitdiff
path: root/sys/netinet/in.c
AgeCommit message (Expand)Author
2020-10-08Pull up following revision(s) (requested by roy in ticket #1104):martin
2019-04-29rtsock: Route address message simplificationroy
2018-11-29Don't run DAD on link-up if it's explicitly disabledozaki-r
2018-11-29Introduce and use ip_dad_enabled() and ip6_dad_enabled() functionsozaki-r
2018-05-13Fix spello in a commentkhorben
2018-04-24Fix sys/netinet/in.c:r1.229 problem. I have missed FALLTHROUGH, sorry.knakahara
2018-04-20SIOCSIFDSTADDR uses struct ifreq instead of struct ifaddr or struct in_aliasreq.knakahara
2018-04-08Protect ip_dad_count with if NARP > 0 to fix compilationchristos
2018-04-06Make GARP work again when DAD is disabledozaki-r
2018-04-06Revert the previous two commits as per roy@'s requestozaki-r
2018-04-06Don't set IN_IFF_* flags to ia4_flags if DAD is disabledozaki-r
2018-04-06Simplify; clear then set flags to ia4_flags (NFCI)ozaki-r
2018-03-06Use pool(9) for llentry allocationsozaki-r
2018-03-06Fix memory leaks on arp -d and ndp -d for static entriesozaki-r
2018-03-06Fix reference leaks of llentryozaki-r
2018-03-06Add assertionsozaki-r
2018-02-24Avoid a deadlock between softnet_lock and IFNET_LOCKozaki-r
2018-02-14Remove IFF_STATICARP, we don't support this, and the code is useless in itsmaxv
2018-02-08Don't call lltable_purge_entries from in_if_down if ARP isn't enabledozaki-r
2018-01-19Suppress noisy debugging outputsozaki-r
2018-01-15Remove extra pserialize_perform from in_purgeaddrozaki-r
2018-01-10add ipsec(4) interface, which is used for route-based VPN.knakahara
2017-12-27Don't pass rwlock to callout_haltozaki-r
2017-12-25Fix wrong usage of psref_heldozaki-r
2017-12-15Ensure to call if_mcast_op with holding IFNET_LOCKozaki-r
2017-11-17Provide macros for softnet_lock and KERNEL_LOCK hiding NET_MPSAFE switchozaki-r
2017-11-10Fix a deadlock between a route update and lltableozaki-r
2017-11-10Remove redundant KASSERTMSGozaki-r
2017-08-10Add support IP_PKTINFO for sendmsg(2).ryo
2017-08-04Fix it's -> its in a comment.uwe
2017-06-22Purge ARP/NDP entries on an interface when the interface is downozaki-r
2017-06-22Fix in_lltable_match_prefixozaki-r
2017-06-01remove checks for failure after memory allocation calls that cannot fail:chs
2017-05-25Fix that a fresh in_ifaddr is unexpectedly freed before activating itozaki-r
2017-05-12replace in_fmtaddr() by IN_PRINT(), and delete function in_fmtaddr()ryo
2017-04-28Don't output debugging logs just if DIAGNOSTICozaki-r
2017-03-17Add the local route after finishing the configuration of the address.roy
2017-03-02Protect ia_allhosts by in_ifaddr_lockozaki-r
2017-01-23Replace some splnet with splsoftnetozaki-r
2017-01-16Make ip6_sprintf(), in_fmtaddr(), lla_snprintf() and icmp6_redirect_diag() mp...ryo
2017-01-02- You can't just call the pfil hook to remove an address before an addresschristos
2016-12-31In the case of SIOCDIFADDR, call pfil_run_addrhooks before release ia.ryo
2016-12-27Fix panic in pfil_run_hooks on bootupozaki-r
2016-12-26pserialize_perform() is required an additionally serialization. see pserializ...knakahara
2016-12-12Make the routing table and rtcaches MP-safeozaki-r
2016-12-08Add rtcache_unref to release points of rtentry stemming from rtcacheozaki-r
2016-12-06add API to manipulate ifa->ia_hash and ia_hash_pslist_entry, and fix ia_hash_...knakahara
2016-11-18We must use PSLIST_ENTRY_DESTROY after PSLIST_WRITER_REMOVE and waiting all r...knakahara
2016-10-18Don't hold global locks if NET_MPSAFE is enabledozaki-r
2016-10-01Default netmask to /32 for INET on POINTOPOINT links if not specified.roy