Documentation ¶
Index ¶
- Constants
- Variables
- func Append(ctx *context.T, m Message, to []byte) ([]byte, error)
- func FlowID(m interface{}) uint64
- func NewErrInvalidMsg(ctx *context.T, typ byte, size uint64, field uint64, err error) error
- func ParseErrInvalidMessage(err error) (typ byte, size uint64, field uint64, ok bool)
- type AckLameDuck
- type Auth
- type Data
- type EnterLameDuck
- type HealthCheckRequest
- type HealthCheckResponse
- type Message
- type MultiProxyRequest
- type OpenFlow
- type ProxyErrorResponse
- type ProxyResponse
- type ProxyServerRequest
- type Release
- type Setup
- type TearDown
Constants ¶
const ( // CloseFlag, when set on a Data message, indicates that the flow // should be closed after the payload for that message has been // processed. CloseFlag = 1 << iota // DisableEncryptionFlag, when set on a Data message, causes Append // and Read to behave specially. During Append everything but the // Payload is serialized normally, but the Payload is left for the // caller to deal with. Typically the caller will encrypt the // serialized result and send the unencrypted bytes as a raw follow // on message. Read will expect to not find a payload, and the // caller will typically attach it by examining the next message on // the Conn. DisableEncryptionFlag // SideChannelFlag, when set on a OpenFlow message, marks the Flow // as a side channel. This means that the flow will not be counted // towards the "idleness" of the underlying connection. SideChannelFlag )
data flags.
Variables ¶
Functions ¶
func Append ¶
Append serializes the message m and appends it to the given byte slice. The resulting slice is returned, as well as any error that occurs during serialization.
func FlowID ¶ added in v0.1.9
func FlowID(m interface{}) uint64
FlowID returns the id of the flow this message is associated with for message types that are bound to a flow, zero otherwise.
func NewErrInvalidMsg ¶
NewErrInvalidMsg creates an instance ErrInvalidMsg with the specified parameters which can be access by ParseErrInvalidMessage.
func ParseErrInvalidMessage ¶ added in v0.1.10
ParseErrInvalidMessage cracks open the parameter list created by NewErrInvalidMsg with appropriate checking. ok will be false if all of the error parameters are not located.
Types ¶
type AckLameDuck ¶
type AckLameDuck struct{}
AckLameDuck is sent in response to an EnterLameDuck message. After this message is received no more OpenFlow messages should arrive.
type EnterLameDuck ¶
type EnterLameDuck struct{}
EnterLameDuck is sent as notification that the sender is entering lameduck mode. The receiver should stop opening new flows on this connection and respond with an AckLameDuck message.
type HealthCheckRequest ¶
type HealthCheckRequest struct{}
HealthCheckRequest is periodically sent to test the health of a channel.
type HealthCheckResponse ¶
type HealthCheckResponse struct{}
HealthCheckResponse messages are sent in response to HealthCheckRequest messages.
type Message ¶
type Message interface {
// contains filtered or unexported methods
}
Message is implemented by all low-level messages defined by this package.
type MultiProxyRequest ¶
type MultiProxyRequest struct{}
MultiProxyRequest is sent when a proxy wants to accept connections from another proxy.
type OpenFlow ¶
type OpenFlow struct { ID uint64 InitialCounters uint64 BlessingsKey, DischargeKey uint64 Flags uint64 Payload [][]byte }
OpenFlow is sent at the beginning of every new flow, it optionally contains payload.
type ProxyErrorResponse ¶
type ProxyErrorResponse struct {
Error string
}
ProxyErrorResponse is send by a proxy in response to a ProxyServerRequest or MultiProxyRequest if the proxy encountered an error while responding to the request. It should be sent in lieu of a ProxyResponse.
func (*ProxyErrorResponse) String ¶
func (m *ProxyErrorResponse) String() string
type ProxyResponse ¶
ProxyResponse is sent by a proxy in response to a ProxyServerRequest or MultiProxyRequest. It notifies the server of the endpoints it should publish. Or, it notifies a requesting proxy of the endpoints it accepts connections from.
func (*ProxyResponse) String ¶
func (m *ProxyResponse) String() string
type ProxyServerRequest ¶
type ProxyServerRequest struct{}
ProxyServerRequest is sent when a server wants to listen through a proxy.
type Release ¶
Release is sent as flows are read from locally. The counters inform remote writers that there is local buffer space available.
type Setup ¶
type Setup struct { Versions version.RPCVersionRange PeerNaClPublicKey *[32]byte PeerRemoteEndpoint naming.Endpoint PeerLocalEndpoint naming.Endpoint Mtu uint64 // contains filtered or unexported fields }
Setup is the first message over the wire. It negotiates protocol version and encryption options for connection. New fields to Setup must be added in order of creation. i.e. the order of the fields should not be changed.