3e7db8d3e8
Right-aligning backslashes when defining macros or using complex commands in Makefiles looks cute, but as soon as any changes is required to the code you end up with either distractingly broken alignment or unnecessarily big diffs where most of the changes are just pushing all backslashes a few characters to one side. Generated using $ git grep -El '[[:blank:]][[:blank:]]\\$' | \ grep -E '*\.([chx]|am|mk)$$' | \ while read f; do \ sed -Ei 's/[[:blank:]]*[[:blank:]]\\$/ \\/g' "$f"; \ done Signed-off-by: Andrea Bolognani <abologna@redhat.com> |
||
---|---|---|
.. | ||
samples | ||
src | ||
util | ||
README.md |
About
This is the project of Google Summer of Code 2013 accepted by QEMU.org and libvirt community. The goal of this project is, provide Wireshark dissector for Libvirt RPC protocol. It will provide Libvirt packet overview/detail analysing in Wireshark. Furthermore, it will be able to build(generated) from RPC protocol definition placed in Libvirt source tree to support latest protocol specification.
See also:
- http://www.google-melange.com/gsoc/project/google/gsoc2013/kawamuray/7001
- https://wiki.qemu.org/Features/LibvirtWiresharkDissector
Installation
Run ./configure with --with-wireshark-dissector option enabled. Then dissector will compiled with libvirt itself.
Add/Remove protocol from dissector's support
Modify variable WS_DISSECTOR_PROTO_FILES in tools/wireshark/src/Makefile.am.
Changing installation directory
You can change installation directory of pluggable shared object(libvirt.so) by specifying --with-ws-plugindir=.
You can install libvirt.so into your local wireshark plugin directory:
./configure --with-wireshark-dissector \
--with-ws-plugindir=$HOME/.wireshark/plugins