Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 755 for addr1 (1.52 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go

    	FADV_NOREUSE    = 0x5
    )
    
    type RawSockaddrInet4 struct {
    	Len    uint8
    	Family uint8
    	Port   uint16
    	Addr   [4]byte /* in_addr */
    	Zero   [8]int8
    }
    
    type RawSockaddrInet6 struct {
    	Len      uint8
    	Family   uint8
    	Port     uint16
    	Flowinfo uint32
    	Addr     [16]byte /* in6_addr */
    	Scope_id uint32
    }
    
    type RawSockaddrUnix struct {
    	Len    uint8
    	Family uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_riscv64.go

    const (
    	PathMax = 0x400
    )
    
    type RawSockaddrInet4 struct {
    	Len    uint8
    	Family uint8
    	Port   uint16
    	Addr   [4]byte /* in_addr */
    	Zero   [8]int8
    }
    
    type RawSockaddrInet6 struct {
    	Len      uint8
    	Family   uint8
    	Port     uint16
    	Flowinfo uint32
    	Addr     [16]byte /* in6_addr */
    	Scope_id uint32
    }
    
    type RawSockaddrUnix struct {
    	Len    uint8
    	Family uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go

    const (
    	PathMax = 0x400
    )
    
    type RawSockaddrInet4 struct {
    	Len    uint8
    	Family uint8
    	Port   uint16
    	Addr   [4]byte /* in_addr */
    	Zero   [8]int8
    }
    
    type RawSockaddrInet6 struct {
    	Len      uint8
    	Family   uint8
    	Port     uint16
    	Flowinfo uint32
    	Addr     [16]byte /* in6_addr */
    	Scope_id uint32
    }
    
    type RawSockaddrUnix struct {
    	Len    uint8
    	Family uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  4. src/net/cgo_stub.go

    const cgoAvailable = false
    
    func cgoLookupHost(ctx context.Context, name string) (addrs []string, err error) {
    	panic("cgo stub: cgo not available")
    }
    
    func cgoLookupPort(ctx context.Context, network, service string) (port int, err error) {
    	panic("cgo stub: cgo not available")
    }
    
    func cgoLookupIP(ctx context.Context, network, name string) (addrs []IPAddr, err error) {
    	panic("cgo stub: cgo not available")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. pkg/proxy/util/utils.go

    func AppendPortIfNeeded(addr string, port int32) string {
    	// Return if address is already in "ipv4:port" or "[ipv6]:port" format.
    	if _, _, err := net.SplitHostPort(addr); err == nil {
    		return addr
    	}
    
    	// Simply return for invalid case. This should be caught by validation instead.
    	ip := netutils.ParseIPSloppy(addr)
    	if ip == nil {
    		return addr
    	}
    
    	// Append port to address.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. src/net/http/httptrace/trace.go

    			}
    		}
    		if trace.DNSDone != nil {
    			nt.DNSDone = func(netIPs []any, coalesced bool, err error) {
    				addrs := make([]net.IPAddr, len(netIPs))
    				for i, ip := range netIPs {
    					addrs[i] = ip.(net.IPAddr)
    				}
    				trace.DNSDone(DNSDoneInfo{
    					Addrs:     addrs,
    					Coalesced: coalesced,
    					Err:       err,
    				})
    			}
    		}
    		ctx = context.WithValue(ctx, nettrace.TraceKey{}, nt)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex.go

    	res := []model.AddressInfo{}
    	type kindindex struct {
    		k     kind.Kind
    		index int
    	}
    	addrm := map[netip.Addr]kindindex{}
    	for _, wl := range a.workloads.List() {
    		overwrite := -1
    		write := true
    		for _, addr := range wl.Addresses {
    			a := byteIPToAddr(addr)
    			if existing, f := addrm[a]; f {
    				// This address was already found. We want unique addresses in the result.
    				// Pod > WorkloadEntry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:41 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. src/internal/nettrace/nettrace.go

    	// dialing, this may be called multiple times, from multiple
    	// goroutines.
    	ConnectStart func(network, addr string)
    
    	// ConnectDone is called after a Dial with the results, excluding
    	// Dials made during DNS lookups. It may also be called multiple
    	// times, like ConnectStart.
    	ConnectDone func(network, addr string, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:57:14 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/route/route.go

    //	Index         = <must be specified if necessary>
    //	ID            = <must be specified>
    //	Seq           = <must be specified>
    //	Addrs         = <must be specified>
    //
    // The Type field specifies a type of manipulation, the Flags field
    // specifies a class of target information and the Addrs field
    // specifies target information like the following:
    //
    //	route.RouteMessage{
    //		Version: RTM_VERSION,
    //		Type: RTM_GET,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go

    const (
    	PathMax = 0x400
    )
    
    type RawSockaddrInet4 struct {
    	Len    uint8
    	Family uint8
    	Port   uint16
    	Addr   [4]byte /* in_addr */
    	Zero   [8]int8
    }
    
    type RawSockaddrInet6 struct {
    	Len      uint8
    	Family   uint8
    	Port     uint16
    	Flowinfo uint32
    	Addr     [16]byte /* in6_addr */
    	Scope_id uint32
    }
    
    type RawSockaddrUnix struct {
    	Len    uint8
    	Family uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.4K bytes
    - Viewed (0)
Back to top