parent
00ff29c097
commit
1c8f3c53e0
|
@ -20,7 +20,7 @@ public class TorTransProxy {
|
||||||
|
|
||||||
private final static String IPTABLES_ADD = " -A ";
|
private final static String IPTABLES_ADD = " -A ";
|
||||||
private final static String IPTABLES_DELETE = " -D ";
|
private final static String IPTABLES_DELETE = " -D ";
|
||||||
|
private final static String IPTABLES_DROP_ALL = " -j DROP ";
|
||||||
private static boolean hasRoot = false;
|
private static boolean hasRoot = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -58,6 +58,22 @@ public class TorTransProxy {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
public static int setIptablesDropAll() {
|
||||||
|
// iptables -A OUTPUT -j DROP
|
||||||
|
}
|
||||||
|
|
||||||
|
public static int setTransparentProxying() {
|
||||||
|
// Flush everything from iptables first
|
||||||
|
purgeNatIptables();
|
||||||
|
// Setup DNS redirection
|
||||||
|
setDNSProxying();
|
||||||
|
//
|
||||||
|
|
||||||
|
//
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
public static boolean purgeNatIptables() {
|
public static boolean purgeNatIptables() {
|
||||||
StringBuilder res = new StringBuilder();
|
StringBuilder res = new StringBuilder();
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in New Issue