Ethereal-dev: [Ethereal-dev] Small patch to packet-http.c - the 'CCM_POST' method

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: Yaniv Kaul <ykaul@xxxxxxxxxxxx>
Date: Wed, 15 Dec 2004 16:29:08 +0200
The 'CCM_POST' method, used by MS SMS server or client or something.
Index: packet-http.c
===================================================================
--- packet-http.c	(revision 12757)
+++ packet-http.c	(working copy)
@@ -1206,7 +1206,8 @@
 
 		case 8:
 			if (strncmp(data, "PROPFIND", index) == 0 ||
-				strncmp(data, "CHECKOUT", index) == 0) {  /* RFC 3253 4.3, 9.3 */
+				strncmp(data, "CHECKOUT", index) == 0 ||
+				strncmp(data, "CCM_POST", index) == 0) {  /* RFC 3253 4.3, 9.3 */ 
 				*type = HTTP_REQUEST;
 				isHttpRequestOrReply = TRUE;
 			}