OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IPTABLES_PATH
(Results
1 - 6
of
6
) sorted by null
/system/netd/
NetdConstants.cpp
20
const char * const
IPTABLES_PATH
= "/system/bin/iptables";
NetdConstants.h
21
extern const char * const
IPTABLES_PATH
;
NatController.cpp
64
if (runCmd(
IPTABLES_PATH
, "-P INPUT ACCEPT"))
66
if (runCmd(
IPTABLES_PATH
, "-P OUTPUT ACCEPT"))
68
if (runCmd(
IPTABLES_PATH
, "-P FORWARD ACCEPT"))
76
runCmd(
IPTABLES_PATH
, "-D FORWARD -j natctrl_FORWARD");
77
runCmd(
IPTABLES_PATH
, "-F natctrl_FORWARD");
78
runCmd(
IPTABLES_PATH
, "-N natctrl_FORWARD");
79
if (runCmd(
IPTABLES_PATH
, "-A FORWARD -j natctrl_FORWARD"))
82
runCmd(
IPTABLES_PATH
, "-t nat -D POSTROUTING -j natctrl_nat_POSTROUTING");
83
runCmd(
IPTABLES_PATH
, "-t nat -F natctrl_nat_POSTROUTING");
84
runCmd(
IPTABLES_PATH
, "-t nat -N natctrl_nat_POSTROUTING")
[
all
...]
oem_iptables_hook.cpp
42
asprintf(&buffer, "%s %s",
IPTABLES_PATH
, cmd);
IdletimerController.cpp
109
asprintf(&buffer, "%s %s",
IPTABLES_PATH
, cmd);
BandwidthController.cpp
215
fullCmd.insert(0, iptVer == IptIpV4 ?
IPTABLES_PATH
: IP6TABLES_PATH);
[
all
...]
Completed in 130 milliseconds