Register the MMSE dissector with the "http.content_type" dissector

table, rathe than as a heuristic subdissector of HTTP.

svn path=/trunk/; revision=9026
This commit is contained in:
Guy Harris 2003-11-19 02:58:02 +00:00
parent 81ff12e4aa
commit 2030e7e74b
1 changed files with 4 additions and 6 deletions

View File

@ -2,7 +2,7 @@
* Routines for MMS Message Encapsulation dissection * Routines for MMS Message Encapsulation dissection
* Copyright 2001, Tom Uijldert <tom.uijldert@cmg.nl> * Copyright 2001, Tom Uijldert <tom.uijldert@cmg.nl>
* *
* $Id: packet-mmse.c,v 1.20 2003/10/09 18:54:06 guy Exp $ * $Id: packet-mmse.c,v 1.21 2003/11/19 02:58:02 guy Exp $
* *
* Ethereal - Network traffic analyzer * Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com> * By Gerald Combs <gerald@ethereal.com>
@ -868,9 +868,7 @@ proto_reg_handoff_mmse(void)
dissector_add_string("wsp.content_type.literal", dissector_add_string("wsp.content_type.literal",
"application/vnd.wap.mms-message", "application/vnd.wap.mms-message",
mmse_handle); mmse_handle);
/* dissector_add_string("http.content_type",
* \todo "application/vnd.wap.mms-message",
* The bearer could also be http (through the content-type field). mmse_handle);
*/
heur_dissector_add("http", dissect_mmse_heur, proto_mmse);
} }