Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for WSAIoctl (0.18 sec)

  1. src/internal/poll/sockopt_windows.go

    package poll
    
    import "syscall"
    
    // WSAIoctl wraps the WSAIoctl network call.
    func (fd *FD) WSAIoctl(iocc uint32, inbuf *byte, cbif uint32, outbuf *byte, cbob uint32, cbbr *uint32, overlapped *syscall.Overlapped, completionRoutine uintptr) error {
    	if err := fd.incref(); err != nil {
    		return err
    	}
    	defer fd.decref()
    	return syscall.WSAIoctl(fd.Sysfd, iocc, inbuf, cbif, outbuf, cbob, cbbr, overlapped, completionRoutine)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 30 19:09:46 UTC 2023
    - 586 bytes
    - Viewed (0)
  2. src/net/tcpsockopt_windows.go

    		Time:     tcpKeepAliveIdle,
    		Interval: tcpKeepAliveInterval,
    	}
    	ret := uint32(0)
    	size := uint32(unsafe.Sizeof(ka))
    	err := fd.pfd.WSAIoctl(syscall.SIO_KEEPALIVE_VALS, (*byte)(unsafe.Pointer(&ka)), size, nil, 0, &ret, nil, 0)
    	runtime.KeepAlive(fd)
    	return os.NewSyscallError("wsaioctl", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. src/internal/poll/fd_windows_test.go

    	}
    	defer syscall.CloseHandle(ov.HEvent)
    
    	if err = fd.WSAIoctl(
    		SIO_TCP_INFO,
    		(*byte)(unsafe.Pointer(&inbuf)),
    		uint32(unsafe.Sizeof(inbuf)),
    		(*byte)(unsafe.Pointer(&outbuf)),
    		uint32(unsafe.Sizeof(outbuf)),
    		&cbbr,
    		&ov,
    		0,
    	); err != nil && !errors.Is(err, syscall.ERROR_IO_PENDING) {
    		t.Fatalf("could not perform the WSAIoctl: %v", err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 08:33:36 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. src/net/fd_windows.go

    			params.MaxSynRetransmissions = windows.TCP_INITIAL_RTO_NO_SYN_RETRANSMISSIONS
    		}
    		var out uint32
    		// Don't abort the connection if WSAIoctl fails, as it is only an optimization.
    		// If it fails reliably, we expect TestDialClosedPortFailFast to detect it.
    		_ = fd.pfd.WSAIoctl(windows.SIO_TCP_INITIAL_RTO, (*byte)(unsafe.Pointer(&params)), uint32(unsafe.Sizeof(params)), nil, 0, &out, nil, 0)
    	}
    
    	// Call ConnectEx API.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 16:46:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top