I need to handel the connection on different servers, is possible to open different connection, with like 5 different servers, like:
websockifyMaker({
source: '127.0.0.1:8081',
target: 'remoteServerIp:5901'
}, {
source: '127.0.0.1:8082',
target: 'remoteServerIp:5902'
}, {
source: '127.0.0.1:8083',
target: 'remoteServerIp:5903'
}
);
Thank you