Removed: Proxy feature. It was not working since today almost every page uses HTTPS. Also Flash is limited in browsers.

This commit is contained in:
Jindra Petřík
2024-08-02 17:05:30 +02:00
parent a526fbe74a
commit 449f96942e
47 changed files with 6 additions and 5877 deletions

View File

@@ -1914,17 +1914,8 @@ public class CommandLineArgumentParser {
}
private static void parseProxy(Stack<String> args) {
int port = 55555;
String portStr = args.peek();
if (portStr != null && portStr.startsWith("-P")) {
args.pop();
try {
port = Integer.parseInt(portStr.substring(2));
} catch (NumberFormatException nex) {
System.err.println("Bad port number");
}
}
Main.startProxy(port);
System.err.println("Proxy functionalit was REMOVED");
System.exit(1);
}
private static List<String> parseSelectClass(Stack<String> args) {