greuse icon indicating copy to clipboard operation
greuse copied to clipboard

Package greuse provides Listen and Dial functions that set socket options in order to be able to reuse ports. You should only use this package if you know what SO_REUSEADDR and SO_REUSEPORT are.

Results 1 greuse issues
Sort by recently updated
recently updated
newest added

Compiler: go version go1.24.5 linux/amd64 OS: Ubuntu 24.04 Kernel: 6.8.0-63-generic Snippet: ```go package main import ( "net" "github.com/gogf/greuse" ) func main() { dialer := net.Dialer{ Control: greuse.Control, } dialer.Dial("unix", "/tmp/1.sock")...