Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ConnectExFunc (0.21 sec)

  1. src/net/main_windows_test.go

    	origClosesocket = poll.CloseFunc
    	origConnect     = connectFunc
    	origConnectEx   = poll.ConnectExFunc
    	origListen      = listenFunc
    	origAccept      = poll.AcceptFunc
    )
    
    func installTestHooks() {
    	wsaSocketFunc = sw.WSASocket
    	poll.CloseFunc = sw.Closesocket
    	connectFunc = sw.Connect
    	poll.ConnectExFunc = sw.ConnectEx
    	listenFunc = sw.Listen
    	poll.AcceptFunc = sw.AcceptEx
    }
    
    func uninstallTestHooks() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:36:30 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. src/internal/poll/hook_windows.go

    // AcceptFunc is used to hook the accept call.
    var AcceptFunc func(syscall.Handle, syscall.Handle, *byte, uint32, uint32, uint32, *uint32, *syscall.Overlapped) error = syscall.AcceptEx
    
    // ConnectExFunc is used to hook the ConnectEx call.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 07 21:54:36 UTC 2017
    - 668 bytes
    - Viewed (0)
  3. src/syscall/syscall_windows.go

    }
    
    var connectExFunc struct {
    	once sync.Once
    	addr uintptr
    	err  error
    }
    
    func LoadConnectEx() error {
    	connectExFunc.once.Do(func() {
    		var s Handle
    		s, connectExFunc.err = Socket(AF_INET, SOCK_STREAM, IPPROTO_TCP)
    		if connectExFunc.err != nil {
    			return
    		}
    		defer CloseHandle(s)
    		var n uint32
    		connectExFunc.err = WSAIoctl(s,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    }
    
    var connectExFunc struct {
    	once sync.Once
    	addr uintptr
    	err  error
    }
    
    func LoadConnectEx() error {
    	connectExFunc.once.Do(func() {
    		var s Handle
    		s, connectExFunc.err = Socket(AF_INET, SOCK_STREAM, IPPROTO_TCP)
    		if connectExFunc.err != nil {
    			return
    		}
    		defer CloseHandle(s)
    		var n uint32
    		connectExFunc.err = WSAIoctl(s,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  5. src/internal/poll/fd_windows.go

    // than in the net package so that it can use fd.wop.
    func (fd *FD) ConnectEx(ra syscall.Sockaddr) error {
    	o := &fd.wop
    	o.sa = ra
    	_, err := execIO(o, func(o *operation) error {
    		return ConnectExFunc(o.fd.Sysfd, o.sa, nil, 0, nil, &o.o)
    	})
    	return err
    }
    
    func (fd *FD) acceptOne(s syscall.Handle, rawsa []syscall.RawSockaddrAny, o *operation) (string, error) {
    	// Submit accept request.
    	o.handle = s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 16:50:42 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top