1How to build SPDY dissector for Wireshark (Windows directions). 2 31) Retrieve wireshark source code. 4 5> mkdir D:\src\wireshark 6> cd D:\src\wireshark 7> svn co http://anonsvn.wireshark.org/wireshark/trunk/ trunk 8 92) Retrieve the spdyshark source code. 10 11> cd D:\src 12> svn co http://src.chromium.org/svn/trunk/src/net/tools/spdyshark 13 143) Follow directions to build Wireshark from 15 16http://www.wireshark.org/docs/wsdg_html_chunked/ChSetupWin32.html 17 18 - Read all the directions, there are a number of preliminary steps. 19 20 - You may need to explicitly make C:\wireshark-win32-libs [or 21 C:\wireshark-win64-libs] 22 23 - Make sure PYTHON environment variable is set (this may not be the 24 case if using the one from depot_tools). Although wireshark seems 25 to require it, it tries to workaround missing PYTHON environment 26 variables unsuccessfully. 27 284) Make a symbolic link for spdyshark to Wireshark 29 30> mklink /D D:\src\wireshark\trunk\plugins\spdyshark D:\src\spdyshark 31 325) Build the plugin. 33 34> cd D:\src\wireshark\trunk\plugins\spdyshark 35> nmake -f Makefile.nmake all 36 376) Move the plugin into the wireshark-gtk directory [should automate] 38 39> copy D:\src\wireshark\trunk\plugins\spdyshark.dll 40 D:\src\wireshark\trunk\wireshark-gtk2\plugins 41 427) Start wireshark, and confirm that SPDY plugin is loaded. 43 44> D:\src\wireshark\trunk\wireshark-gtk2\wireshark.exe 45 46Choose Edit > Preferences to bring up the Preferences dialog. 47 48Exand "Protocols" in the left pane of the preferences dialog and 49confirm that spdyshark is there. 50