Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
shrapnel
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
shrapnel
Commits
cf164253
Commit
cf164253
authored
Oct 08, 2015
by
Sam Rushing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
h2_protocol: raise NotImplementedError on PUSH_PROMISE or CONTINUATION.
parent
a7ba8a08
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
coro/http/h2.py
coro/http/h2.py
+2
-2
No files found.
coro/http/h2.py
View file @
cf164253
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment