mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-02 02:18:31 +00:00
res_pjsip: Support setting a default accountcode on endpoints
Most channel drivers let you specify a default accountcode to be set on channels associated with a particular peer/endpoint/object. Prior to this patch, chan_pjsip/res_pjsip did not support such a setting. This patch adds a new setting to the res_pjsip endpoint object, 'accountcode'. When a channel is created that is associated with an endpoint with this value set, the channel will automatically have its accountcode property set to the value configured for the endpoint. Review: https://reviewboard.asterisk.org/r/3724/ ASTERISK-24000 #close Reported by: Matt Jordan git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/12@418756 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -573,6 +573,8 @@ struct ast_sip_endpoint {
|
||||
AST_STRING_FIELD(fromdomain);
|
||||
/*! Context to route incoming MESSAGE requests to */
|
||||
AST_STRING_FIELD(message_context);
|
||||
/*! Accountcode to auto-set on channels */
|
||||
AST_STRING_FIELD(accountcode);
|
||||
);
|
||||
/*! Configuration for extensions */
|
||||
struct ast_sip_endpoint_extensions extensions;
|
||||
|
Reference in New Issue
Block a user