Function h2_phdr_to_list() was missing the decoding for the :protocol
header and would emit :UNKNOWN in this case. It's only used in traces
so it's not important. The fix can be backported in all versions.
case H2_PHDR_IDX_SCHM: return ist(":scheme");
case H2_PHDR_IDX_STAT: return ist(":status");
case H2_PHDR_IDX_HOST: return ist("Host");
+ case H2_PHDR_IDX_PROT: return ist(":protocol");
default: return ist(":UNKNOWN");
}
}