summaryrefslogtreecommitdiff
path: root/res/res_pjsip.c
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2014-03-17 22:54:32 +0000
committerJoshua Colp <jcolp@digium.com>2014-03-17 22:54:32 +0000
commitcc40bf53173ec40a26d4eb35184dd7d39f208efc (patch)
tree9f38be9c86724ea595541fff54c7e041061f1301 /res/res_pjsip.c
parent932fb5a6e231c511a74e7a78693cdac1abad7690 (diff)
res_pjsip: Enable PJSIP DNS client support.
This change enables DNS client support within PJSIP. System nameservers are automatically discovered using res_init or res_ninit. If this fails then PJSIP will resort to using gethostbyname for resolution. By enabling this support we gain SRV support, failover, and weight support. (closes issue ASTERISK-23435) Reported by: Matt Jordan Review: https://reviewboard.asterisk.org/r/3343/ ........ Merged revisions 410795 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@410796 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_pjsip.c')
-rw-r--r--res/res_pjsip.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/res/res_pjsip.c b/res/res_pjsip.c
index 650c68884..69e6b668d 100644
--- a/res/res_pjsip.c
+++ b/res/res_pjsip.c
@@ -2305,6 +2305,8 @@ static int load_module(void)
return AST_MODULE_LOAD_DECLINE;
}
+ ast_sip_initialize_dns();
+
pjsip_tsx_layer_init_module(ast_pjsip_endpoint);
pjsip_ua_init_module(ast_pjsip_endpoint, NULL);
@@ -2395,6 +2397,7 @@ static int reload_module(void)
return AST_MODULE_LOAD_DECLINE;
}
ast_res_pjsip_init_options_handling(1);
+ ast_sip_initialize_dns();
return 0;
}