mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-24 13:46:43 +00:00
9 lines
143 B
Go
9 lines
143 B
Go
package common
|
|
|
|
import (
|
|
)
|
|
|
|
func MaxOpenFileLimit() int {
|
|
// From https://msdn.microsoft.com/en-us/library/kdfaxaay.aspx
|
|
return 512
|
|
}
|