I want to be able to programmatically disconnect user if the client.id and client.token does seems fishy (PeerServer).
How would I go about doing that inside the connection handler -
peerServer.on('connection', (client) => {
if(is_fishy(client)) {
// disconnected it.
}
});