Suggest that perhaps displaying chunks in the chunked encoding with the

data dissector might be overkill, as it causes each of those chunks to
be dumped in hex in Tethereal output - along with whatever's done with
the data reassembled from those chunks.

svn path=/trunk/; revision=15141
This commit is contained in:
Guy Harris 2005-07-29 07:35:43 +00:00
parent 66a2801dfa
commit 9055696e2b
1 changed files with 7 additions and 0 deletions

View File

@ -1326,6 +1326,13 @@ chunked_encoding_dissector(tvbuff_t **tvb_ptr, packet_info *pinfo,
if (chunk_size > 0) {
/*
* XXX - just use "proto_tree_add_text()"?
* This means that, in Tethereal, you get
* the entire chunk dumped out in hex,
* in addition to whatever dissection is
* done on the reassembled data.
*/
call_dissector(data_handle, data_tvb, pinfo,
chunk_subtree);
}