Documentation ¶
Index ¶
- Constants
- Variables
- func Handshake(preface bool, bw *bufio.Writer, st *Settings, maxWin int32) error
- func HuffmanDecode(dst, src []byte) []byte
- func HuffmanEncode(dst, src []byte) []byte
- func ReadPreface(br io.Reader) bool
- func ReleaseFrame(fr Frame)
- func ReleaseFrameHeader(fr *FrameHeader)
- func ReleaseHPACK(hpack *HPACK)
- func ReleaseHeaderField(hf *HeaderField)
- func ToLower(b []byte) []byte
- func WritePreface(wr io.Writer) error
- type Client
- type ClientAdaptor
- type Continuation
- func (c *Continuation) AppendHeader(b []byte)
- func (c *Continuation) CopyTo(cc *Continuation)
- func (c *Continuation) Deserialize(fr *FrameHeader) error
- func (c *Continuation) EndHeaders() bool
- func (c *Continuation) Headers() []byte
- func (c *Continuation) Reset()
- func (c *Continuation) Serialize(fr *FrameHeader)
- func (c *Continuation) SetEndHeaders(value bool)
- func (c *Continuation) SetHeader(b []byte)
- func (c *Continuation) Type() FrameType
- func (c *Continuation) Write(b []byte) (int, error)
- type Data
- func (data *Data) Append(b []byte)
- func (data *Data) CopyTo(d *Data)
- func (data *Data) Data() []byte
- func (data *Data) Deserialize(fr *FrameHeader) (err error)
- func (data *Data) EndStream() bool
- func (data *Data) Len() int
- func (data *Data) Padding() bool
- func (data *Data) Reset()
- func (data *Data) Serialize(fr *FrameHeader)
- func (data *Data) SetData(b []byte)
- func (data *Data) SetEndStream(value bool)
- func (data *Data) SetPadding(value bool)
- func (data *Data) Type() FrameType
- func (data *Data) Write(b []byte) (int, error)
- type Error
- type ErrorCode
- type Frame
- type FrameFlags
- type FrameHeader
- func (frh *FrameHeader) Body() Frame
- func (frh *FrameHeader) Flags() FrameFlags
- func (frh *FrameHeader) Len() int
- func (frh *FrameHeader) MaxLen() uint32
- func (frh *FrameHeader) ReadFrom(br *bufio.Reader) (int64, error)
- func (frh *FrameHeader) ReadFromLimitPayload(br *bufio.Reader, max uint32) (int64, error)
- func (frh *FrameHeader) Reset()
- func (frh *FrameHeader) SetBody(fr Frame)
- func (frh *FrameHeader) SetFlags(flags FrameFlags)
- func (frh *FrameHeader) SetStream(stream uint32)
- func (frh *FrameHeader) Stream() uint32
- func (frh *FrameHeader) Type() FrameType
- func (frh *FrameHeader) WriteTo(w *bufio.Writer) (wb int64, err error)
- type FrameType
- type FrameWithHeaders
- type GoAway
- func (ga *GoAway) Code() ErrorCode
- func (ga *GoAway) CopyTo(ga2 *GoAway)
- func (ga *GoAway) Data() []byte
- func (ga *GoAway) Deserialize(fr *FrameHeader) (err error)
- func (ga *GoAway) Reset()
- func (ga *GoAway) Serialize(fr *FrameHeader)
- func (ga *GoAway) SetCode(code ErrorCode)
- func (ga *GoAway) SetData(b []byte)
- func (ga *GoAway) SetStream(stream uint32)
- func (ga *GoAway) Stream() uint32
- func (ga *GoAway) Type() FrameType
- type HPACK
- func (hpack *HPACK) AppendHeader(dst []byte, hf *HeaderField, store bool) []byte
- func (hpack *HPACK) AppendHeaderField(h *Headers, hf *HeaderField, store bool)
- func (hpack *HPACK) DynamicSize() (n int)
- func (hpack *HPACK) Next(hf *HeaderField, b []byte) ([]byte, error)
- func (hpack *HPACK) Reset()
- func (hpack *HPACK) SetMaxTableSize(size int)
- type HeaderField
- func (hf *HeaderField) AppendBytes(dst []byte) []byte
- func (hf *HeaderField) CopyTo(hf2 *HeaderField)
- func (hf *HeaderField) Empty() bool
- func (hf *HeaderField) IsPseudo() bool
- func (hf *HeaderField) IsSensible() bool
- func (hf *HeaderField) Key() string
- func (hf *HeaderField) KeyBytes() []byte
- func (hf *HeaderField) Reset()
- func (hf *HeaderField) Set(k, v string)
- func (hf *HeaderField) SetBytes(k, v []byte)
- func (hf *HeaderField) SetKey(key string)
- func (hf *HeaderField) SetKeyBytes(key []byte)
- func (hf *HeaderField) SetValue(value string)
- func (hf *HeaderField) SetValueBytes(value []byte)
- func (hf *HeaderField) Size() int
- func (hf *HeaderField) Value() string
- func (hf *HeaderField) ValueBytes() []byte
- type Headers
- func (h *Headers) AppendHeaderField(hp *HPACK, hf *HeaderField, store bool)
- func (h *Headers) AppendRawHeaders(b []byte)
- func (h *Headers) CopyTo(h2 *Headers)
- func (h *Headers) Deserialize(frh *FrameHeader) (err error)
- func (h *Headers) EndHeaders() bool
- func (h *Headers) EndStream() bool
- func (h *Headers) Headers() []byte
- func (h *Headers) Padding() bool
- func (h *Headers) Reset()
- func (h *Headers) Serialize(frh *FrameHeader)
- func (h *Headers) SetEndHeaders(value bool)
- func (h *Headers) SetEndStream(value bool)
- func (h *Headers) SetHeaders(b []byte)
- func (h *Headers) SetPadding(value bool)
- func (h *Headers) SetStream(stream uint32)
- func (h *Headers) SetWeight(w byte)
- func (h *Headers) Stream() uint32
- func (h *Headers) Type() FrameType
- func (h *Headers) Weight() byte
- type Ping
- func (p *Ping) CopyTo(other *Ping)
- func (p *Ping) Data() []byte
- func (p *Ping) DataAsTime() time.Time
- func (p *Ping) Deserialize(frh *FrameHeader) error
- func (p *Ping) IsAck() bool
- func (p *Ping) Reset()
- func (p *Ping) Serialize(fr *FrameHeader)
- func (p *Ping) SetCurrentTime()
- func (p *Ping) SetData(b []byte)
- func (p *Ping) Type() FrameType
- func (p *Ping) Write(b []byte) (n int, err error)
- type Priority
- func (pry *Priority) CopyTo(p *Priority)
- func (pry *Priority) Deserialize(fr *FrameHeader) (err error)
- func (pry *Priority) Reset()
- func (pry *Priority) Serialize(fr *FrameHeader)
- func (pry *Priority) SetStream(stream uint32)
- func (pry *Priority) SetWeight(w byte)
- func (pry *Priority) Stream() uint32
- func (pry *Priority) Type() FrameType
- func (pry *Priority) Weight() byte
- type PushPromise
- type RstStream
- func (rst *RstStream) Code() ErrorCode
- func (rst *RstStream) CopyTo(r *RstStream)
- func (rst *RstStream) Deserialize(fr *FrameHeader) error
- func (rst *RstStream) Error() error
- func (rst *RstStream) Reset()
- func (rst *RstStream) Serialize(fr *FrameHeader)
- func (rst *RstStream) SetCode(code ErrorCode)
- func (rst *RstStream) Type() FrameType
- type Server
- type ServerAdaptor
- type Settings
- func (st *Settings) Clear()
- func (st *Settings) CopyTo(st2 *Settings)
- func (st *Settings) Deserialize(fr *FrameHeader) error
- func (st *Settings) Encode()
- func (st *Settings) HeaderTableSize() uint32
- func (st *Settings) IsAck() bool
- func (st *Settings) MaxConcurrentStreams() uint32
- func (st *Settings) MaxFrameSize() uint32
- func (st *Settings) MaxHeaderListSize() uint32
- func (st *Settings) MaxWindowSize() uint32
- func (st *Settings) Push() bool
- func (st *Settings) Read(d []byte)
- func (st *Settings) Reset()
- func (st *Settings) Serialize(fr *FrameHeader)
- func (st *Settings) SetAck(ack bool)
- func (st *Settings) SetHeaderTableSize(size uint32)
- func (st *Settings) SetMaxConcurrentStreams(streams uint32)
- func (st *Settings) SetMaxFrameSize(size uint32)
- func (st *Settings) SetMaxHeaderListSize(size uint32)
- func (st *Settings) SetMaxWindowSize(size uint32)
- func (st *Settings) SetPush(value bool)
- func (st *Settings) Type() FrameType
- type Stream
- func (s *Stream) Data() interface{}
- func (s *Stream) ID() uint32
- func (s *Stream) IncrWindow(win int32)
- func (s *Stream) SetData(data interface{})
- func (s *Stream) SetID(id uint32)
- func (s *Stream) SetState(state StreamState)
- func (s *Stream) SetWindow(win int32)
- func (s *Stream) State() StreamState
- func (s *Stream) Window() int32
- type StreamState
- type WindowUpdate
- func (wu *WindowUpdate) CopyTo(w *WindowUpdate)
- func (wu *WindowUpdate) Deserialize(fr *FrameHeader) error
- func (wu *WindowUpdate) Increment() int
- func (wu *WindowUpdate) Reset()
- func (wu *WindowUpdate) Serialize(fr *FrameHeader)
- func (wu *WindowUpdate) SetIncrement(increment int)
- func (wu *WindowUpdate) Type() FrameType
Constants ¶
const ( NoError ErrorCode = 0x0 ProtocolError = 0x1 InternalError = 0x2 FlowControlError = 0x3 SettingsTimeoutError = 0x4 StreamClosedError = 0x5 FrameSizeError = 0x6 RefusedStreamError = 0x7 CancelError = 0x8 CompressionError = 0x9 ConnectionError = 0xa EnhanceYourCalm = 0xb InadequateSecurity = 0xc HTTP11Required = 0xd )
const ( // FrameSettings string values (https://httpwg.org/specs/rfc7540.html#SettingValues) HeaderTableSize uint16 = 0x1 EnablePush uint16 = 0x2 MaxConcurrentStreams uint16 = 0x3 MaxWindowSize uint16 = 0x4 MaxFrameSize uint16 = 0x5 MaxHeaderListSize uint16 = 0x6 )
const ( // H2TLSProto is the string used in ALPN-TLS negotiation. H2TLSProto = "h2" // H2Clean is the string used in HTTP headers by the client to upgrade the connection. H2Clean = "h2c" )
Variables ¶
var ( // This error codes must be used with FrameGoAway ErrUnknowFrameType = NewError( ProtocolError, "unknown frame type") ErrMissingBytes = NewError( ProtocolError, "missing payload bytes. Need more") ErrPayloadExceeds = NewError( ProtocolError, "FrameHeader payload exceeds the negotiated maximum size") )
var ( StringPath = []byte(":path") StringStatus = []byte(":status") StringAuthority = []byte(":authority") StringScheme = []byte(":scheme") StringMethod = []byte(":method") StringServer = []byte("server") StringContentLength = []byte("content-length") StringContentType = []byte("content-type") StringUserAgent = []byte("user-agent") StringGzip = []byte("gzip") StringGET = []byte("GET") StringHEAD = []byte("HEAD") StringPOST = []byte("POST") StringHTTP2 = []byte("HTTP/2") )
var ErrFieldNotFound = NewError( FlowControlError, "field not found in neither table")
var (
ErrServerSupport = errors.New("server doesn't support HTTP/2")
)
Functions ¶
func HuffmanDecode ¶
HuffmanDecode decodes src into dst using Huffman codes.
src and dst must not point to the same address.
func HuffmanEncode ¶
HuffmanEncode encodes src into dst using Huffman algorithm.
src and dst must not point to the same address.
func ReadPreface ¶
ReadPreface reads the connection initialisation preface.
func ReleaseFrame ¶
func ReleaseFrame(fr Frame)
func ReleaseFrameHeader ¶
func ReleaseFrameHeader(fr *FrameHeader)
ReleaseFrameHeader reset and puts fr to the pool.
func ReleaseHeaderField ¶
func ReleaseHeaderField(hf *HeaderField)
ReleaseHeaderField puts HeaderField to the pool.
func WritePreface ¶
WritePreface writes HTTP/2 preface to the wr.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client ...
func (*Client) CanOpenStream ¶ added in v0.0.3
func (*Client) Register ¶
func (c *Client) Register(adaptr ClientAdaptor)
type ClientAdaptor ¶ added in v0.0.2
type ClientAdaptor interface { // Write ... Write(uint32, *HPACK, chan<- *FrameHeader) // Read ... Read(fr *FrameHeader, dec *HPACK) error // AppendBody ... AppendBody(body []byte) // Error ... Error(err error) // Close ... Close() }
ClientAdaptor ...
type Continuation ¶
type Continuation struct {
// contains filtered or unexported fields
}
Continuation represents the Continuation frame.
Continuation frame can carry raw headers and/or the EndHeaders flag.
https://tools.ietf.org/html/rfc7540#section-6.10
func (*Continuation) AppendHeader ¶
func (c *Continuation) AppendHeader(b []byte)
AppendHeader appends the contents of `b` into the header.
func (*Continuation) CopyTo ¶
func (c *Continuation) CopyTo(cc *Continuation)
func (*Continuation) Deserialize ¶
func (c *Continuation) Deserialize(fr *FrameHeader) error
func (*Continuation) EndHeaders ¶
func (c *Continuation) EndHeaders() bool
func (*Continuation) Headers ¶
func (c *Continuation) Headers() []byte
Headers returns Header bytes.
func (*Continuation) Serialize ¶
func (c *Continuation) Serialize(fr *FrameHeader)
func (*Continuation) SetEndHeaders ¶
func (c *Continuation) SetEndHeaders(value bool)
SetEndHeaders ...
func (*Continuation) Type ¶
func (c *Continuation) Type() FrameType
type Data ¶
type Data struct {
// contains filtered or unexported fields
}
Data defines a FrameData
Data frames can have the following flags: END_STREAM PADDED
https://tools.ietf.org/html/rfc7540#section-6.1
func (*Data) Deserialize ¶
func (data *Data) Deserialize(fr *FrameHeader) (err error)
func (*Data) Serialize ¶
func (data *Data) Serialize(fr *FrameHeader)
func (*Data) SetPadding ¶
SetPadding sets hasPaddingding to the data if true. If false the data won't be hasPaddingded.
type ErrorCode ¶
type ErrorCode uint32
ErrorCode defines the HTTP/2 error codes:
Error codes are defined here http://httpwg.org/specs/rfc7540.html#ErrorCodes
Errors must be uint32 because of FrameReset
type Frame ¶
type Frame interface { Type() FrameType Reset() Serialize(*FrameHeader) Deserialize(*FrameHeader) error }
func AcquireFrame ¶
type FrameFlags ¶
type FrameFlags int8
const ( // FrameHeader default size // http://httpwg.org/specs/rfc7540.html#FrameHeader DefaultFrameSize = 9 // Frame Flag (described along the frame types) // More flags have been ignored due to redundancy FlagAck FrameFlags = 0x1 FlagEndStream FrameFlags = 0x1 FlagEndHeaders FrameFlags = 0x4 FlagPadded FrameFlags = 0x8 FlagPriority FrameFlags = 0x20 )
func (FrameFlags) Add ¶
func (flags FrameFlags) Add(f FrameFlags) FrameFlags
Add adds a flag to frame flags.
func (FrameFlags) Del ¶
func (flags FrameFlags) Del(f FrameFlags) FrameFlags
Del deletes f from frame flags
func (FrameFlags) Has ¶
func (flags FrameFlags) Has(f FrameFlags) bool
Has returns if `f` is in the frame flags or not.
type FrameHeader ¶
type FrameHeader struct {
// contains filtered or unexported fields
}
FrameHeader is frame representation of HTTP2 protocol
Use AcquireFrameHeader instead of creating FrameHeader every time if you are going to use FrameHeader as your own and ReleaseFrameHeader to delete the FrameHeader
FrameHeader instance MUST NOT be used from different goroutines.
https://tools.ietf.org/html/rfc7540#section-4.1
func AcquireFrameHeader ¶
func AcquireFrameHeader() *FrameHeader
AcquireFrameHeader gets a FrameHeader from pool.
func (*FrameHeader) MaxLen ¶
func (frh *FrameHeader) MaxLen() uint32
MaxLen returns max negotiated payload length.
func (*FrameHeader) ReadFrom ¶
func (frh *FrameHeader) ReadFrom(br *bufio.Reader) (int64, error)
ReadFrom reads frame from Reader.
This function returns read bytes and/or error.
Unlike io.ReaderFrom this method does not read until io.EOF
func (*FrameHeader) ReadFromLimitPayload ¶
ReadFromLimitPayload reads frame from reader limiting the payload.
func (*FrameHeader) SetBody ¶
func (frh *FrameHeader) SetBody(fr Frame)
func (*FrameHeader) SetFlags ¶
func (frh *FrameHeader) SetFlags(flags FrameFlags)
func (*FrameHeader) SetStream ¶
func (frh *FrameHeader) SetStream(stream uint32)
SetStream sets the stream id on the current frame.
This function DOESN'T delete the reserved bit (first bit) in order to support personalized implementations of the protocol.
func (*FrameHeader) Stream ¶
func (frh *FrameHeader) Stream() uint32
Stream returns the stream id of the current frame.
func (*FrameHeader) Type ¶
func (frh *FrameHeader) Type() FrameType
Type returns the frame type (https://httpwg.org/specs/rfc7540.html#Frame_types)
type FrameType ¶
type FrameType int8
const FrameContinuation FrameType = 0x9
const FrameData FrameType = 0x0
const FrameGoAway FrameType = 0x7
const FrameHeaders FrameType = 0x1
const FramePing FrameType = 0x6
const FramePriority FrameType = 0x2
const FramePushPromise FrameType = 0x5
const FrameResetStream FrameType = 0x3
const FrameSettings FrameType = 0x4
const FrameWindowUpdate FrameType = 0x8
type FrameWithHeaders ¶
type FrameWithHeaders interface {
Headers() []byte
}
type GoAway ¶
type GoAway struct {
// contains filtered or unexported fields
}
GoAway ...
https://tools.ietf.org/html/rfc7540#section-6.8
func (*GoAway) Deserialize ¶
func (ga *GoAway) Deserialize(fr *FrameHeader) (err error)
ReadFrame ...
func (*GoAway) Serialize ¶
func (ga *GoAway) Serialize(fr *FrameHeader)
type HPACK ¶
type HPACK struct { // DisableCompression disables compression for literal header fields. DisableCompression bool // DisableDynamicTable disables the usage of the dynamic table for // the HPACK structure. If this option is true the HPACK won't add any // field to the dynamic table unless it was sended by the peer. // // This field was implemented because in many ways the server could modify // the fields stablished by the client losing performance calculated by client. DisableDynamicTable bool // contains filtered or unexported fields }
HPACK represents header compression methods to encode and decode header fields in HTTP/2.
HPACK is equivalent to a HTTP/1 header.
Use AcquireHPACK to acquire new HPACK structure TODO: HPACK to Headers?
func (*HPACK) AppendHeader ¶
func (hpack *HPACK) AppendHeader(dst []byte, hf *HeaderField, store bool) []byte
AppendHeader appends the content of an encoded HeaderField to dst.
func (*HPACK) AppendHeaderField ¶
func (hpack *HPACK) AppendHeaderField(h *Headers, hf *HeaderField, store bool)
TODO: Change naming
func (*HPACK) DynamicSize ¶
Dynamic size returns the size of the dynamic table. https://tools.ietf.org/html/rfc7541#section-4.1
func (*HPACK) Next ¶
func (hpack *HPACK) Next(hf *HeaderField, b []byte) ([]byte, error)
Next reads and process the content of `b`. If buf contains a valid HTTP/2 header the content will be parsed into `hf`.
This function returns the next byte slice that should be read. `b` must be a valid payload coming from a Header frame.
func (*HPACK) Reset ¶
func (hpack *HPACK) Reset()
Reset deletes and releases all dynamic header fields
func (*HPACK) SetMaxTableSize ¶
SetMaxTableSize sets the maximum dynamic table size.
type HeaderField ¶
type HeaderField struct {
// contains filtered or unexported fields
}
HeaderField represents a field in HPACK tables.
Use AcquireHeaderField to acquire HeaderField.
func AcquireHeaderField ¶
func AcquireHeaderField() *HeaderField
AcquireHeaderField gets HeaderField from the pool.
func (*HeaderField) AppendBytes ¶
func (hf *HeaderField) AppendBytes(dst []byte) []byte
AppendBytes appends header representation of hf to dst and returns the new dst.
func (*HeaderField) CopyTo ¶
func (hf *HeaderField) CopyTo(hf2 *HeaderField)
CopyTo copies hf to hf2
func (*HeaderField) Empty ¶ added in v0.0.5
func (hf *HeaderField) Empty() bool
Empty returns true if `hf` doesn't contain any key nor value.
func (*HeaderField) IsPseudo ¶
func (hf *HeaderField) IsPseudo() bool
IsPseudo returns true if field is pseudo header
func (*HeaderField) IsSensible ¶
func (hf *HeaderField) IsSensible() bool
IsSensible returns if header field have been marked as sensible.
func (*HeaderField) KeyBytes ¶
func (hf *HeaderField) KeyBytes() []byte
KeyBytes returns the key bytes of the field.
func (*HeaderField) Set ¶
func (hf *HeaderField) Set(k, v string)
func (*HeaderField) SetBytes ¶
func (hf *HeaderField) SetBytes(k, v []byte)
func (*HeaderField) SetKey ¶
func (hf *HeaderField) SetKey(key string)
SetKey sets key to the field.
func (*HeaderField) SetKeyBytes ¶
func (hf *HeaderField) SetKeyBytes(key []byte)
SetKeyString sets key to the field.
func (*HeaderField) SetValue ¶
func (hf *HeaderField) SetValue(value string)
SetValue sets value to the field.
func (*HeaderField) SetValueBytes ¶
func (hf *HeaderField) SetValueBytes(value []byte)
SetValueString sets value to the field.
func (*HeaderField) Size ¶
func (hf *HeaderField) Size() int
Size returns the header field size as RFC specifies.
func (*HeaderField) Value ¶
func (hf *HeaderField) Value() string
Value returns the value of the field
func (*HeaderField) ValueBytes ¶
func (hf *HeaderField) ValueBytes() []byte
ValueBytes returns the value bytes of the field.
type Headers ¶
type Headers struct {
// contains filtered or unexported fields
}
Headers defines a FrameHeaders
https://tools.ietf.org/html/rfc7540#section-6.2
func (*Headers) AppendHeaderField ¶
func (h *Headers) AppendHeaderField(hp *HPACK, hf *HeaderField, store bool)
func (*Headers) AppendRawHeaders ¶
AppendRawHeaders appends b to the raw headers.
func (*Headers) Deserialize ¶
func (h *Headers) Deserialize(frh *FrameHeader) (err error)
func (*Headers) Serialize ¶
func (h *Headers) Serialize(frh *FrameHeader)
type Ping ¶
type Ping struct {
// contains filtered or unexported fields
}
Ping ...
https://tools.ietf.org/html/rfc7540#section-6.7
func (*Ping) DataAsTime ¶
func (*Ping) SetCurrentTime ¶
func (p *Ping) SetCurrentTime()
type Priority ¶
type Priority struct {
// contains filtered or unexported fields
}
Priority represents the Priority frame.
https://tools.ietf.org/html/rfc7540#section-6.3
func (*Priority) Deserialize ¶
func (pry *Priority) Deserialize(fr *FrameHeader) (err error)
func (*Priority) Serialize ¶
func (pry *Priority) Serialize(fr *FrameHeader)
type PushPromise ¶
type PushPromise struct {
// contains filtered or unexported fields
}
PushPromise ...
https://tools.ietf.org/html/rfc7540#section-6.6
func (*PushPromise) Deserialize ¶
func (pp *PushPromise) Deserialize(fr *FrameHeader) (err error)
func (*PushPromise) Serialize ¶
func (pp *PushPromise) Serialize(fr *FrameHeader)
func (*PushPromise) SetHeader ¶
func (pp *PushPromise) SetHeader(h []byte)
func (*PushPromise) Type ¶
func (pp *PushPromise) Type() FrameType
type RstStream ¶
type RstStream struct {
// contains filtered or unexported fields
}
RstStream ...
https://tools.ietf.org/html/rfc7540#section-6.4
func (*RstStream) Deserialize ¶
func (rst *RstStream) Deserialize(fr *FrameHeader) error
func (*RstStream) Serialize ¶
func (rst *RstStream) Serialize(fr *FrameHeader)
type Server ¶
type Server struct { Adaptor ServerAdaptor // contains filtered or unexported fields }
type ServerAdaptor ¶
type Settings ¶
type Settings struct {
// contains filtered or unexported fields
}
Settings is the options to establish between endpoints when starting the connection.
This options have been humanize.
func (*Settings) Deserialize ¶
func (st *Settings) Deserialize(fr *FrameHeader) error
func (*Settings) Encode ¶
func (st *Settings) Encode()
Encode encodes settings to be sent through the wire
func (*Settings) HeaderTableSize ¶
HeaderTableSize returns the maximum size of the header compression table used to decode header blocks.
Default value is 4096
func (*Settings) MaxConcurrentStreams ¶
MaxConcurrentStreams returns the maximum number of concurrent Streams that the sender will allow.
Default value is 100. This value does not have max limit.
func (*Settings) MaxFrameSize ¶
MaxFrameSize returns the size of the largest frame Payload that the sender is willing to receive.
Default value is 1 << 14 Maximum value is 1 << 24 - 1
func (*Settings) MaxHeaderListSize ¶
MaxFrameSize returns maximum size of header list.
If this value is 0 indicates that there are no limit.
func (*Settings) MaxWindowSize ¶
MaxWindowSize returns the sender's initial window size for Stream-level flow control.
Default value is 1 << 16 - 1 Maximum value is 1 << 31 - 1
func (*Settings) Serialize ¶
func (st *Settings) Serialize(fr *FrameHeader)
func (*Settings) SetHeaderTableSize ¶
SetHeaderTableSize sets the maximum size of the header compression table used to decode header blocks.
Default value is 4096
func (*Settings) SetMaxConcurrentStreams ¶
SetMaxConcurrentStreams sets the maximum number of concurrent Streams that the sender will allow.
Default value is 100. This value does not have max limit.
func (*Settings) SetMaxFrameSize ¶
SetMaxFrameSize sets the size of the largest frame Payload that the sender is willing to receive.
Default value is 1 << 14 Maximum value is 1 << 24 - 1
func (*Settings) SetMaxHeaderListSize ¶
SetMaxFrameSize sets maximum size of header list.
If this value is 0 indicates that there are no limit.
func (*Settings) SetMaxWindowSize ¶
SetMaxWindowSize sets the sender's initial window size for Stream-level flow control.
Default value is 1 << 16 - 1 Maximum value is 1 << 31 - 1
type Stream ¶
type Stream struct {
// contains filtered or unexported fields
}
func (*Stream) IncrWindow ¶
func (*Stream) SetState ¶
func (s *Stream) SetState(state StreamState)
func (*Stream) State ¶
func (s *Stream) State() StreamState
type StreamState ¶
type StreamState int8
StreamState ...
const ( StreamStateIdle StreamState = iota StreamStateReserved StreamStateOpen StreamStateHalfClosed StreamStateClosed )
func (StreamState) String ¶
func (ss StreamState) String() string
type WindowUpdate ¶
type WindowUpdate struct {
// contains filtered or unexported fields
}
WindowUpdate ...
https://tools.ietf.org/html/rfc7540#section-6.9
func (*WindowUpdate) Deserialize ¶
func (wu *WindowUpdate) Deserialize(fr *FrameHeader) error
func (*WindowUpdate) Serialize ¶
func (wu *WindowUpdate) Serialize(fr *FrameHeader)
func (*WindowUpdate) SetIncrement ¶
func (wu *WindowUpdate) SetIncrement(increment int)
SetIncrement ...
func (*WindowUpdate) Type ¶
func (wu *WindowUpdate) Type() FrameType