Port fixes.

This commit is contained in:
zaxar163 2019-01-03 13:07:33 +04:00
parent 48e57b3c45
commit cc28c56aac
No known key found for this signature in database
GPG key ID: CEE900027AE098E0
3 changed files with 8 additions and 5 deletions

View file

@ -545,7 +545,7 @@ private void generateConfigIfNotExists() throws IOException {
LogHelper.info("Creating LaunchServer config");
Config newConfig = new Config();
newConfig.mirrors = new String[]{"http://mirror.gravitlauncher.ml/"};
newConfig.updateMirror = "gravitlauncher.ml:57977";
newConfig.updateMirror = "gravitlauncher.ml:7245";
newConfig.criticalCallbacks = true;
newConfig.launch4j = new ExeConf();
newConfig.launch4j.copyright = "© GravitLauncher Team";

View file

@ -16,7 +16,8 @@ public final class UpdateManager extends TimerTask {
private final LaunchServer srv;
private final FCL cl;
public final Timer t;
private final URL updU;
private final String updUH;
private final int updUP;
private int lastNum = 0;
public interface Callback {
@ -30,7 +31,9 @@ public interface Callback {
this.cl = new FCL(srv);
t = new Timer("Updater", true);
if (srv.config.criticalCallbacks) t.schedule(this, 60000, 60000);
updU = new URL(srv.config.updateMirror);
String[] updU = lsrv.config.updateMirror.split(":");
updUH = updU[0];
updUP = Integer.parseInt(updU[1]);
checkVer();
}
@ -77,7 +80,7 @@ public void run() {
}
private Socket getSocket() throws IOException {
return new Socket(updU.getHost(), updU.getPort());
return new Socket(updUH, updUP);
}
private void checkVer() {

View file

@ -1,5 +1,5 @@
{
"port": 7420,
"port": 7245,
"authHandler": {
"type": "memory"
},