Home | History | Annotate | Download | only in server

Lines Matching refs:iface

63         const char *iface = evt->findParam("INTERFACE");
66 notifyInterfaceAdded(iface);
68 notifyInterfaceRemoved(iface);
73 notifyInterfaceLinkChanged(iface, true);
75 notifyInterfaceLinkChanged(iface, false);
81 if (action == NetlinkEvent::Action::kAddressRemoved && iface && address) {
82 // Note: if this interface was deleted, iface is "" and we don't notify.
100 if (iface && iface[0] && address && flags && scope) {
101 notifyAddressChanged(action, address, iface, flags, scope);
107 notifyInterfaceDnsServers(iface, lifetime, servers);
113 const char *iface = evt->findParam("INTERFACE");
114 if (route && (gateway || iface)) {
115 notifyRouteChange(action, route, gateway, iface);
121 const char *iface = evt->findParam("INTERFACE");
122 notifyQuotaLimitReached(alertName, iface);
160 notify(ResponseCode::InterfaceChange, "Iface added %s", name);
164 notify(ResponseCode::InterfaceChange, "Iface removed %s", name);
169 "Iface changed %s %s", name, (isUp ? "up" : "down"));
174 "Iface linkstate %s %s", name, (isUp ? "up" : "down"));
177 void NetlinkHandler::notifyQuotaLimitReached(const char *name, const char *iface) {
178 notify(ResponseCode::BandwidthControl, "limit alert %s %s", name, iface);
197 const char *iface, const char *flags,
202 addr, iface, flags, scope);
205 void NetlinkHandler::notifyInterfaceDnsServers(const char *iface,
209 iface, lifetime, servers);
213 const char *gateway, const char *iface) {
220 *iface ? " dev " : "",
221 iface);