turn-admin-client
v0.1.5
Published
A tool to access live TURN administrative information
Downloads
15
Keywords
Readme
Turn-admin-client
Allows you to go into a the TURN server's administrative interface - TURN server can be found on google-code
How to use
var TurnAdminClient = require('turn-admin-client');
var client = new TurnAdminClient({
port: 8124
});
client.init();
//do something
client.getActiveSessions(function(err, sessions){
//got an array of sessions
//each session is an object
client.disconnect();
})