...

Source file src/github.com/mdlayher/socket/typ_none.go

Documentation: github.com/mdlayher/socket

     1  //go:build darwin
     2  // +build darwin
     3  
     4  package socket
     5  
     6  const (
     7  	// These operating systems do not support CLOEXEC and NONBLOCK socket
     8  	// options.
     9  	flagCLOEXEC = false
    10  	socketFlags = 0
    11  )
    12  

View as plain text