Searched refs:HPackIndexedHdr (Results 1 – 3 of 3) sorted by relevance
/external/scapy/scapy/contrib/ |
D | http2.uts | 479 + HTTP/2 HPackIndexedHdr Test Suite 481 = HTTP/2 Dissect HPackIndexedHdr 484 p = h2.HPackIndexedHdr(b'\x80') 488 p = h2.HPackIndexedHdr(b'\xFF\x00') 492 = HTTP/2 Build HPackIndexedHdr 495 p = h2.HPackIndexedHdr(index=0) 498 p = h2.HPackIndexedHdr(index=127) 751 assert(isinstance(hf.hdrs[0], h2.HPackIndexedHdr)) 771 h2.HPackIndexedHdr(index=8), 797 assert(isinstance(hf.hdrs[0], h2.HPackIndexedHdr)) [all …]
|
D | http2.py | 1338 return HPackIndexedHdr 1350 class HPackIndexedHdr(HPackHeaders): class 2443 if isinstance(hdr, HPackIndexedHdr): 2496 return HPackIndexedHdr(index=idx), len(self[idx])
|
/external/scapy/doc/notebooks/ |
D | HTTP_2_Tuto.ipynb | 1697 …ording to RFC7541. Let's get the index of these headers and put them into HPackIndexedHdr packets." 1705 "get_hdr = h2.HPackIndexedHdr(index = get_hdr_idx)\n", 1710 "https_hdr = h2.HPackIndexedHdr(index = https_hdr_idx)\n", 1848 "host_hdr = h2.HPackIndexedHdr(index=host_hdr_idx)\n", 1880 "z_hdr = h2.HPackIndexedHdr(index = z_hdr_idx)\n", 1974 … the dynamic table and we can use it in this session! Let's use it with an HPackIndexedHdr packet." 1981 "acceptlang_hdr = h2.HPackIndexedHdr(index = acceptlang_hdr_idx)\n", 2013 "accept_hdr = h2.HPackIndexedHdr(index = accept_hdr_idx)\n", 2017 "ua_hdr = h2.HPackIndexedHdr(index = ua_hdr_idx)\n",
|