Source File
errors_errno.go
Belonging Package
github.com/pion/dtls/v3
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>// SPDX-License-Identifier: MIT//go:build aix || darwin || dragonfly || freebsd || linux || nacl || nacljs || netbsd || openbsd || solaris || windows// +build aix darwin dragonfly freebsd linux nacl nacljs netbsd openbsd solaris windows// For systems having syscall.Errno.// Update build targets by following command:// $ grep -R ECONN $(go env GOROOT)/src/syscall/zerrors_*.go \// | tr "." "_" | cut -d"_" -f"2" | sort | uniqpackage dtlsimport ()func isOpErrorTemporary( *os.SyscallError) bool {return errors.Is(.Err, syscall.ECONNREFUSED)}
![]() |
The pages are generated with Golds v0.8.2. (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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |