tcplisten

package module
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 1, 2021 License: MIT Imports: 8 Imported by: 0

README

Total alerts

Package tcplisten provides customizable TCP net.Listener with various performance-related options:

Documentation.

The package is derived from tcplisten.

Documentation

Overview

Package tcplisten provides customizable TCP net.Listener with various performance-related options:

The package is derived from https://github.com/kavu/go_reuseport .

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Config

type Config struct {
	// ReusePort enables SO_REUSEPORT.
	ReusePort bool

	// DeferAccept enables TCP_DEFER_ACCEPT.
	DeferAccept bool

	// FastOpen enables TCP_FASTOPEN.
	FastOpen bool

	// Backlog is the maximum number of pending TCP connections the listener
	// may queue before passing them to Accept.
	// See man 2 listen for details.
	//
	// By default system-level backlog value is used.
	Backlog int
}

Config provides options to enable on the returned listener.

func (*Config) NewListener

func (cfg *Config) NewListener(network, addr string) (net.Listener, error)

NewListener returns TCP listener with options set in the Config.

The function may be called many times for creating distinct listeners with the given config.

Only tcp4 and tcp6 networks are supported.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL