mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-01 10:55:12 +00:00
JPProxy update
This commit is contained in:
30
trunk/libsrc/jpproxy/src/com/jpexs/proxy/ProxyConfig.java
Normal file
30
trunk/libsrc/jpproxy/src/com/jpexs/proxy/ProxyConfig.java
Normal file
@@ -0,0 +1,30 @@
|
||||
package com.jpexs.proxy;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author JPEXS
|
||||
*/
|
||||
public class ProxyConfig {
|
||||
|
||||
public static boolean dontLogFilters=false;
|
||||
public static long maxLogFileSize=1024*5;
|
||||
public static int maxLogFileHistory=500;
|
||||
|
||||
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 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;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user