Home | History | Annotate | Download | only in netd

Lines Matching refs:iface

55  * ndc idletimer add <iface> <timeout> <class label>
56 * ndc idletimer remove <iface> <timeout> <class label>
86 * Note that currently if the name of the iface is incorrect, iptables
173 int IdletimerController::modifyInterfaceIdletimer(IptOp op, const char *iface,
180 (op == IptOpAdd) ? 'A' : 'D', LOCAL_RAW_PREROUTING, iface, timeout, classLabel);
189 (op == IptOpAdd) ? 'A' : 'D', LOCAL_MANGLE_POSTROUTING, iface, timeout, classLabel);
196 int IdletimerController::addInterfaceIdletimer(const char *iface,
199 return modifyInterfaceIdletimer(IptOpAdd, iface, timeout, classLabel);
202 int IdletimerController::removeInterfaceIdletimer(const char *iface,
205 return modifyInterfaceIdletimer(IptOpDelete, iface, timeout, classLabel);