Skip to content
Snippets Groups Projects
Commit cd6e14fc authored by mcmlxxix's avatar mcmlxxix
Browse files

client will now read the [CommServ] "Port=#" line from services.ini

so that a different port can be used for the service without having to change it within the client script
parent 4ea06454
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,7 @@ load("synchronet-json.js");
load("sbbsdefs.js");
load("sockdefs.js");
function ServiceConnection(id,alias)
{
const QUERY= "?";
......@@ -19,8 +20,11 @@ function ServiceConnection(id,alias)
const CONNECTION_INTERVAL= 5;
const MAX_BUFFER= 512;
var services=new File(system.ctrl_dir + "services.ini");
services.open('r',true);
const hub= "localhost";
const port= 10088;
const port= services.iniGetValue("CommServ","Port");
services.close();
this.id= (id?id:"default");
this.queue= [];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment