wireshark-dissector-rs
wireshark-dissector-rs copied to clipboard
No need for wireshark sources to compile
I was inspired by this project and was able to make so that at most you need the header files. But as long as you have the .dll/.so file you can compile a plugin from the start with rust. Rust will also produce the full lib to be use by Wireshark, and it can be really easy to set up a dissector. Example: https://github.com/jose-pr/libwireshark-rs/blob/master/foo_dissector/src/lib.rs
Very cool, I'll check it out.