2021-07-02 15:22:02 +02:00
|
|
|
// Code generated by go generate; DO NOT EDIT.
|
2021-09-28 18:27:28 +02:00
|
|
|
// Generated: 2021-09-28 18:13:54.317744 +0200 CEST m=+0.409422292
|
2021-07-02 15:22:02 +02:00
|
|
|
|
2021-09-28 12:42:01 +02:00
|
|
|
package netxlite
|
2021-06-23 11:32:53 +02:00
|
|
|
|
|
|
|
import "golang.org/x/sys/windows"
|
|
|
|
|
|
|
|
const (
|
2021-09-28 18:27:28 +02:00
|
|
|
ECONNREFUSED = windows.WSAECONNREFUSED
|
|
|
|
ECONNRESET = windows.WSAECONNRESET
|
|
|
|
EHOSTUNREACH = windows.WSAEHOSTUNREACH
|
|
|
|
ETIMEDOUT = windows.WSAETIMEDOUT
|
|
|
|
EAFNOSUPPORT = windows.WSAEAFNOSUPPORT
|
|
|
|
EADDRINUSE = windows.WSAEADDRINUSE
|
|
|
|
EADDRNOTAVAIL = windows.WSAEADDRNOTAVAIL
|
|
|
|
EISCONN = windows.WSAEISCONN
|
|
|
|
EFAULT = windows.WSAEFAULT
|
|
|
|
EBADF = windows.WSAEBADF
|
|
|
|
ECONNABORTED = windows.WSAECONNABORTED
|
|
|
|
EALREADY = windows.WSAEALREADY
|
|
|
|
EDESTADDRREQ = windows.WSAEDESTADDRREQ
|
|
|
|
EINTR = windows.WSAEINTR
|
|
|
|
EINVAL = windows.WSAEINVAL
|
|
|
|
EMSGSIZE = windows.WSAEMSGSIZE
|
|
|
|
ENETDOWN = windows.WSAENETDOWN
|
|
|
|
ENETRESET = windows.WSAENETRESET
|
|
|
|
ENETUNREACH = windows.WSAENETUNREACH
|
|
|
|
ENOBUFS = windows.WSAENOBUFS
|
|
|
|
ENOPROTOOPT = windows.WSAENOPROTOOPT
|
|
|
|
ENOTSOCK = windows.WSAENOTSOCK
|
|
|
|
ENOTCONN = windows.WSAENOTCONN
|
|
|
|
EWOULDBLOCK = windows.WSAEWOULDBLOCK
|
|
|
|
EACCES = windows.WSAEACCES
|
|
|
|
EPROTONOSUPPORT = windows.WSAEPROTONOSUPPORT
|
|
|
|
EPROTOTYPE = windows.WSAEPROTOTYPE
|
2021-06-23 11:32:53 +02:00
|
|
|
)
|