2016-03-23 18:07:37 +11:00
|
|
|
const ipc=require('../../../node-ipc');
|
2015-09-28 14:52:16 +10:00
|
|
|
|
|
|
|
/***************************************\
|
|
|
|
*
|
|
|
|
* You should start both hello and world
|
|
|
|
* then you will see them communicating.
|
|
|
|
*
|
|
|
|
* *************************************/
|
|
|
|
|
2016-01-10 23:18:14 +11:00
|
|
|
ipc.config.id = 'world';
|
2015-09-28 14:52:16 +10:00
|
|
|
ipc.config.retry= 1500;
|
|
|
|
ipc.config.networkHost='localhost';
|
|
|
|
ipc.config.tls={
|
2016-01-04 20:45:28 +11:00
|
|
|
public: __dirname+'/../../../local-node-ipc-certs/server.pub',
|
|
|
|
private: __dirname+'/../../../local-node-ipc-certs/private/server.key',
|
|
|
|
dhparam: __dirname+'/../../../local-node-ipc-certs/private/dhparam.pem',
|
2015-09-28 14:52:16 +10:00
|
|
|
requestCert: true,
|
|
|
|
rejectUnauthorized:true,
|
|
|
|
trustedConnections: [
|
2016-01-04 20:45:28 +11:00
|
|
|
__dirname+'/../../../local-node-ipc-certs/client.pub'
|
2015-09-28 14:52:16 +10:00
|
|
|
]
|
2016-01-10 23:18:14 +11:00
|
|
|
};
|
2015-09-28 14:52:16 +10:00
|
|
|
|
|
|
|
ipc.serveNet(
|
|
|
|
function(){
|
|
|
|
ipc.server.on(
|
|
|
|
'message',
|
|
|
|
function(data,socket){
|
2016-03-23 18:07:37 +11:00
|
|
|
ipc.log('got a message : ', data);
|
2015-09-28 14:52:16 +10:00
|
|
|
ipc.server.emit(
|
|
|
|
socket,
|
|
|
|
'message',
|
|
|
|
data+' world!'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
ipc.server.on(
|
|
|
|
'socket.disconnected',
|
|
|
|
function(data,socket){
|
2016-01-10 23:18:14 +11:00
|
|
|
console.log(arguments);
|
2015-09-28 14:52:16 +10:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2015-12-10 21:29:15 +11:00
|
|
|
|
2015-09-28 14:52:16 +10:00
|
|
|
|
|
|
|
ipc.server.start();
|