# chunk output into lines. nghttp mixes text
# meta output with bytes from the response body.
lines = [l.decode() for l in btext.split(b'\n')]
+
for lidx, l in enumerate(lines):
if len(l) == 0:
body += '\n'
header[hname] += ", %s" % hval
else:
header[hname] = hval
- body = ''
continue
m = re.match(r'(.*)\[.*] recv HEADERS frame <.* stream_id=(\d+)>', l)
response["previous"] = prev
response[hkey] = s["header"]
s["header"] = {}
- body = ''
continue
m = re.match(r'(.*)\[.*] recv DATA frame <length=(\d+), .*stream_id=(\d+)>', l)
if '[' != l[0]:
skip_indents = None
- body += l + '\n'
-
+ body += l + '\n'
+
# the main request is done on the lowest odd numbered id
main_stream = 99999999999
for sid in streams: