Frédéric Lécaille | 6d88950 | 2017-11-15 14:50:19 +0100 | [diff] [blame] | 1 | ------------------------------------------------------------------------ |
| 2 | How to build wireshark with HAProxy Peers Protocol dissection support. |
| 3 | ------------------------------------------------------------------------ |
| 4 | |
| 5 | Please note that at this time, HAProxy Peers Protocol dissection is not supported |
| 6 | on Windows systems (could not be tested). |
| 7 | |
| 8 | 1) File list |
| 9 | ------------- |
| 10 | - packet-happp.c: source code for HAProxy Peers Procotol (HAPPP) dissection |
| 11 | 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 | |
| 18 | 2) 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 |