mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 04:47:40 +03:00
Remove linkname usages of x/sys/windows
This commit is contained in:
parent
e0ee7f49e2
commit
f67a0988a6
1 changed files with 26 additions and 4 deletions
|
@ -15,13 +15,35 @@ import (
|
||||||
"golang.org/x/sys/windows"
|
"golang.org/x/sys/windows"
|
||||||
)
|
)
|
||||||
|
|
||||||
//go:linkname modws2_32 golang.org/x/sys/windows.modws2_32
|
var modws2_32 = windows.NewLazySystemDLL("ws2_32.dll")
|
||||||
var modws2_32 *windows.LazyDLL
|
|
||||||
|
|
||||||
var procrecv = modws2_32.NewProc("recv")
|
var procrecv = modws2_32.NewProc("recv")
|
||||||
|
|
||||||
//go:linkname errnoErr golang.org/x/sys/windows.errnoErr
|
// Do the interface allocations only once for common
|
||||||
func errnoErr(e syscall.Errno) error
|
// Errno values.
|
||||||
|
const (
|
||||||
|
errnoERROR_IO_PENDING = 997
|
||||||
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
errERROR_IO_PENDING error = syscall.Errno(errnoERROR_IO_PENDING)
|
||||||
|
errERROR_EINVAL error = syscall.EINVAL
|
||||||
|
)
|
||||||
|
|
||||||
|
// errnoErr returns common boxed Errno values, to prevent
|
||||||
|
// allocations at runtime.
|
||||||
|
func errnoErr(e syscall.Errno) error {
|
||||||
|
switch e {
|
||||||
|
case 0:
|
||||||
|
return errERROR_EINVAL
|
||||||
|
case errnoERROR_IO_PENDING:
|
||||||
|
return errERROR_IO_PENDING
|
||||||
|
}
|
||||||
|
// TODO: add more here, after collecting data on the common
|
||||||
|
// error values see on Windows. (perhaps when running
|
||||||
|
// all.bat?)
|
||||||
|
return e
|
||||||
|
}
|
||||||
|
|
||||||
func recv(s windows.Handle, buf []byte, flags int32) (n int32, err error) {
|
func recv(s windows.Handle, buf []byte, flags int32) (n int32, err error) {
|
||||||
var _p0 *byte
|
var _p0 *byte
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue