Skip to content

Latest commit

 

History

History
51 lines (37 loc) · 986 Bytes

README.md

File metadata and controls

51 lines (37 loc) · 986 Bytes

wireshark-stt-dissector

Wireshark Stateless Transport Tunneling dissector

Installation guide

  • Download source code
# git clone https://code.wireshark.org/review/wireshark

# git clone https://github.com/rvichery/wireshark-stt-dissector
  • Add STT dissector to wireshark source
# cp wireshark-stt-dissector/src/packet-stt.c wireshark/epan/dissectors

Edit wireshark/epan/dissectors/Makefile.common, add the following line between packet-stat.c and packet-stun.c:

DISSECTOR_SRC = \
...
packet-stats.c     \
packet-stt.c       \
packet-stun.c      \
...

Edit wireshark/epan/CMakeLists.txt, add the following line between packet-stat.c and packet-stun.c:

set(DISSECTOR_SRC
...
dissectors/packet-stat.c
dissectors/packet-stt.c
dissectors/packet-stun.c
...
  • Compile wireshark

You can speed up the build-times with the -j flag ;) (for example make -j4 for a quad core CPU)

# ./configure
# make
# make install