Commit cf164253 authored by Sam Rushing's avatar Sam Rushing

h2_protocol: raise NotImplementedError on PUSH_PROMISE or CONTINUATION.

parent a7ba8a08
......@@ -415,9 +415,9 @@ class h2_protocol:
LOG ('orphaned data frame [%d bytes] for stream %d\n' % (len(payload), stream_id))
def frame_push_promise (self, flags, stream_id, payload):
import pdb; pdb.set_trace()
raise NotImplementedError
def frame_continuation (self, flags, stream_id, payload):
import pdb; pdb.set_trace()
raise NotImplementedError
# --------------------------------------------------------------------------------
# h2 server
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment