OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kIpTablesPath
(Results
1 - 2
of
2
) sorted by null
/system/firewalld/
iptables.cc
37
const char
kIpTablesPath
[] = "/system/bin/iptables";
41
const char
kIpTablesPath
[] = "/sbin/iptables";
230
if (!AddAcceptRule(
kIpTablesPath
, protocol, port, interface)) {
231
LOG(ERROR) << "Could not add ACCEPT rule using '" <<
kIpTablesPath
<< "'";
242
DeleteAcceptRule(
kIpTablesPath
, protocol, port, interface);
256
bool ip4_success = DeleteAcceptRule(
kIpTablesPath
, protocol, port,
308
apply_masquerade, {
kIpTablesPath
, kIp6TablesPath}, add);
317
return RunForAllArguments(apply_mark, {
kIpTablesPath
, kIp6TablesPath}, add);
423
<< " using '" <<
kIpTablesPath
<< "'";
iptables_unittest.cc
23
const char
kIpTablesPath
[] = "/system/bin/iptables";
26
const char
kIpTablesPath
[] = "/sbin/iptables";
52
EXPECT_CALL(*iptables, AddAcceptRule(
kIpTablesPath
, _, _, _))
56
EXPECT_CALL(*iptables, DeleteAcceptRule(
kIpTablesPath
, _, _, _))
Completed in 41 milliseconds