blob: a81e98cfa89acc08d8bca9093773277e18f4c956 [file] [log] [blame]
Frédéric Lécaille6d889502017-11-15 14:50:19 +01001------------------------------------------------------------------------
2How to build wireshark with HAProxy Peers Protocol dissection support.
3------------------------------------------------------------------------
4
5Please note that at this time, HAProxy Peers Protocol dissection is not supported
6on Windows systems (could not be tested).
7
81) File list
9-------------
Joseph Herlantbd0f83f2018-11-09 19:00:24 -080010 - packet-happp.c: source code for HAProxy Peers Protocol (HAPPP) dissection
Frédéric Lécaille6d889502017-11-15 14:50:19 +010011 support.
12 - wireshark.happp.dissector.patch: a patch file for wireshark sources to enable HAPPP
13 dissection support. Note that this patch file modifies only two files:
14 (epan/dissectors/CMakeLists.txt and epan/dissectors/Makefile.am) to add
15 packet-happp.c file DISSECTOR_SRC variable which list all wireshark
16 - README: this file.
17
182) To build wireshark with HAPPP dissection support
19---------------------------------------------------
20 - Download wireshark sources:
21 $ git clone https://code.wireshark.org/review/wireshark
22 - copy packet-happp.c file to epan/dissectors/ directory.
23 - apply wireshark.happp.dissector.patch file to wireshark source directory.
24 - build wireshark (see https://www.wireshark.org/docs/wsdg_html_chunked/):
25 $ ./autogen.sh
26 $ ./configure
27 $ make