python: Update to latest nghttp2_hd spec
This commit is contained in:
parent
707a0b4103
commit
7048c56583
|
@ -86,10 +86,10 @@ cdef extern from 'nghttp2_hd.h':
|
||||||
nghttp2_nv *nva, size_t nvlen)
|
nghttp2_nv *nva, size_t nvlen)
|
||||||
|
|
||||||
ssize_t nghttp2_hd_inflate_hd(nghttp2_hd_context *inflater,
|
ssize_t nghttp2_hd_inflate_hd(nghttp2_hd_context *inflater,
|
||||||
nghttp2_nv **nva_ptr,
|
nghttp2_nv *nv_out, int *final,
|
||||||
uint8_t *input, size_t inlen)
|
uint8_t *input, size_t inlen)
|
||||||
|
|
||||||
int nghttp2_hd_end_headers(nghttp2_hd_context *deflater_or_inflater)
|
int nghttp2_hd_inflate_end_headers(nghttp2_hd_context *inflater)
|
||||||
|
|
||||||
nghttp2_hd_entry* nghttp2_hd_table_get(nghttp2_hd_context *context,
|
nghttp2_hd_entry* nghttp2_hd_table_get(nghttp2_hd_context *context,
|
||||||
size_t index)
|
size_t index)
|
||||||
|
|
|
@ -199,19 +199,24 @@ cdef class HDInflater(_HDContextBase):
|
||||||
byte string (not unicode string).
|
byte string (not unicode string).
|
||||||
|
|
||||||
'''
|
'''
|
||||||
cdef cnghttp2.nghttp2_nv *nva
|
cdef cnghttp2.nghttp2_nv nv
|
||||||
|
cdef int final
|
||||||
cdef ssize_t rv
|
cdef ssize_t rv
|
||||||
|
cdef uint8_t *buf = data
|
||||||
rv = cnghttp2.nghttp2_hd_inflate_hd(&self._ctx, &nva,
|
cdef size_t buflen = len(data)
|
||||||
data, len(data))
|
res = []
|
||||||
if rv < 0:
|
while True:
|
||||||
raise Exception(_strerror(rv))
|
rv = cnghttp2.nghttp2_hd_inflate_hd(&self._ctx, &nv, &final,
|
||||||
try:
|
buf, buflen)
|
||||||
res = [(nva[i].name[:nva[i].namelen],
|
if rv < 0:
|
||||||
nva[i].value[:nva[i].valuelen]) for i in range(rv)]
|
raise Exception(_strerror(rv))
|
||||||
finally:
|
if final:
|
||||||
cnghttp2.nghttp2_nv_array_del(nva)
|
break
|
||||||
cnghttp2.nghttp2_hd_end_headers(&self._ctx)
|
buf += rv
|
||||||
|
buflen -= rv
|
||||||
|
# may throw
|
||||||
|
res.append((nv.name[:nv.namelen], nv.value[:nv.valuelen]))
|
||||||
|
cnghttp2.nghttp2_hd_inflate_end_headers(&self._ctx)
|
||||||
return res
|
return res
|
||||||
|
|
||||||
cdef _strerror(int liberror_code):
|
cdef _strerror(int liberror_code):
|
||||||
|
|
Loading…
Reference in New Issue