Age | Commit message (Expand) | Author |
2017-05-29 | Per-interface list of addresses, both multicast and unicast, are | Martin Pieuchot |
2017-05-16 | Replace remaining splsoftassert(IPL_SOFTNET) by NET_ASSERT_LOCKED(). | Martin Pieuchot |
2017-05-04 | Introduce sstosa() for converting sockaddr_storage with a type safe | Alexander Bluhm |
2017-03-27 | Fix the prefixlen sent by RTM_NEWADDR on new addresses without masks: | Rafael Zalamena |
2017-02-16 | Revert "Release the NET_LOCK() before entering per-driver ioctl() routine". | Martin Pieuchot |
2017-02-07 | Release the NET_LOCK() before entering per-driver ioctl() routine. | Martin Pieuchot |
2016-12-20 | Remove duplicate in_ioctl() prototype, it is in in_var.h now. | Alexander Bluhm |
2016-12-19 | Remove a recursive splsoftnet() in in_ioctl() that already asserts that | Martin Pieuchot |
2016-12-19 | If rt_ifa_addlocal() in in_ifinit() fails, the address has been | Alexander Bluhm |
2016-12-05 | Remove recursive splsoftnet()s in ioctl(2) path. | Martin Pieuchot |
2016-09-04 | Purge routes attached to an address when this address is removed. | Martin Pieuchot |
2016-06-13 | Move the ioctl(2) logic of in{,6}_control() into two new functions | Martin Pieuchot |
2016-04-18 | Put a KERNEL_LOCK/UNLOCK dance around sections that still need some | Martin Pieuchot |
2016-01-21 | Introduce in{,6}_hasmulti(), two functions to check in the hot path if | Martin Pieuchot |
2015-12-03 | Get rid of rt_mask() and stop allocating a "struct sockaddr" for every | Martin Pieuchot |
2015-11-24 | No need for <net/if_types.h> | Martin Pieuchot |
2015-09-12 | Now that rtrequest1(9) properly sets RTF_UP for newly added route, | Martin Pieuchot |
2015-09-09 | gotta if_put after you if_get | David Gwynne |
2015-08-24 | In kernel initialize struct sockaddr_in and sockaddr_in6 to zero | Alexander Bluhm |
2015-07-08 | Use a new RTF_CONNECTED flag for interface (connected) routes. | Martin Pieuchot |
2015-07-06 | We're now creating a connected route for every configured address so | Martin Pieuchot |
2015-07-06 | No longer need to manually pass RTF_MPATH to rt_ifa_add(9). | Martin Pieuchot |
2015-05-26 | Store the IP address of the corresponding ifa in the rt_gateway field | Martin Pieuchot |
2015-05-15 | Allow multiple connected/interface routes to exist at the same time. | Claudio Jeker |
2015-01-12 | Kill the global list of IPv4 addresses. | Martin Pieuchot |
2015-01-05 | Explicitly check for a non NULL ifp in in_control(). Only MROUTING | Martin Pieuchot |
2014-12-19 | unifdef INET in net code as a precursor to removing the pretend option. | Ted Unangst |
2014-11-25 | Since in_broadcast() is now used to always iterate on all the interfaces | Martin Pieuchot |
2014-11-24 | Rename rt_ifa_addloop() into rt_ifa_addlocal() and make it return an | Martin Pieuchot |
2014-11-20 | sizes for simple free cases. sizeof(*) and one case where len is clear. | Ted Unangst |
2014-11-20 | funky spacing. | Martin Pieuchot |
2014-11-20 | Instead of playing hide-and-seek with the route to destination attached | Martin Pieuchot |
2014-11-05 | Did you ever wonder why loopback's ifas have a destination address? | Martin Pieuchot |
2014-10-07 | Do not protect the SIOCSIFADDR call by splnet(). Drivers already | Martin Pieuchot |
2014-10-02 | There is no point in trying to purge the default host route for | Martin Pieuchot |
2014-10-01 | Fix loopback related breakage introduced by the conversion of in_ouraddr() | Martin Pieuchot |
2014-09-03 | When a route to prefix (connected route) is added, if its associated | Martin Pieuchot |
2014-08-23 | Move splnet() in in_ifinit() to protect less code that does not | Alexander Bluhm |
2014-07-12 | add a size argument to free. will be used soon, but for now default to 0. | Ted Unangst |
2014-07-12 | Always create a local route for every configured IPv4 address on the | Martin Pieuchot |
2014-06-26 | Calling in{6,}_purgeaddr() is not enough to remove an address from | Martin Pieuchot |
2014-06-16 | Revert "Always create a local route for every configured IPv4 address", | Martin Pieuchot |
2014-06-11 | Always create a local route for every configured IPv4 address on the | Martin Pieuchot |
2014-04-25 | Kill in_localaddr(), one less usage of the global list of IPv4 addresses. | Martin Pieuchot |
2014-04-10 | Retire rtinit() an use rt_ifa_add(9) and rt_ifa_del(9) to manage | Martin Pieuchot |
2014-03-27 | Stop mixing interface address flags with routing entry ones. | Martin Pieuchot |
2014-03-21 | Split the magic to add a connected route for every new IPv4 address | Martin Pieuchot |
2014-03-14 | Add missing parens so 'if' statement controls both of the statements | Kenneth R Westerback |
2014-01-21 | Do not clean the multicast records of an interface when it is destroyed | Martin Pieuchot |
2013-12-31 | bcopy -> memcpy. reviewed with one fix from matthew | Ted Unangst |