sipster icon indicating copy to clipboard operation
sipster copied to clipboard

A pjsip/pjsua2 binding for node.js

Results 23 sipster issues
Sort by recently updated
recently updated
newest added

Hello! It is possible to set SIP account with ip,login,pass like in python pj connector? Something like this: ` acc = lib.create_account(pj.AccountConfig("pjsip.org", "bennylp", "***"))` What right way to this? Thank...

> var sipster = require('sipster'); > sipster.init(); > var transport = new sipster.Transport({ port: 5060 }); > var acct = new sipster.Account({ > idUri: 'sip:[email protected]', > regConfig: { > registrarUri:...

Hi, I got a question regarding how to accept a client register request in sipster. I setup sipster nodeJS as in the example on github / npm page but when...

module.js:434 return process.dlopen(module, path._makeLong(filename)); ^ Error: libresample.so.2: cannot open shared object file: No such file or directory at Error (native) at Object.Module._extensions..node (module.js:434:18) at Module.load (module.js:343:32) at Function.Module._load (module.js:300:12) at...

Hello, I succes to run your example with my SIP account. Now, i would like to call an alarm unit and drive it with DTMF code. But, when i make...

Hello, I am trying to move from python's pjsip biddings to sipster, but I get the following error: ``` bash $ npm install sipster > [email protected] install /Users/vincentgire/Documents/Projects/sensout/proto/phone/node_modules/sipster > node-gyp...

It seems that pjsua2 keeps some resources allocated even when all accounts are unregistered etc Would it be possible to implement support for libDestroy function? Or is it somehow already...

Would you consider licensing this as a dual license GPL/MIT (so users have choice of which to use)? I'd like to release an app that has sipster statically linked to...

This will allow users to make phone calls with real audio devices.

How can I get the call Event such as "media" in nodejs if I'm the caller? just as acct.on('call', function(info, call) { console.log('=== Incoming call from ' + info.remoteContact);}); ..etc...