You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to use freeswitch (as a sip registrar and proxy) and sipjs as a user agent that receives calls (RTP)? What I am trying currently is to start with the freeswitch address, but seems impossible because returns a EADDRINUSE error.
Thanks
The text was updated successfully, but these errors were encountered:
EADDRINUSE means that sip.js is trying to use the same address to listen on as your other app. Try to change port number in sip.start() options. for example:sip.start({port: 6060})
It is impossible to reuseaddr if the port is already bound by another application. reuseAddr works when the port was previously used and it is in the closing stage.
Is it possible to use freeswitch (as a sip registrar and proxy) and sipjs as a user agent that receives calls (RTP)? What I am trying currently is to start with the freeswitch address, but seems impossible because returns a EADDRINUSE error.
Thanks
The text was updated successfully, but these errors were encountered: