package listenbuffer

import "github.com/docker/docker/pkg/listenbuffer"

Package listenbuffer uses the kernel's listening backlog functionality to queue connections, allowing applications to start listening immediately and handle connections later. This is signaled by closing the activation channel passed to the constructor.

The maximum amount of queued connections depends on the configuration of your kernel (typically called SOMAXXCON) and cannot be configured in Go with the net package. See `src/net/sock_platform.go` in the Go tree or consult your kernel's manual.

activator := make(chan struct{})
buffer, err := NewListenBuffer("tcp", "localhost:4000", activator)
if err != nil {
	panic(err)
}

// will block until activator has been closed or is sent an event
client, err := buffer.Accept()

Somewhere else in your application once it's been booted:

close(activator)

`buffer.Accept()` will return the first client in the kernel listening queue, or continue to block until a client connects or an error occurs.

Index

Functions

func NewListenBuffer

func NewListenBuffer(proto, addr string, activate <-chan struct{}) (net.Listener, error)

NewListenBuffer returns a net.Listener listening on addr with the protocol passed. The channel passed is used to activate the listenbuffer when the caller is ready to accept connections.

Source Files

buffer.go

Version
v1.8.0-rc2
Published
Aug 4, 2015
Platform
js/wasm
Imports
1 packages
Last checked
1 hour ago

Tools for package owners.