Skip to content

1.9.0

Latest

Choose a tag to compare

@eclipse-zenoh-bot eclipse-zenoh-bot released this 10 Apr 13:28
· 9 commits to main since this release

Info

  • Zenoh Dissector: 1.9.0
  • Zenoh Protocol: 1.9.0
  • Wireshark Version: 4.6.0

Installation

Download and extract the corresponding zip file for your platform. The plugin path uses the Wireshark major.minor version format.

Linux

For Wireshark 4.6.0:

mkdir -p ~/.local/lib/wireshark/plugins/4.6.0/epan
cp libzenoh_dissector.so ~/.local/lib/wireshark/plugins/4.6.0/epan/libzenoh_dissector.so

macOS

For Wireshark 4.6.0 (macOS uses dash format):

WIRESHARK_VER_MACOS=$(echo "4.6.0" | tr '.' '-')
mkdir -p ~/.local/lib/wireshark/plugins/$WIRESHARK_VER_MACOS/epan
cp libzenoh_dissector.so ~/.local/lib/wireshark/plugins/$WIRESHARK_VER_MACOS/epan/libzenoh_dissector.so

Windows

For Wireshark 4.6.0:

$${empty}wireshark_ver = "4.6.0"
$${empty}epan_dir = "$${empty}Env:APPDATA\Wireshark\plugins\$${empty}wireshark_ver\epan"
if (-Not (Test-Path $${empty}epan_dir)) {
    mkdir -p $${empty}epan_dir
}
cp zenoh_dissector.dll $${empty}epan_dir

SHA256 Checksums

$SHA256SUM

What's Changed

Documentation 📝

Full Changelog: 1.8.0...1.9.0