type net.UnixListener
17 uses
net (current package)
file_unix.go#L98: return &UnixListener{fd: fd, path: laddr.Name, unlink: false}, nil
unixsock.go#L220: type UnixListener struct {
unixsock.go#L227: func (ln *UnixListener) ok() bool { return ln != nil && ln.fd != nil }
unixsock.go#L234: func (l *UnixListener) SyscallConn() (syscall.RawConn, error) {
unixsock.go#L243: func (l *UnixListener) AcceptUnix() (*UnixConn, error) {
unixsock.go#L256: func (l *UnixListener) Accept() (Conn, error) {
unixsock.go#L269: func (l *UnixListener) Close() error {
unixsock.go#L282: func (l *UnixListener) Addr() Addr { return l.fd.laddr }
unixsock.go#L286: func (l *UnixListener) SetDeadline(t time.Time) error {
unixsock.go#L303: func (l *UnixListener) File() (f *os.File, err error) {
unixsock.go#L317: func ListenUnix(network string, laddr *UnixAddr) (*UnixListener, error) {
unixsock_posix.go#L171: func (ln *UnixListener) accept() (*UnixConn, error) {
unixsock_posix.go#L179: func (ln *UnixListener) close() error {
unixsock_posix.go#L199: func (ln *UnixListener) file() (*os.File, error) {
unixsock_posix.go#L215: func (l *UnixListener) SetUnlinkOnClose(unlink bool) {
unixsock_posix.go#L219: func (sl *sysListener) listenUnix(ctx context.Context, laddr *UnixAddr) (*UnixListener, error) {
unixsock_posix.go#L230: return &UnixListener{fd: fd, path: fd.laddr.String(), unlink: true}, nil
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |