]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Replace link to old doc with new wiki page.
authorAndrew Latham <lathama@gmail.com>
Wed, 2 Feb 2011 14:40:09 +0000 (14:40 +0000)
committerAndrew Latham <lathama@gmail.com>
Wed, 2 Feb 2011 14:40:09 +0000 (14:40 +0000)
Link to https://wiki.asterisk.org/wiki/display/AST/SIP+Retransmissions

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

channels/chan_sip.c

index 03b021ae4196a488f08220f52867bd806370bdfa..fe74a069d533ce501a8dfd7003d7c56afded8322 100644 (file)
@@ -3838,11 +3838,11 @@ static int retrans_pkt(const void *data)
        /* Too many retries */
        if (pkt->owner && pkt->method != SIP_OPTIONS && xmitres == 0) {
                if (pkt->is_fatal || sipdebug)  /* Tell us if it's critical or if we're debugging */
-                       ast_log(LOG_WARNING, "Maximum retries exceeded on transmission %s for seqno %d (%s %s) -- See doc/sip-retransmit.txt.\n",
+                       ast_log(LOG_WARNING, "Maximum retries exceeded on transmission %s for seqno %d (%s %s) -- See https://wiki.asterisk.org/wiki/display/AST/SIP+Retransmissions \n",
                                pkt->owner->callid, pkt->seqno,
                                pkt->is_fatal ? "Critical" : "Non-critical", pkt->is_resp ? "Response" : "Request");
        } else if (pkt->method == SIP_OPTIONS && sipdebug) {
-                       ast_log(LOG_WARNING, "Cancelling retransmit of OPTIONs (call id %s)  -- See doc/sip-retransmit.txt.\n", pkt->owner->callid);
+                       ast_log(LOG_WARNING, "Cancelling retransmit of OPTIONs (call id %s)  -- See https://wiki.asterisk.org/wiki/display/AST/SIP+Retransmissions \n", pkt->owner->callid);
 
        }
        if (xmitres == XMIT_ERROR) {
@@ -3865,7 +3865,7 @@ static int retrans_pkt(const void *data)
 
                if (pkt->owner->owner) {
                        sip_alreadygone(pkt->owner);
-                       ast_log(LOG_WARNING, "Hanging up call %s - no reply to our critical packet (see doc/sip-retransmit.txt).\n", pkt->owner->callid);
+                       ast_log(LOG_WARNING, "Hanging up call %s - no reply to our critical packet (see https://wiki.asterisk.org/wiki/display/AST/SIP+Retransmissions ).\n", pkt->owner->callid);
                        ast_queue_hangup_with_cause(pkt->owner->owner, AST_CAUSE_PROTOCOL_ERROR);
                        ast_channel_unlock(pkt->owner->owner);
                } else {