Ethereal-dev: RE: [Ethereal-dev] [PATCH]Typo in packet-wsp.c

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

From: Biot Olivier <Olivier.Biot@xxxxxxxxxxx>
Date: Tue, 28 Oct 2003 16:49:36 +0100
| -----Original Message-----
| From: Loïc Minier
| 
|      Hello list,

|  (Anyone heard of 0x0B-0x0F content-types ?)

They're multipart encapsulation types. They should be in lowercase too :)

In packet-wsp.c:
static const value_string vals_content_types[] = {
	/* ... */
	{ 0x0B, "Multipart/*" },
	{ 0x0C, "Multipart/mixed" },
	{ 0x0D, "Multipart/form-data" },
	{ 0x0E, "Multipart/byteranges" },
	{ 0x0F, "Multipart/alternative" },

Regards,

Olivier