2016-01-10 20:03:05 +11:00
|
|
|
'use strict';
|
|
|
|
|
2016-01-10 18:23:40 +11:00
|
|
|
const ipc=require('../../../node-ipc');
|
|
|
|
const process=require('process');
|
2016-01-10 18:28:00 +11:00
|
|
|
const dieAfter=30000;
|
2015-12-05 13:40:38 +11:00
|
|
|
|
2016-01-10 18:23:40 +11:00
|
|
|
//die after 60 seconds
|
|
|
|
setTimeout(
|
|
|
|
function killServerProcess(){
|
|
|
|
process.exit(0);
|
|
|
|
},
|
|
|
|
dieAfter
|
|
|
|
);
|
|
|
|
|
|
|
|
ipc.config.id = 'tcpClient';
|
2015-12-05 13:40:38 +11:00
|
|
|
ipc.config.retry= 600;
|
2016-01-10 18:23:40 +11:00
|
|
|
ipc.config.silent=true;
|
|
|
|
ipc.config.networkPort=8500;
|
2015-12-05 13:40:38 +11:00
|
|
|
|
|
|
|
|
2016-01-10 22:38:19 +11:00
|
|
|
ipc.connectToNet('tcpClient');
|
|
|
|
|
|
|
|
ipc.connectToNet('tcpClient2');
|