summaryrefslogtreecommitdiff
path: root/res/res_pjsip.exports.in
diff options
context:
space:
mode:
authorKevin Harwell <kharwell@digium.com>2013-09-26 18:51:54 +0000
committerKevin Harwell <kharwell@digium.com>2013-09-26 18:51:54 +0000
commit103ebcf807cb9050ad3653c606cb8cf07c36850f (patch)
tree0b2385b16e999ff3dd5f9feeaa6e21c41f0f153a /res/res_pjsip.exports.in
parent1df1ebdc379d46545c35f1abdff6b100f0c4bcac (diff)
pjsip: race condition in registrar
While handling a registration request a race condition could occur if/when two+ clients registered at the same time. This happened when one request obtained a copy of the current contacts for an AOR and another request did the same before the first request updated. Thus the second would update and overwrite the first (or vice-versa depending on which actually updated first). In the case of it being the same contact two "add" events would be raised. pjsip registration handling is now serialized to alleviate this issue. (closes issue AST-1213) Reported by: John Bigelow Review: https://reviewboard.asterisk.org/r/2860/ ........ Merged revisions 399897 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@399898 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_pjsip.exports.in')
-rw-r--r--res/res_pjsip.exports.in2
1 files changed, 2 insertions, 0 deletions
diff --git a/res/res_pjsip.exports.in b/res/res_pjsip.exports.in
index a4b23bc7e..d896ee60d 100644
--- a/res/res_pjsip.exports.in
+++ b/res/res_pjsip.exports.in
@@ -61,6 +61,8 @@
LINKER_SYMBOL_PREFIXast_sip_report_auth_failed_challenge_response;
LINKER_SYMBOL_PREFIXast_sip_report_auth_success;
LINKER_SYMBOL_PREFIXast_sip_report_auth_challenge_sent;
+ LINKER_SYMBOL_PREFIXast_sip_report_req_no_support;
+ LINKER_SYMBOL_PREFIXast_sip_report_mem_limit;
LINKER_SYMBOL_PREFIXast_sip_initialize_global_headers;
LINKER_SYMBOL_PREFIXast_sip_destroy_global_headers;
LINKER_SYMBOL_PREFIXast_sip_add_global_request_header;