Mksocket creates a socket file (a Unix Domain Socket) named path. It returns ErrNotSupported on unsupported systems.
(path string)
| 25 | // Mksocket creates a socket file (a Unix Domain Socket) named path. It returns |
| 26 | // ErrNotSupported on unsupported systems. |
| 27 | func Mksocket(path string) error { |
| 28 | return mksocket(path) |
| 29 | } |
| 30 | |
| 31 | // MaxFD returns the maximum number of open file descriptors allowed. It returns |
| 32 | // ErrNotSupported on unsupported systems. |