Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 421 for wsaioctl (0.13 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)
  5. pkg/test/framework/components/istioctl/istioctl.go

    	Cluster cluster.Cluster
    }
    
    // New returns a new instance of "istioctl".
    func New(ctx resource.Context, cfg Config) (i Instance, err error) {
    	return newKube(ctx, cfg)
    }
    
    // NewOrFail returns a new instance of "istioctl".
    func NewOrFail(t test.Failer, c resource.Context, config Config) Instance {
    	i, err := New(c, config)
    	if err != nil {
    		t.Fatalf("istioctl.NewOrFail:: %v", err)
    	}
    
    	return i
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 14 22:20:09 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  6. istioctl/docker/Dockerfile.istioctl

    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION}
    USER 1000:1000
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/istioctl /usr/local/bin/istioctl
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 19 15:53:08 UTC 2022
    - 305 bytes
    - Viewed (0)
  7. releasenotes/notes/istioctl-uninstall.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 24360
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 170 bytes
    - Viewed (0)
  8. releasenotes/notes/fix-istioctl-version.yaml

    # Valid values are:
    # - traffic-management
    # - security
    # - telemetry
    # - installation
    # - istioctl
    # - documentation
    area: istioctl
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 16 17:04:03 UTC 2022
    - 988 bytes
    - Viewed (0)
  9. releasenotes/notes/istioctl-additional-address.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue: []
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 05 17:24:06 UTC 2023
    - 196 bytes
    - Viewed (0)
  10. releasenotes/notes/istioctl-pc-all.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issues:
    - 28191
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 01 06:22:31 UTC 2021
    - 182 bytes
    - Viewed (0)
Back to top