mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 04:40:37 +03:00
22 lines
468 B
Go
22 lines
468 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package chat
|
|
|
|
import (
|
|
"syscall"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func getMaximumConcurrentConnectionLimit() uint64 {
|
|
var rLimit syscall.Rlimit
|
|
if err := syscall.Getrlimit(syscall.RLIMIT_NOFILE, &rLimit); err != nil {
|
|
log.Fatalln(err)
|
|
}
|
|
|
|
// Return the limit to 70% of max so the machine doesn't die even if it's maxed out for some reason.
|
|
proposedLimit := uint64(float32(rLimit.Max) * 0.7)
|
|
|
|
return proposedLimit
|
|
}
|