Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
req_resp_hdrs.h
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.
4  *
5  * Wireshark - Network traffic analyzer
6  * By Gerald Combs <gerald@wireshark.org>
7  * Copyright 1998 Gerald Combs
8  *
9  * SPDX-License-Identifier: GPL-2.0-or-later
10  */
11 
12 #ifndef __REQ_RESP_HDRS_H__
13 #define __REQ_RESP_HDRS_H__
14 
15 #include "ws_symbol_export.h"
16 
27 WS_DLL_PUBLIC gboolean
28 req_resp_hdrs_do_reassembly(tvbuff_t *tvb, const int offset, packet_info *pinfo,
29  const gboolean desegment_headers, const gboolean desegment_body);
30 
31 #endif
Definition: packet_info.h:44
Definition: tvbuff-int.h:35