Documentation ¶
Overview ¶
Package hpack implements HPACK, a compression format for efficiently representing HTTP header fields in the context of HTTP/2.
See http://tools.ietf.org/html/draft-ietf-httpbis-header-compression-09
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AppendHuffmanString ¶
AppendHuffmanString appends s, as encoded in Huffman codes, to dst and returns the extended buffer.
func HuffmanDecode ¶
HuffmanDecode decodes the string in v and writes the expanded result to w, returning the number of bytes written to w and the Write call's return value. At most one Write call is made.
func HuffmanEncodeLength ¶
HuffmanEncodeLength returns the number of bytes required to encode s in Huffman codes. The result is round up to byte boundary.
Types ¶
type Decoder ¶
type Decoder struct {
// contains filtered or unexported fields
}
A Decoder is the decoding context for incremental processing of header blocks.
func NewDecoder ¶
func NewDecoder(maxSize uint32, emitFunc func(f HeaderField)) *Decoder
func (*Decoder) DecodeFull ¶
func (d *Decoder) DecodeFull(p []byte) ([]HeaderField, error)
Decode decodes an entire block.
TODO: remove this method and make it incremental later? This is easier for debugging now.
func (*Decoder) SetAllowedMaxDynamicTableSize ¶
SetAllowedMaxDynamicTableSize sets the upper bound that the encoded stream (via dynamic table size updates) may set the maximum size to.
func (*Decoder) SetMaxDynamicTableSize ¶
type DecodingError ¶
type DecodingError struct {
Err error
}
A DecodingError is something the spec defines as a decoding error.
func (DecodingError) Error ¶
func (de DecodingError) Error() string
type Encoder ¶
type Encoder struct {
// contains filtered or unexported fields
}
func NewEncoder ¶
NewEncoder returns a new Encoder which performs HPACK encoding. An encoded data is written to w.
func (*Encoder) SetMaxDynamicTableSize ¶
SetMaxDynamicTableSize changes the dynamic header table size to v. The actual size is bounded by the value passed to SetMaxDynamicTableSizeLimit.
func (*Encoder) SetMaxDynamicTableSizeLimit ¶
SetMaxDynamicTableSizeLimit changes the maximum value that can be specified in SetMaxDynamicTableSize to v. By default, it is set to 4096, which is the same size of the default dynamic header table size described in HPACK specification. If the current maximum dynamic header table size is strictly greater than v, "Header Table Size Update" will be done in the next WriteField call and the maximum dynamic header table size is truncated to v.
func (*Encoder) WriteField ¶
func (e *Encoder) WriteField(f HeaderField) error
WriteField encodes f into a single Write to e's underlying Writer. This function may also produce bytes for "Header Table Size Update" if necessary. If produced, it is done before encoding f.
type HeaderField ¶
type HeaderField struct {
Name, Value string
// Sensitive means that this header field should never be
// indexed.
Sensitive bool
}
A HeaderField is a name-value pair. Both the name and value are treated as opaque sequences of octets.
type InvalidIndexError ¶
type InvalidIndexError int
An InvalidIndexError is returned when an encoder references a table entry before the static table or after the end of the dynamic table.
func (InvalidIndexError) Error ¶
func (e InvalidIndexError) Error() string