mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-23 14:45:28 +00:00
format proxy code, allow to change swf on the fly
This commit is contained in:
@@ -9,35 +9,35 @@ import java.util.List;
|
||||
*/
|
||||
public class ProxyConfig {
|
||||
|
||||
public static boolean dontLogFilters=false;
|
||||
public static boolean dontLogFilters = false;
|
||||
|
||||
public static String appVersion="1.1";
|
||||
public static String appName="JPProxy";
|
||||
public static int port=55555;
|
||||
public static String bindAddress;
|
||||
public static String appVersion = "1.1";
|
||||
public static String appName = "JPProxy";
|
||||
public static int port = 55555;
|
||||
public static String bindAddress;
|
||||
|
||||
public static int readTimeout=50000;
|
||||
public static boolean proxyKeepAlive=false;
|
||||
public static boolean dontUncompress=false;
|
||||
public static int readTimeout = 50000;
|
||||
public static boolean proxyKeepAlive = false;
|
||||
public static boolean dontUncompress = false;
|
||||
|
||||
public static final int HTTPS_PASSTHRU=0;
|
||||
public static final int HTTPS_FILTER=1;
|
||||
public static final int HTTPS_FILTERLIST=2;
|
||||
public static final int HTTPS_PASSTHRU = 0;
|
||||
public static final int HTTPS_FILTER = 1;
|
||||
public static final int HTTPS_FILTERLIST = 2;
|
||||
|
||||
public static int httpsMode=HTTPS_PASSTHRU;
|
||||
public static int httpsMode = HTTPS_PASSTHRU;
|
||||
|
||||
public static List<String> enabledHttpsServers=new ArrayList<String>();
|
||||
public static List<String> enabledHttpsServers = new ArrayList<String>();
|
||||
|
||||
public static boolean useHTTPSProxy=false;
|
||||
public static String httpsProxyHost="";
|
||||
public static int httpsProxyPort=0;
|
||||
public static boolean useHTTPSProxy = false;
|
||||
public static String httpsProxyHost = "";
|
||||
public static int httpsProxyPort = 0;
|
||||
|
||||
public static boolean useHTTPProxy=false;
|
||||
public static String httpProxyHost="";
|
||||
public static int httpProxyPort=0;
|
||||
public static boolean useHTTPProxy = false;
|
||||
public static String httpProxyHost = "";
|
||||
public static int httpProxyPort = 0;
|
||||
|
||||
public static String httpsKeyStoreFile=null;
|
||||
public static String httpsKeyStorePass=null;
|
||||
public static String httpsKeyPass=null;
|
||||
public static String httpsKeyStoreFile = null;
|
||||
public static String httpsKeyStorePass = null;
|
||||
public static String httpsKeyPass = null;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user