HomeSort by relevance Sort by last modified time
    Searched refs:execIptables (Results 1 - 6 of 6) sorted by null

  /system/netd/server/
StrictController.cpp 59 res |= execIptables(V4V6, "-N", LOCAL_PENALTY_LOG, NULL);
60 res |= execIptables(V4V6, "-A", LOCAL_PENALTY_LOG,
62 res |= execIptables(V4V6, "-A", LOCAL_PENALTY_LOG,
66 res |= execIptables(V4V6, "-N", LOCAL_PENALTY_REJECT, NULL);
67 res |= execIptables(V4V6, "-A", LOCAL_PENALTY_REJECT,
69 res |= execIptables(V4V6, "-A", LOCAL_PENALTY_REJECT,
71 res |= execIptables(V4V6, "-A", LOCAL_PENALTY_REJECT,
76 res |= execIptables(V4V6, "-N", LOCAL_CLEAR_DETECT, NULL);
77 res |= execIptables(V4V6, "-N", LOCAL_CLEAR_CAUGHT, NULL);
80 res |= execIptables(V4V6, "-A", LOCAL_CLEAR_DETECT
    [all...]
FirewallController.cpp 77 res |= execIptables(V4V6, "-A", LOCAL_INPUT, "-j", "DROP", NULL);
78 res |= execIptables(V4V6, "-A", LOCAL_OUTPUT, "-j", "REJECT", NULL);
79 res |= execIptables(V4V6, "-A", LOCAL_FORWARD, "-j", "REJECT", NULL);
94 res |= execIptables(V4V6, "-F", LOCAL_INPUT, NULL);
95 res |= execIptables(V4V6, "-F", LOCAL_OUTPUT, NULL);
96 res |= execIptables(V4V6, "-F", LOCAL_FORWARD, NULL);
149 res |= execIptables(V4V6, op, LOCAL_INPUT, "-i", iface, "-j", "RETURN", NULL);
150 res |= execIptables(V4V6, op, LOCAL_OUTPUT, "-o", iface, "-j", "RETURN", NULL);
173 res |= execIptables(target, op, LOCAL_INPUT, "-d", addr, "-j", "RETURN", NULL);
174 res |= execIptables(target, op, LOCAL_OUTPUT, "-s", addr, "-j", "RETURN", NULL)
    [all...]
NetdConstants.cpp 71 static int execIptables(IptablesTarget target, bool silent, va_list args) {
104 int execIptables(IptablesTarget target, ...) {
107 int res = execIptables(target, false, args);
115 int res = execIptables(target, true, args);
NetdConstants.h 36 int execIptables(IptablesTarget target, ...);
CommandListener.cpp 167 execIptables(target, "-t", table, "-N", *childChain, NULL);
168 execIptables(target, "-t", table, "-A", parentChain, "-j", *childChain, NULL);
    [all...]
RouteController.cpp 451 if (execIptables(V4V6, "-t", "mangle", add ? "-A" : "-D", "INPUT", "-i", interface, "-j",
    [all...]

Completed in 2106 milliseconds