/
githubmirror
/
ignition
Обзор
Документация
Войти
/
githubmirror
/
ignition
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
vendor/github.com/mdlayher/socket/accept.go
23 строки
496 B
Brent Baude
providers/applehv: Add Apple Hypervisor
31 окт 2023, 00:53
31 окт 2023, 00:53
5858f58
Код
Авторство
О чём код?
//go:build !dragonfly && !freebsd && !illumos && !linux // +build !dragonfly,!freebsd,!illumos,!linux package socket import ( "fmt" "runtime" "golang.org/x/sys/unix" ) const sysAccept = "accept" // accept wraps accept(2). func accept(fd, flags int) (int, unix.Sockaddr, error) { if flags != 0 { // These operating systems have no support for flags to accept(2). return 0, nil, fmt.Errorf("socket: Conn.Accept flags are ineffective on %s", runtime.GOOS) } return unix.Accept(fd) }