c2047754c3
Compiler changes: * Change map assignment to use mapassign and assign value directly. * Change string iteration to use decoderune, faster for ASCII strings. * Change makeslice to take int, and use makeslice64 for larger values. * Add new noverflow field to hmap struct used for maps. Unresolved problems, to be fixed later: * Commented out test in go/types/sizes_test.go that doesn't compile. * Commented out reflect.TestStructOf test for padding after zero-sized field. Reviewed-on: https://go-review.googlesource.com/35231 gotools/: Updates for Go 1.8rc1. * Makefile.am (go_cmd_go_files): Add bug.go. (s-zdefaultcc): Write defaultPkgConfig. * Makefile.in: Rebuild. From-SVN: r244456
32 lines
644 B
Go
32 lines
644 B
Go
// Copyright 2009 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package net
|
|
|
|
import "syscall"
|
|
|
|
func maxListenerBacklog() int {
|
|
fd, err := open("/proc/sys/net/core/somaxconn")
|
|
if err != nil {
|
|
return syscall.SOMAXCONN
|
|
}
|
|
defer fd.close()
|
|
l, ok := fd.readLine()
|
|
if !ok {
|
|
return syscall.SOMAXCONN
|
|
}
|
|
f := getFields(l)
|
|
n, _, ok := dtoi(f[0])
|
|
if n == 0 || !ok {
|
|
return syscall.SOMAXCONN
|
|
}
|
|
// Linux stores the backlog in a uint16.
|
|
// Truncate number to avoid wrapping.
|
|
// See issue 5030.
|
|
if n > 1<<16-1 {
|
|
n = 1<<16 - 1
|
|
}
|
|
return n
|
|
}
|