minio/vendor/github.com/valyala/tcplisten
Harshavardhana 50a817e3d3 Use new listener which implements enhanced tcp features (#6289)
This package provide customizable TCP net.Listener with various
performance-related options:

 * SO_REUSEPORT. This option allows linear scaling server performance
   on multi-CPU servers.
   See https://www.nginx.com/blog/socket-sharding-nginx-release-1-9-1/ for details.
 * TCP_DEFER_ACCEPT. This option expects the server reads from the accepted
   connection before writing to them.
 * TCP_FASTOPEN. See https://lwn.net/Articles/508865/ for details.
2018-08-17 18:44:02 -07:00
..
LICENSE Use new listener which implements enhanced tcp features (#6289) 2018-08-17 18:44:02 -07:00
README.md Use new listener which implements enhanced tcp features (#6289) 2018-08-17 18:44:02 -07:00
socket.go Use new listener which implements enhanced tcp features (#6289) 2018-08-17 18:44:02 -07:00
socket_darwin.go Use new listener which implements enhanced tcp features (#6289) 2018-08-17 18:44:02 -07:00
socket_other.go Use new listener which implements enhanced tcp features (#6289) 2018-08-17 18:44:02 -07:00
tcplisten.go Use new listener which implements enhanced tcp features (#6289) 2018-08-17 18:44:02 -07:00
tcplisten_bsd.go Use new listener which implements enhanced tcp features (#6289) 2018-08-17 18:44:02 -07:00
tcplisten_linux.go Use new listener which implements enhanced tcp features (#6289) 2018-08-17 18:44:02 -07:00

Build Status GoDoc Go Report

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

Documentation.

The package is derived from go_reuseport.