Categorygithub.com/hashicorp/yamux
modulepackage
0.1.2
Repository: https://github.com/hashicorp/yamux.git
Documentation: pkg.go.dev

# README

Yamux

Yamux (Yet another Multiplexer) is a multiplexing library for Golang. It relies on an underlying connection to provide reliability and ordering, such as TCP or Unix domain sockets, and provides stream-oriented multiplexing. It is inspired by SPDY but is not interoperable with it.

Yamux features include:

  • Bi-directional streams
    • Streams can be opened by either client or server
    • Useful for NAT traversal
    • Server-side push support
  • Flow control
    • Avoid starvation
    • Back-pressure to prevent overwhelming a receiver
  • Keep Alives
    • Enables persistent connections over a load balancer
  • Efficient
    • Enables thousands of logical streams with low overhead

Documentation

For complete documentation, see the associated Godoc.

Specification

The full specification for Yamux is provided in the spec.md file. It can be used as a guide to implementors of interoperable libraries.

Usage

Using Yamux is remarkably simple:


func client() {
    // Get a TCP connection
    conn, err := net.Dial(...)
    if err != nil {
        panic(err)
    }

    // Setup client side of yamux
    session, err := yamux.Client(conn, nil)
    if err != nil {
        panic(err)
    }

    // Open a new stream
    stream, err := session.Open()
    if err != nil {
        panic(err)
    }

    // Stream implements net.Conn
    stream.Write([]byte("ping"))
}

func server() {
    // Accept a TCP connection
    conn, err := listener.Accept()
    if err != nil {
        panic(err)
    }

    // Setup server side of yamux
    session, err := yamux.Server(conn, nil)
    if err != nil {
        panic(err)
    }

    // Accept a stream
    stream, err := session.Accept()
    if err != nil {
        panic(err)
    }

    // Listen for a message
    buf := make([]byte, 4)
    stream.Read(buf)
}

# Functions

Client is used to initialize a new client-side connection.
DefaultConfig is used to return a default configuration.
Server is used to initialize a new server-side connection.
VerifyConfig is used to verify the sanity of configuration.

# Variables

ErrConnectionReset is sent if a stream is reset.
ErrConnectionWriteTimeout indicates that we hit the "safety valve" timeout writing to the underlying stream connection.
ErrDuplicateStream is used if a duplicate stream is opened inbound.
ErrInvalidMsgType means we received a frame with an invalid message type.
ErrInvalidVersion means we received a frame with an invalid version.
ErrKeepAliveTimeout is sent if a missed keepalive caused the stream close.
ErrReceiveWindowExceeded indicates the window was exceeded.
ErrRemoteGoAway is used when we get a go away from the other side.
ErrSessionShutdown is used if there is a shutdown during an operation.
ErrStreamClosed is returned when using a closed stream.
ErrStreamsExhausted is returned if we have no more stream ids to issue.
ErrTimeout is used when we reach an IO deadline.
ErrUnexpectedFlag is set when we get an unexpected flag.

# Structs

Config is used to tune the Yamux session.
NetError implements net.Error.
Session is used to wrap a reliable ordered connection and to multiplex it into multiple streams.
Stream is used to represent a logical stream within a session.

# Interfaces

Logger is a abstract of *log.Logger.