Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 755 for addr1 (0.04 sec)

  1. src/net/lookup_unix.go

    	return r.goLookupTXT(ctx, name)
    }
    
    func (r *Resolver) lookupAddr(ctx context.Context, addr string) ([]string, error) {
    	order, conf := systemConf().addrLookupOrder(r, addr)
    	if order == hostLookupCgo {
    		return cgoLookupPTR(ctx, addr)
    	}
    	return r.goLookupPTR(ctx, addr, order, conf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go

    type IfaMsghdr struct {
    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Index     uint16
    	Flags     int32
    	Addrs     int32
    	Addrflags int32
    	Metric    int32
    }
    
    type IfmaMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Index   uint16
    	Flags   int32
    	Addrs   int32
    }
    
    type IfAnnounceMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Index   uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. src/net/iprawsock.go

    func (c *IPConn) WriteToIP(b []byte, addr *IPAddr) (int, error) {
    	if !c.ok() {
    		return 0, syscall.EINVAL
    	}
    	n, err := c.writeTo(b, addr)
    	if err != nil {
    		err = &OpError{Op: "write", Net: c.fd.net, Source: c.fd.laddr, Addr: addr.opAddr(), Err: err}
    	}
    	return n, err
    }
    
    // WriteTo implements the [PacketConn] WriteTo method.
    func (c *IPConn) WriteTo(b []byte, addr Addr) (int, error) {
    	if !c.ok() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go

    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	Metric  int32
    }
    
    type IfmaMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	_       [2]byte
    }
    
    type IfmaMsghdr2 struct {
    	Msglen   uint16
    	Version  uint8
    	Type     uint8
    	Addrs    int32
    	Flags    int32
    	Index    uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go

    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	Metric  int32
    }
    
    type IfmaMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	_       [2]byte
    }
    
    type IfmaMsghdr2 struct {
    	Msglen   uint16
    	Version  uint8
    	Type     uint8
    	Addrs    int32
    	Flags    int32
    	Index    uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  6. src/net/mail/message.go

    	if p.empty() {
    		return nil, errors.New("mail: no address")
    	}
    
    	// address = mailbox / group
    	// mailbox = name-addr / addr-spec
    	// group = display-name ":" [group-list] ";" [CFWS]
    
    	// addr-spec has a more restricted grammar than name-addr,
    	// so try parsing it first, and fallback to name-addr.
    	// TODO(dsymonds): Is this really correct?
    	spec, err := p.consumeAddrSpec()
    	if err == nil {
    		var displayName string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. src/syscall/ztypes_openbsd_ppc64.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: Tue Aug 22 03:24:15 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.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)
  9. src/vendor/golang.org/x/net/route/interface_classic.go

    	}
    	m := &InterfaceMessage{
    		Version: int(b[2]),
    		Type:    int(b[3]),
    		Addrs:   make([]Addr, syscall.RTAX_MAX),
    		Flags:   int(nativeEndian.Uint32(b[8:12])),
    		Index:   int(nativeEndian.Uint16(b[12:14])),
    		extOff:  w.extOff,
    		raw:     b[:l],
    	}
    	a, err := parseLinkAddr(b[w.bodyOff:])
    	if err != nil {
    		return nil, err
    	}
    	m.Addrs[syscall.RTAX_IFP] = a
    	m.Name = a.(*LinkAddr).Name
    	return m, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. src/syscall/route_bsd.go

    		sa := &SockaddrInet6{}
    		copy(sa.Addr[:], b[offsetofInet6:])
    		return sa, nil
    	case family == AF_INET6:
    		sa := &SockaddrInet6{}
    		if l-1 < offsetofInet6 {
    			copy(sa.Addr[:], b[1:l])
    		} else {
    			copy(sa.Addr[:], b[l-offsetofInet6:l])
    		}
    		return sa, nil
    	case b[0] == SizeofSockaddrInet4:
    		sa := &SockaddrInet4{}
    		copy(sa.Addr[:], b[offsetofInet4:])
    		return sa, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top