c6c6f0233d
* Expand the linters and types of warnings to improve consistency and safety * Fail lint workflow if there are errors * golint has been replaced by revive * Hand-pick some of the default exclude list * Ignore error when trying to delete preview gif * Ignore linter warning opening playlist path * Rename user field Id -> ID * A bunch of renames to address linter warnings * Rename ChatClient -> Client per linter suggestion best practice * Rename ChatServer -> Server per linter suggestion best practice * More linter warning fixes * Add missing comments to all exported functions and properties
26 lines
539 B
Go
26 lines
539 B
Go
// nolint:goimports
|
|
// +build !freebsd
|
|
|
|
package chat
|
|
|
|
import (
|
|
"syscall"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func setSystemConcurrentConnectionLimit(limit int64) {
|
|
var rLimit syscall.Rlimit
|
|
if err := syscall.Getrlimit(syscall.RLIMIT_NOFILE, &rLimit); err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
originalLimit := rLimit.Cur
|
|
rLimit.Cur = uint64(limit)
|
|
if err := syscall.Setrlimit(syscall.RLIMIT_NOFILE, &rLimit); err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
log.Traceln("Max process connection count changed from system limit of", originalLimit, "to", limit)
|
|
}
|