2021-07-03 07:35:02 +10:00
|
|
|
import ipc from '../../../node-ipc.js';
|
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 = 'hello';
|
2015-09-28 14:52:16 +10:00
|
|
|
ipc.config.retry= 1500;
|
|
|
|
ipc.config.rawBuffer=true;
|
|
|
|
ipc.config.encoding='ascii';
|
|
|
|
ipc.config.networkHost='localhost';
|
|
|
|
|
|
|
|
ipc.config.tls={
|
2016-01-04 20:45:28 +11:00
|
|
|
private: __dirname+'/../../../local-node-ipc-certs/private/client.key',
|
|
|
|
public: __dirname+'/../../../local-node-ipc-certs/client.pub',
|
2015-09-28 14:52:16 +10:00
|
|
|
rejectUnauthorized:true,
|
|
|
|
trustedConnections: [
|
2016-01-04 20:45:28 +11:00
|
|
|
__dirname+'/../../../local-node-ipc-certs/server.pub'
|
2015-09-28 14:52:16 +10:00
|
|
|
]
|
|
|
|
};
|
|
|
|
|
|
|
|
ipc.connectToNet(
|
|
|
|
'world',
|
|
|
|
function(){
|
|
|
|
ipc.of.world.on(
|
|
|
|
'connect',
|
|
|
|
function(){
|
2016-03-23 18:07:37 +11:00
|
|
|
ipc.log('## connected to world ##', ipc.config.delay);
|
2015-09-28 14:52:16 +10:00
|
|
|
ipc.of.world.emit(
|
|
|
|
'hello'
|
2016-01-10 23:18:14 +11:00
|
|
|
);
|
2015-09-28 14:52:16 +10:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
ipc.of.world.on(
|
|
|
|
'data',
|
|
|
|
function(data){
|
2016-03-23 18:07:37 +11:00
|
|
|
ipc.log('got a message from world : ', data,data.toString());
|
2015-09-28 14:52:16 +10:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|