res_pjsip_dtmf_info.c: Add 'INFO' to Allow header.

Fixes #376
This commit is contained in:
Sean Bright 2023-10-17 11:33:41 -04:00 committed by asterisk-org-access-app[bot]
parent d6fa631d2a
commit 8283aa40a0
1 changed files with 7 additions and 0 deletions

View File

@ -163,6 +163,13 @@ static struct ast_sip_session_supplement dtmf_info_supplement = {
static int load_module(void)
{
static const pj_str_t STR_INFO = { "INFO", 4 };
if (pjsip_endpt_add_capability(ast_sip_get_pjsip_endpoint(),
NULL, PJSIP_H_ALLOW, NULL, 1, &STR_INFO) != PJ_SUCCESS) {
return AST_MODULE_LOAD_DECLINE;
}
ast_sip_session_register_supplement(&dtmf_info_supplement);
return AST_MODULE_LOAD_SUCCESS;
}