#!/bin/sh # # Written by Dridi Boukelmoune # # This file is in the public domain. # # 4.3. Header Compression and Decompression # # [...] # # A receiving endpoint reassembles the header block by concatenating # its fragments and then decompresses the block to reconstruct the # header list. # # A complete header block consists of either: # # o a single HEADERS or PUSH_PROMISE frame, with the END_HEADERS flag # set, or # # o a HEADERS or PUSH_PROMISE frame with the END_HEADERS flag cleared # and one or more CONTINUATION frames, where the last CONTINUATION # frame has the END_HEADERS flag set. # # [...] . "$(dirname "$0")"/common.sh _ --------------------------------------- _ Decode partial blocks at field boundary _ --------------------------------------- mk_hex <