Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for WSADESCRIPTION_LEN (0.13 sec)

  1. src/syscall/types_windows.go

    	IPV6_MULTICAST_LOOP = 0xb
    	IPV6_JOIN_GROUP     = 0xc
    	IPV6_LEAVE_GROUP    = 0xd
    
    	SOMAXCONN = 0x7fffffff
    
    	TCP_NODELAY = 1
    
    	SHUT_RD   = 0
    	SHUT_WR   = 1
    	SHUT_RDWR = 2
    
    	WSADESCRIPTION_LEN = 256
    	WSASYS_STATUS_LEN  = 128
    )
    
    type WSABuf struct {
    	Len uint32
    	Buf *byte
    }
    
    // Invented values to support what package os expects.
    const (
    	S_IFMT   = 0x1f000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	UDP_SEND_MSG_SIZE           = 2
    	UDP_RECV_MAX_COALESCED_SIZE = 3
    	UDP_CHECKSUM_COVERAGE       = 20
    
    	UDP_COALESCED_INFO = 3
    
    	SHUT_RD   = 0
    	SHUT_WR   = 1
    	SHUT_RDWR = 2
    
    	WSADESCRIPTION_LEN = 256
    	WSASYS_STATUS_LEN  = 128
    )
    
    type WSABuf struct {
    	Len uint32
    	Buf *byte
    }
    
    type WSAMsg struct {
    	Name        *syscall.RawSockaddrAny
    	Namelen     int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"WOPTSCHECKED", Const, 1},
    		{"WORDSIZE", Const, 0},
    		{"WSABuf", Type, 0},
    		{"WSABuf.Buf", Field, 0},
    		{"WSABuf.Len", Field, 0},
    		{"WSACleanup", Func, 0},
    		{"WSADESCRIPTION_LEN", Const, 0},
    		{"WSAData", Type, 0},
    		{"WSAData.Description", Field, 0},
    		{"WSAData.HighVersion", Field, 0},
    		{"WSAData.MaxSockets", Field, 0},
    		{"WSAData.MaxUdpDg", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top