Files
2024-11-01 17:43:06 +00:00

12 lines
184 B
Go

//go:build darwin
// +build darwin
package socket
const (
// These operating systems do not support CLOEXEC and NONBLOCK socket
// options.
flagCLOEXEC = false
socketFlags = 0
)