2015-09-28 14:52:16 +10:00
|
|
|
var ipc=require('../../../node-ipc');
|
|
|
|
|
|
|
|
/***************************************\
|
|
|
|
*
|
|
|
|
* You should start both hello and world
|
|
|
|
* then you will see them communicating.
|
|
|
|
*
|
|
|
|
* *************************************/
|
|
|
|
|
|
|
|
ipc.config.id = 'hello';
|
|
|
|
ipc.config.retry= 1500;
|
|
|
|
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(){
|
|
|
|
ipc.log('## connected to world ##'.rainbow, ipc.config.delay);
|
|
|
|
ipc.of.world.emit(
|
|
|
|
'message',
|
|
|
|
'hello'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
);
|
|
|
|
ipc.of.world.on(
|
|
|
|
'disconnect',
|
|
|
|
function(){
|
|
|
|
ipc.log('disconnected from world'.notice);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
ipc.of.world.on(
|
|
|
|
'message',
|
|
|
|
function(data){
|
|
|
|
ipc.log('got a message from world : '.debug, data);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|