projectdiscovery / fdmax

Small Helper Library to increase automatically the file descriptors limits for the current process
MIT License
23 stars 5 forks source link
lib

fdmax

Small Helper library that increases automatically the maximum number of file descriptors for the current go program. It can be simply imported as follows:

package main

import (
    "fmt"

    _ "github.com/projectdiscovery/fdmax/autofdmax"
)

func main() {
    fmt.Println("test")
}