I am experimenting with the SPDY protocol and I stumbled upon a sample of SPDY protocol (which can be downloaded using the "attachment" link).
Here's how I viewed it:
- Open the pcapng file in Wireshark 1.12.2 (or newer)
- Right click on any SSL/TLS frame, and go to Protocol Preferences -> RSA keys list...
- Click new and enter IP address 0.0.0.0, port 443, protocol spdy and the path to this key file,
- Right click on any SPDY frame, go to Protocol Preferences -> Uncompress SPDY headers to disable SPDY header decompression
- Go to frame 45 and observe that in the "SPDY: SYN_STREAM" layer, after highlighting "Header Block", the hex dump below is readable
According to the SPDY specification, this should be compressed. Why can I see this? Is there a way to disable header compression in the SPDY protocol? Am I using Wireshark the wrong way?
About the specification
The draft you linked states this :
It doesn't enforce any compression level. In fact, you can use zlib with no compression at all, this is supported by the zlib format :
About the sample
I contacted the author of the sample. Turns out he was using nginx for his experiment. In the documents he provided, nginx was configured like this :
However, the nginx documentation states that header compression must be specified explicitly:
This means headers compression was most likely not enabled for the experiment.
My conclusion