[Home]

Summary:ASTERISK-02507: Ignore ;transport=udp from 302 Moved Temp. requests
Reporter:dsandras (dsandras)Labels:
Date Opened:2004-09-30 09:55:02Date Closed:2008-01-15 15:08:33.000-0600
Priority:MinorRegression?No
Status:Closed/CompleteComponents:Core/General
Versions:Frequency of
Occurrence
Related
Issues:
Environment:Attachments:
Description:Patch to ignore the ;transport=udp added by some IP Phones from the Moved Temp. requests.

Simply add :
   e = strchr(tmp, ';');
               if (e)
                       *e = '\0';
in parse_moved_contact in chan_sip.c to the list of currently ignored patterns.
Comments:By: Brian West (bkw918) 2004-09-30 14:11:09

diff -u please

By: Mark Spencer (markster) 2004-09-30 15:56:53

Fixed in CVS, thanks.

By: Russell Bryant (russell) 2004-09-30 20:30:54

fixed in stable

By: Digium Subversion (svnbot) 2008-01-15 15:08:33.000-0600

Repository: asterisk
Revision: 3866

U   branches/v1-0/channels/chan_sip.c

------------------------------------------------------------------------
r3866 | russell | 2008-01-15 15:08:33 -0600 (Tue, 15 Jan 2008) | 2 lines

Ignore ;transport=udp from 302 Moved Temp. requests (bug ASTERISK-2507)

------------------------------------------------------------------------

http://svn.digium.com/view/asterisk?view=rev&revision=3866