Anyone knows a way to get just the decompressed headers for http2 from a capture with tshark? So far I got this command: Thanks for any help in advance :) asked 08 Apr '16, 07:44 monkey521 |
One Answer:
The decompressed headers for HTTP/2 need to be interpreted in a special way. You can obtain the full, verbose HTTP/2 interpretation with:
Alternatively, you can select the fields (and post-process them to pair header names and values):
answered 08 Apr '16, 09:20 Lekensteyn |
thank you very much! :)