[asterisk-commits] mmichelson: branch 1.6.1 r168488 - in /branches/1.6.1: ./ channels/chan_sip.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Jan 12 09:05:43 CST 2009
Author: mmichelson
Date: Mon Jan 12 09:05:43 2009
New Revision: 168488
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=168488
Log:
Merged revisions 168486 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
........
Modified:
branches/1.6.1/ (props changed)
branches/1.6.1/channels/chan_sip.c
Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.1/channels/chan_sip.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.1/channels/chan_sip.c?view=diff&rev=168488&r1=168487&r2=168488
==============================================================================
--- branches/1.6.1/channels/chan_sip.c (original)
+++ branches/1.6.1/channels/chan_sip.c Mon Jan 12 09:05:43 2009
@@ -14421,7 +14421,6 @@
unsigned int event;
const char *c = get_header(req, "Content-Type");
- check_via(p, req);
/* Need to check the media/type */
if (!strcasecmp(c, "application/dtmf-relay") ||
!strcasecmp(c, "application/vnd.nortelnetworks.digits")) {
@@ -16800,7 +16799,6 @@
char *eventid = NULL;
char *sep;
- check_via(p, req);
if( (sep = strchr(event, ';')) ) { /* XXX bug here - overwriting string ? */
*sep++ = '\0';
eventid = sep;
@@ -16939,7 +16937,6 @@
(this needs to be fixed in 1.4 as well)
*/
- check_via(p, req);
if (p->lastinvite) {
/* if this is a request in an active dialog, just confirm that the dialog exists. */
transmit_response_with_allow(p, "200 OK", req, 0);
@@ -18245,7 +18242,6 @@
int res = 0;
- check_via(p, req);
if (req->debug)
ast_verbose("Call %s got a SIP call transfer from %s: (REFER)!\n", p->callid, ast_test_flag(&p->flags[0], SIP_OUTGOING) ? "callee" : "caller");
@@ -18785,7 +18781,6 @@
static int handle_request_message(struct sip_pvt *p, struct sip_request *req)
{
if (!req->ignore) {
- check_via(p, req);
if (req->debug)
ast_verbose("Receiving message!\n");
receive_message(p, req);
More information about the asterisk-commits
mailing list