Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
nghttp2
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
nghttp2
Commits
2411a08b
Commit
2411a08b
authored
May 13, 2014
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
python: Return Handler object for pushed resource from BaseRequestHandler.push
Also update doc
parent
062d6a83
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
8 deletions
+12
-8
python/nghttp2.pyx
python/nghttp2.pyx
+12
-8
No files found.
python/nghttp2.pyx
View file @
2411a08b
...
...
@@ -63,7 +63,7 @@ cdef class HDDeflater:
'''Performs header compression. The constructor takes
|hd_table_bufsize_max| parameter, which limits the usage of header
table in the given amount of bytes. This is necessary because the
header compressor and decompressor
has to
share the same amount of
header compressor and decompressor share the same amount of
header table and the decompressor decides that number. The
compressor may not want to use all header table size because of
limited memory availability. In that case, the
...
...
@@ -169,7 +169,7 @@ cdef class HDDeflater:
if
rv
!=
0
:
raise
Exception
(
_strerror
(
rv
))
def
get_hd_table
(
self
,
):
def
get_hd_table
(
self
):
'''Returns copy of current dynamic header table.'''
return
_get_hd_table
(
&
self
.
_deflater
.
ctx
)
...
...
@@ -631,6 +631,8 @@ cdef class _HTTP2SessionCore:
promised_handler
.
stream_id
=
promised_stream_id
return
promised_handler
def
_rst_stream
(
self
,
stream_id
,
error_code
=
cnghttp2
.
NGHTTP2_INTERNAL_ERROR
):
cdef
int
rv
...
...
@@ -795,10 +797,11 @@ if asyncio:
instance of either str, bytes or io.IOBase. If instance of str
is specified, it is encoded using UTF-8.
The headers is a list of tuple of the form (name, value). The
name and value are byte string.
The headers is a list of tuple of the form (name,
value). The name and value can be either unicode string or
byte string.
On error, exception w
as
thrown.
On error, exception w
ill be
thrown.
'''
if
self
.
status
is
not
None
:
...
...
@@ -832,9 +835,10 @@ if asyncio:
encoded using UTF-8.
The headers and request_headers are a list of tuple of the
form (name, value). The name and value are byte string.
form (name, value). The name and value can be either
unicode string or byte string.
On error, exception w
as
thrown.
On error, exception w
ill be
thrown.
'''
if
not
status
:
...
...
@@ -867,7 +871,7 @@ if asyncio:
promised_handler
.
headers
=
request_headers
self
.
http2
.
push
(
self
,
promised_handler
)
return
self
.
http2
.
push
(
self
,
promised_handler
)
def
_set_response_prop
(
self
,
status
,
headers
,
body
):
self
.
status
=
status
...
...
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