]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
chan_sip: Send real CallerID information with P-Assserted-Identity (RFC-3325)
authorJonathan Rose <jrose@digium.com>
Wed, 26 Mar 2014 15:57:36 +0000 (15:57 +0000)
committerJonathan Rose <jrose@digium.com>
Wed, 26 Mar 2014 15:57:36 +0000 (15:57 +0000)
Prior too this patch, the P-Asserted-Identity header would include anonymous
caller id information which seems to go against the point of the
P-Asserted-Identity header. Now the real caller ID information will be
included in this header. Also, no privacy header would be included.
This patch adds 'Privacy: id' to outgoing SIP messages that include the
P-Asserted-Identity header.

(closes issue AST-1301)
........

Merged revisions 411189 from http://svn.asterisk.org/svn/asterisk/branches/1.8

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/11@411190 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_sip.c
configs/sip.conf.sample

index c6b196b6627845466bd77a972dfff6e09932aa0d..eae51bbd05657e4d6ea26c92559f201d6c4f4390 100644 (file)
@@ -12517,7 +12517,6 @@ static int add_rpid(struct sip_request *req, struct sip_pvt *p)
        const char *fromdomain;
        const char *privacy = NULL;
        const char *screen = NULL;
-       const char *anonymous_string = "\"Anonymous\" <sip:anonymous@anonymous.invalid>";
        struct ast_party_id connected_id;
 
        if (!ast_test_flag(&p->flags[0], SIP_SENDRPID)) {
@@ -12543,12 +12542,11 @@ static int add_rpid(struct sip_request *req, struct sip_pvt *p)
        lid_num = ast_uri_encode(lid_num, tmp2, sizeof(tmp2), ast_uri_sip_user);
 
        if (ast_test_flag(&p->flags[0], SIP_SENDRPID_PAI)) {
+               ast_str_set(&tmp, -1, "\"%s\" <sip:%s@%s>", lid_name, lid_num, fromdomain);
+               add_header(req, "P-Asserted-Identity", ast_str_buffer(tmp));
                if ((lid_pres & AST_PRES_RESTRICTION) != AST_PRES_ALLOWED) {
-                       ast_str_set(&tmp, -1, "%s", anonymous_string);
-               } else {
-                       ast_str_set(&tmp, -1, "\"%s\" <sip:%s@%s>", lid_name, lid_num, fromdomain);
+                       add_header(req, "Privacy", "id");
                }
-               add_header(req, "P-Asserted-Identity", ast_str_buffer(tmp));
        } else {
                ast_str_set(&tmp, -1, "\"%s\" <sip:%s@%s>;party=%s", lid_name, lid_num, fromdomain, p->outgoing_call ? "calling" : "called");
 
index 5042bab1be4fdd58e50556a70ac4b4f9e7542593..b32c2e81839341bedd924c9f16ba8e48f52f4a65 100644 (file)
@@ -1414,7 +1414,8 @@ srvlookup=yes                   ; Enable DNS SRV lookups on outbound calls
 ;allow=g723.1                    ; Asterisk only supports g723.1 pass-thru!
 ;allow=g729                      ; Pass-thru only unless g729 license obtained
 ;callingpres=allowed_passed_screen ; Set caller ID presentation
-                                 ; See README.callingpres for more information
+                                 ; See function CALLERPRES documentation for possible
+                                 ; values.
 
 ;[xlite1]
 ; Turn off silence suppression in X-Lite ("Transmit Silence"=YES)!