2021-07-02 14:35:02 -07:00
|
|
|
import ipc from '../../../node-ipc.js';
|
2015-09-27 21:52:16 -07:00
|
|
|
|
|
|
|
/***************************************\
|
|
|
|
*
|
|
|
|
* You should start both hello and world
|
|
|
|
* then you will see them communicating.
|
|
|
|
*
|
|
|
|
* *************************************/
|
|
|
|
|
2016-01-10 04:18:14 -08:00
|
|
|
ipc.config.id = 'world';
|
2015-09-27 21:52:16 -07:00
|
|
|
ipc.config.retry= 1500;
|
|
|
|
ipc.config.tls={
|
2016-01-04 01:45:28 -08: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-27 21:52:16 -07:00
|
|
|
requestCert: true,
|
|
|
|
rejectUnauthorized:false,
|
|
|
|
trustedConnections: [
|
2016-01-04 01:45:28 -08:00
|
|
|
__dirname+'/../../../local-node-ipc-certs/client.pub'
|
2015-09-27 21:52:16 -07:00
|
|
|
]
|
2016-01-10 04:18:14 -08:00
|
|
|
};
|
2015-09-27 21:52:16 -07:00
|
|
|
|
|
|
|
ipc.serveNet(
|
|
|
|
function(){
|
|
|
|
ipc.server.on(
|
|
|
|
'message',
|
|
|
|
function(data,socket){
|
2016-03-23 00:07:37 -07:00
|
|
|
ipc.log('got a message : ', data);
|
2015-09-27 21:52:16 -07:00
|
|
|
ipc.server.emit(
|
|
|
|
socket,
|
|
|
|
'message',
|
|
|
|
data+' world!'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
ipc.server.on(
|
|
|
|
'socket.disconnected',
|
|
|
|
function(data,socket){
|
2016-01-10 04:18:14 -08:00
|
|
|
console.log(arguments);
|
2015-09-27 21:52:16 -07:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2015-12-10 02:29:15 -08:00
|
|
|
|
2015-09-27 21:52:16 -07:00
|
|
|
|
|
|
|
ipc.server.start();
|