Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
packet-http2.h
1 /* packet-http2.h
2  * Routines for HTTP2 dissection
3  *
4  * Wireshark - Network traffic analyzer
5  * By Gerald Combs <gerald@wireshark.org>
6  * Copyright 1998 Gerald Combs
7  *
8  * SPDX-License-Identifier: GPL-2.0-or-later
9  */
10 #ifndef __PACKET_HTTP2_H__
11 #define __PACKET_HTTP2_H__
12 
13 int dissect_http2_pdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_ );
14 
26 const gchar* http2_get_header_value(packet_info *pinfo, const gchar* name, gboolean the_other_direction);
27 
28 #endif
29 
30 /*
31  * Editor modelines - http://www.wireshark.org/tools/modelines.html
32  *
33  * Local variables:
34  * c-basic-offset: 4
35  * tab-width: 8
36  * indent-tabs-mode: nil
37  * End:
38  *
39  * vi: set shiftwidth=4 tabstop=8 expandtab:
40  * :indentSize=4:tabSize=8:noTabs=true:
41  */
Definition: packet_info.h:44
Definition: tvbuff-int.h:35
Definition: proto.h:759