HACK: pinfo->private_data points to smb_info again
[wireshark-wip.git] / epan / req_resp_hdrs.h
blob4a06fcde5d11e2ace62a7226c24fb9d4a5db5f89
1 /* req_resp_hdrs.h
2 * Declarations of routines handling protocols with a request/response line,
3 * headers, a blank line, and an optional body.
5 * $Id$
7 * Wireshark - Network traffic analyzer
8 * By Gerald Combs <gerald@wireshark.org>
9 * Copyright 1998 Gerald Combs
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 #ifndef __REQ_RESP_HDRS_H__
27 #define __REQ_RESP_HDRS_H__
29 #include "ws_symbol_export.h"
31 /**
32 * Optionally do reassembly of the request/response line, headers, and body.
34 * @param tvb The buffer.
35 * @param offset The offset in the buffer to begin inspection.
36 * @param pinfo Packet info from the parent protocol.
37 * @param desegment_headers Do desegmentation on headers.
38 * @param desegment_body Do desegmenation on body.
39 * @return TRUE if desegmentation is complete otherwise FALSE
41 WS_DLL_PUBLIC gboolean
42 req_resp_hdrs_do_reassembly(tvbuff_t *tvb, const int offset, packet_info *pinfo,
43 const gboolean desegment_headers, const gboolean desegment_body);
45 #endif