aboutsummaryrefslogtreecommitdiff
path: root/reuseport
diff options
context:
space:
mode:
authorGravatar Aliaksandr Valialkin <valyala@gmail.com> 2015-11-23 14:22:30 +0200
committerGravatar Aliaksandr Valialkin <valyala@gmail.com> 2015-11-23 14:22:30 +0200
commite8afd90adcf665f8081344f712ef240054021bae (patch)
tree3bbbe145d76adc38e439447feb4ac4cb779d38da /reuseport
parentMoved ErrKeepaliveTimeout to ServeConn errors section (diff)
downloadfasthttp-e8afd90adcf665f8081344f712ef240054021bae.tar.gz
fasthttp-e8afd90adcf665f8081344f712ef240054021bae.tar.bz2
fasthttp-e8afd90adcf665f8081344f712ef240054021bae.zip
Added missing package name to reuseport
Diffstat (limited to 'reuseport')
-rw-r--r--reuseport/reuseport.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/reuseport/reuseport.go b/reuseport/reuseport.go
index 099f013..ee33f7d 100644
--- a/reuseport/reuseport.go
+++ b/reuseport/reuseport.go
@@ -1,4 +1,4 @@
-// Package provides TCP net.Listener with SO_REUSEPORT support.
+// Package reuseport provides TCP net.Listener with SO_REUSEPORT support.
//
// SO_REUSEPORT allows linear scaling server performance on multi-CPU servers.
// See https://www.nginx.com/blog/socket-sharding-nginx-release-1-9-1/ for more details :)