Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.4 KB

INSTALL.md

File metadata and controls

32 lines (23 loc) · 1.4 KB

Adding Continuity Dissector to Wireshark

Linux/macOS Instructions

  1. Download the Wireshark source code for your desired version
  2. Download the dissector that corresponds to the desired Wireshark base version (eg 3.2.1/packet-bthci_cmd.c for Wireshark base version 3.2.1)
  3. Replace epan/dissectors/packet-bthci_cmd.c in the downloaded Wireshark source with our version
  4. Follow the Wireshark build instructions to build

Windows

Building things from source is really terrible on Windows.

  1. Use one of our 64-bit Windows installers that we built with the dissector built in under the version subdirectories. Installers are named Wireshark-win64-[version].exe.

Or, if you're brave,

1. Install Gentoo

  1. Download the Wireshark source code for your desired version
  2. Download the dissector that corresponds to the desired Wireshark base version (eg 3.2.1/packet-bthci_cmd.c for Wireshark base version 3.2.1)
  3. Replace epan/dissectors/packet-bthci_cmd.c in the downloaded Wireshark source with our version
  4. Follow the Windows build instructions from Wireshark.