JsSIP
JsSIP copied to clipboard
JsSIP, the JavaScript SIP library
repro is refusing to authenticate when qop=auth-int. Using qop=auth is OK. I checked the logs on both JsSIP and the repro proxy The body hashes don't match I compared the...
I'm using typescript and I need to detect the direction of a RTCSession. In according to typescript definition of RTCSession, the direction is a SessionDirection, that is an enum described...
Hi! I wanted to write my own WebSocketInterface and use reconnection mechanism from JsSIP. However to use it I need to call ondisconnect from my code to trigger transport reconnect...
SIP SUBSCRIBE/NOTIFY dialog implemented in user (not JsSIP) code. For this to JsSIP added arbitrary client transaction: JsSIP modifications: UA.js: added method: ``` sendRequest(method, target, params, headers, body, handlers, credential)...
This PR is about implement support for talk and hold NOTIFY in a generic way. Talk and hold NOTIFY are SIP NOTIFYs that are sent on a INVITE dialog. It's...
## Use Case I need to intercept the logs from both errors and standard debug log messages, e.g. for sending them to a backend. Logging standard messages is easy by...
_Versions: 3.7.0 - 3.7.5 (at least)_ The library build has circular dependency: `./UA` -> `./RTCSession` -> `./Dialog` -> `./Dialog/RequestSender` -> `../RTCSession` Thus `RTCSession` is empty object inside `Dialog/RequestSender` and it...
We're running JsSIP v3.6.1. When `session.mute()` is called on an unanswered incoming call, the following error is thrown. ``` TypeError: Cannot read property 'getSenders' of null at RTCSession._toggleMuteAudio (RTCSession.js:3029) at...
@types/node should be under devDependencies otherwise node types will be included and interfere with web project. You get problems like described in https://github.com/Microsoft/TypeScript/issues/9731.
Hi, I’m looking for the right way to add details into the Contact URI here: https://github.com/versatica/JsSIP/blob/5f5da6b802554be4f857cad5671154184308a21b/lib/UA.js#L874 As per: https://tools.ietf.org/html/rfc8599#section-4 Like: ``` Contact: ``` We’re also discussing this here: https://github.com/cloudwebrtc/dart-sip-ua/issues/89 Thanks.