mirror of
https://github.com/developersu/ns-usbloader.git
synced 2025-05-14 15:15:05 -04:00
Fix "Don't serve requests" option, update version number, fix typo
This commit is contained in:
parent
adabfbe860
commit
22b18710a5
4 changed files with 8 additions and 3 deletions
|
@ -189,6 +189,10 @@ public class NetworkSetupValidator {
|
|||
private void parsePort(String hostPortNum) throws Exception{
|
||||
try {
|
||||
this.hostPort = Integer.parseInt(hostPortNum);
|
||||
|
||||
if (doNotServe)
|
||||
return;
|
||||
|
||||
serverSocket = new ServerSocket(hostPort);
|
||||
logPrinter.print("NET: Using defined port number: " + hostPort, EMsgType.PASS);
|
||||
}
|
||||
|
|
|
@ -32,7 +32,7 @@ import java.util.ResourceBundle;
|
|||
|
||||
public class NSLMain extends Application {
|
||||
|
||||
public static final String appVersion = "v4.3";
|
||||
public static final String appVersion = "v4.4";
|
||||
public static boolean isCli;
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue