mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 18:13:42 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			73 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
//go:build windows
 | 
						|
 | 
						|
// Code generated by 'go generate' using "github.com/Microsoft/go-winio/tools/mkwinsyscall"; DO NOT EDIT.
 | 
						|
 | 
						|
package socket
 | 
						|
 | 
						|
import (
 | 
						|
	"syscall"
 | 
						|
	"unsafe"
 | 
						|
 | 
						|
	"golang.org/x/sys/windows"
 | 
						|
)
 | 
						|
 | 
						|
var _ unsafe.Pointer
 | 
						|
 | 
						|
// Do the interface allocations only once for common
 | 
						|
// 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
 | 
						|
}
 | 
						|
 | 
						|
var (
 | 
						|
	modws2_32 = windows.NewLazySystemDLL("ws2_32.dll")
 | 
						|
 | 
						|
	procbind        = modws2_32.NewProc("bind")
 | 
						|
	procgetpeername = modws2_32.NewProc("getpeername")
 | 
						|
	procgetsockname = modws2_32.NewProc("getsockname")
 | 
						|
)
 | 
						|
 | 
						|
func bind(s windows.Handle, name unsafe.Pointer, namelen int32) (err error) {
 | 
						|
	r1, _, e1 := syscall.Syscall(procbind.Addr(), 3, uintptr(s), uintptr(name), uintptr(namelen))
 | 
						|
	if r1 == socketError {
 | 
						|
		err = errnoErr(e1)
 | 
						|
	}
 | 
						|
	return
 | 
						|
}
 | 
						|
 | 
						|
func getpeername(s windows.Handle, name unsafe.Pointer, namelen *int32) (err error) {
 | 
						|
	r1, _, e1 := syscall.Syscall(procgetpeername.Addr(), 3, uintptr(s), uintptr(name), uintptr(unsafe.Pointer(namelen)))
 | 
						|
	if r1 == socketError {
 | 
						|
		err = errnoErr(e1)
 | 
						|
	}
 | 
						|
	return
 | 
						|
}
 | 
						|
 | 
						|
func getsockname(s windows.Handle, name unsafe.Pointer, namelen *int32) (err error) {
 | 
						|
	r1, _, e1 := syscall.Syscall(procgetsockname.Addr(), 3, uintptr(s), uintptr(name), uintptr(unsafe.Pointer(namelen)))
 | 
						|
	if r1 == socketError {
 | 
						|
		err = errnoErr(e1)
 | 
						|
	}
 | 
						|
	return
 | 
						|
}
 |