Fix bug in flow dumping, add unit test that should have caught this in the first place

This commit is contained in:
Aldo Cortesi
2014-11-06 10:35:00 +13:00
parent e732771c1c
commit 0fe83ce87b
2 changed files with 16 additions and 2 deletions

View File

@@ -205,7 +205,7 @@ class DumpMaster(flow.FlowMaster):
elif self.o.flow_detail >= 3:
print >> self.outfile, str_request(f, self.showhost)
print >> self.outfile, self.indent(4, f.request.headers)
if utils.isBin(f.request.content):
if f.request.content != http.CONTENT_MISSING and utils.isBin(f.request.content):
d = netlib.utils.hexdump(f.request.content)
d = "\n".join("%s\t%s %s"%i for i in d)
print >> self.outfile, self.indent(4, d)