from Micheal Duigou: some more doxygen tags

svn path=/trunk/; revision=13732
This commit is contained in:
Ulf Lamping 2005-03-12 09:59:28 +00:00
parent 5ee5f5c71f
commit 25531c9a70
2 changed files with 10 additions and 2 deletions

View File

@ -51,7 +51,8 @@ struct tcpheader {
};
/*
* Private data passed from the TCP dissector to subdissectors.
* Private data passed from the TCP dissector to subdissectors. Passed to the
* subdissectors in pinfo->private_data
*/
struct tcpinfo {
guint32 seq; /* Sequence number of first byte in the data */

View File

@ -26,8 +26,15 @@
#ifndef __REQ_RESP_HDRS_H__
#define __REQ_RESP_HDRS_H__
/*
/**
* Optionally do reassembly of the request/response line, headers, and body.
*
* @param tvb The buffer.
* @param offset The offset in the buffer to begin inspection.
* @param pinfo Packet info from the parent protocol.
* @param desegment_headers Do desegmentation on headers.
* @param desegment_body Do desegmenation on body.
* @return TRUE if desegmentation is complete otherwise FALSE
*/
extern gboolean
req_resp_hdrs_do_reassembly(tvbuff_t *tvb, int offset, packet_info *pinfo,