aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-http2.h
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2016-08-18 08:07:00 +0200
committerAnders Broman <a.broman58@gmail.com>2016-08-18 11:27:47 +0000
commit5bc19feb86114518f988762a242c60e21487f6dc (patch)
tree7748851b12edf21ee61537e93f3cf1f021c1e632 /epan/dissectors/packet-http2.h
parent13de8ab67643d1e9b88d5ef2c4c51402757006d2 (diff)
HTTP2: export dissect_http2_pdu
for used on another dissector... Change-Id: I7c27517ee26ee9f9384e22a83e547550863093d8 Reviewed-on: https://code.wireshark.org/review/17133 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-http2.h')
-rw-r--r--epan/dissectors/packet-http2.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/epan/dissectors/packet-http2.h b/epan/dissectors/packet-http2.h
new file mode 100644
index 0000000000..5704fe8126
--- /dev/null
+++ b/epan/dissectors/packet-http2.h
@@ -0,0 +1,40 @@
+/* packet-http2.h
+ * Routines for HTTP2 dissection
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+#ifndef __PACKET_HTTP2_H__
+#define __PACKET_HTTP2_H__
+
+int dissect_http2_pdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_ );
+
+#endif
+
+/*
+ * Editor modelines - http://www.wireshark.org/tools/modelines.html
+ *
+ * Local variables:
+ * c-basic-offset: 4
+ * tab-width: 8
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * vi: set shiftwidth=4 tabstop=8 expandtab:
+ * :indentSize=4:tabSize=8:noTabs=true:
+ */