-
Notifications
You must be signed in to change notification settings - Fork 788
Open
Description
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)
{
debug('sendRequest()');
const request = new SIPMessage.OutgoingRequest(method, this.normalizeTarget(target), this, params, headers, body);
const requestSender = new RequestSender(this, request, handlers, credential);
requestSender.send();
}
To allow different from REGISTER authentication realm to RequestSender added argument credential.
The modification is optional.
maynor96 and artemmakarcevfpaaske
Metadata
Metadata
Assignees
Labels
No labels