[svn-commits] kpfleming: trunk r44434 - in /trunk: ./ channels/chan_sip.c

svn-commits at lists.digium.com svn-commits at lists.digium.com
Wed Oct 4 18:30:45 MST 2006


Author: kpfleming
Date: Wed Oct  4 20:30:44 2006
New Revision: 44434

URL: http://svn.digium.com/view/asterisk?rev=44434&view=rev
Log:
Merged revisions 44433 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

................
r44433 | kpfleming | 2006-10-04 20:30:05 -0500 (Wed, 04 Oct 2006) | 10 lines

Merged revisions 44432 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r44432 | kpfleming | 2006-10-04 20:27:57 -0500 (Wed, 04 Oct 2006) | 2 lines

fix Polycom presence notification again

........

................

Modified:
    trunk/   (props changed)
    trunk/channels/chan_sip.c

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.

Modified: trunk/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_sip.c?rev=44434&r1=44433&r2=44434&view=diff
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Wed Oct  4 20:30:44 2006
@@ -13888,10 +13888,12 @@
 		if (!strcmp(event, "presence") || !strcmp(event, "dialog")) { /* Presence, RFC 3842 */
 
 			/* Header from Xten Eye-beam Accept: multipart/related, application/rlmi+xml, application/pidf+xml, application/xpidf+xml */
-			/* don't supply pidf+xml to Polycom phones until they fix their firmware to
-			   parse it properly
+			/* Polycom phones only handle xpidf+xml, even if they say they can
+			   handle pidf+xml as well
 			*/
-			if (strstr(accept, "application/pidf+xml") && !strstr(p->useragent, "Polycom")) {
+			if (strstr(p->useragent, "Polycom")) {
+				p->subscribed = XPIDF_XML;
+			} else if (strstr(accept, "application/pidf+xml")) {
  				p->subscribed = PIDF_XML;         /* RFC 3863 format */
  			} else if (strstr(accept, "application/dialog-info+xml")) {
  				p->subscribed = DIALOG_INFO_XML;



More information about the svn-commits mailing list