github.com/anacrolix/torrent@v1.61.0/sockopts.go (about)

     1  //go:build !wasm
     2  
     3  package torrent
     4  
     5  import "syscall"
     6  
     7  var lingerOffVal = syscall.Linger{
     8  	Onoff:  0,
     9  	Linger: 0,
    10  }