Bumps [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) from 5.4.2 to 5.11.0. - [Release notes](https://github.com/go-git/go-git/releases) - [Commits](https://github.com/go-git/go-git/compare/v5.4.2...v5.11.0) --- updated-dependencies: - dependency-name: github.com/go-git/go-git/v5 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
21 lines
723 B
Go
Generated
21 lines
723 B
Go
Generated
package socket
|
|
|
|
import (
|
|
"unsafe"
|
|
)
|
|
|
|
// RawSockaddr allows structs to be used with [Bind] and [ConnectEx]. The
|
|
// struct must meet the Win32 sockaddr requirements specified here:
|
|
// https://docs.microsoft.com/en-us/windows/win32/winsock/sockaddr-2
|
|
//
|
|
// Specifically, the struct size must be least larger than an int16 (unsigned short)
|
|
// for the address family.
|
|
type RawSockaddr interface {
|
|
// Sockaddr returns a pointer to the RawSockaddr and its struct size, allowing
|
|
// for the RawSockaddr's data to be overwritten by syscalls (if necessary).
|
|
//
|
|
// It is the callers responsibility to validate that the values are valid; invalid
|
|
// pointers or size can cause a panic.
|
|
Sockaddr() (unsafe.Pointer, int32, error)
|
|
}
|