Lines Matching refs:iface
63 const char *iface = evt->findParam("INTERFACE"); in onEvent() local
66 notifyInterfaceAdded(iface); in onEvent()
68 notifyInterfaceRemoved(iface); in onEvent()
73 notifyInterfaceLinkChanged(iface, true); in onEvent()
75 notifyInterfaceLinkChanged(iface, false); in onEvent()
81 if (action == NetlinkEvent::Action::kAddressRemoved && iface && address) { in onEvent()
100 if (iface && iface[0] && address && flags && scope) { in onEvent()
101 notifyAddressChanged(action, address, iface, flags, scope); in onEvent()
107 notifyInterfaceDnsServers(iface, lifetime, servers); in onEvent()
113 const char *iface = evt->findParam("INTERFACE"); in onEvent() local
114 if (route && (gateway || iface)) { in onEvent()
115 notifyRouteChange(action, route, gateway, iface); in onEvent()
121 const char *iface = evt->findParam("INTERFACE"); in onEvent() local
122 notifyQuotaLimitReached(alertName, iface); in onEvent()
177 void NetlinkHandler::notifyQuotaLimitReached(const char *name, const char *iface) { in notifyQuotaLimitReached() argument
178 notify(ResponseCode::BandwidthControl, "limit alert %s %s", name, iface); in notifyQuotaLimitReached()
197 const char *iface, const char *flags, in notifyAddressChanged() argument
202 addr, iface, flags, scope); in notifyAddressChanged()
205 void NetlinkHandler::notifyInterfaceDnsServers(const char *iface, in notifyInterfaceDnsServers() argument
209 iface, lifetime, servers); in notifyInterfaceDnsServers()
213 const char *gateway, const char *iface) { in notifyRouteChange() argument
220 *iface ? " dev " : "", in notifyRouteChange()
221 iface); in notifyRouteChange()