[svn-commits] trunk r31872 - /trunk/channels/chan_sip.c
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Sat Jun 3 16:58:32 MST 2006
Author: rizzo
Date: Sat Jun 3 18:58:32 2006
New Revision: 31872
URL: http://svn.digium.com/view/asterisk?rev=31872&view=rev
Log:
remove some duplicated code;
fix indentation on one line;
mark XXX some unreachable code;
mark XXX another place where we could reduce the nesting depth.
Modified:
trunk/channels/chan_sip.c
Modified: trunk/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_sip.c?rev=31872&r1=31871&r2=31872&view=diff
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Sat Jun 3 18:58:32 2006
@@ -11222,6 +11222,8 @@
ast_set_flag(&p->flags[0], SIP_NEEDDESTROY);
return -1;
} else {
+ /* XXX reduce nesting depth */
+
/* Handle REFER notifications */
char buf[1024];
@@ -11321,6 +11323,7 @@
return res;
};
+ /* XXX hey, we never reach this code! */
/* THis could be voicemail notification */
transmit_response(p, "200 OK", req);
if (!p->lastinvite)
@@ -11370,7 +11373,7 @@
/* We have no bridge */
if (!earlyreplace) {
if (option_debug > 1)
- ast_log(LOG_DEBUG, " Attended transfer attempted to replace call with no bridge (maybe ringing). Channel %s!\n", replacecall->name);
+ ast_log(LOG_DEBUG, " Attended transfer attempted to replace call with no bridge (maybe ringing). Channel %s!\n", replacecall->name);
oneleggedreplace = 1;
}
}
@@ -11935,20 +11938,19 @@
}
} else {
if (p && !ast_test_flag(&p->flags[0], SIP_NEEDDESTROY)) {
- if (!p->jointcapability) {
- if (ast_test_flag(req, SIP_PKT_IGNORE))
- transmit_response(p, "488 Not Acceptable Here (codec error)", req);
- else
- transmit_response_reliable(p, "488 Not Acceptable Here (codec error)", req);
- ast_set_flag(&p->flags[0], SIP_NEEDDESTROY);
- } else {
+ const char *msg;
+
+ if (!p->jointcapability)
+ msg = "488 Not Acceptable Here (codec error)";
+ else {
ast_log(LOG_NOTICE, "Unable to create/find SIP channel for this INVITE\n");
- if (ast_test_flag(req, SIP_PKT_IGNORE))
- transmit_response(p, "503 Unavailable", req);
- else
- transmit_response_reliable(p, "503 Unavailable", req);
- ast_set_flag(&p->flags[0], SIP_NEEDDESTROY);
+ msg = "503 Unavailable";
}
+ if (ast_test_flag(req, SIP_PKT_IGNORE))
+ transmit_response(p, msg, req);
+ else
+ transmit_response_reliable(p, msg, req);
+ ast_set_flag(&p->flags[0], SIP_NEEDDESTROY);
}
}
return res;
More information about the svn-commits
mailing list