Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for As4 (0.03 sec)

  1. src/net/netip/netip.go

    	return a16
    }
    
    // As4 returns an IPv4 or IPv4-in-IPv6 address in its 4-byte representation.
    // If ip is the zero [Addr] or an IPv6 address, As4 panics.
    // Note that 0.0.0.0 is not the zero Addr.
    func (ip Addr) As4() (a4 [4]byte) {
    	if ip.z == z4 || ip.Is4In6() {
    		byteorder.BePutUint32(a4[:], uint32(ip.addr.lo))
    		return a4
    	}
    	if ip.z == z0 {
    		panic("As4 called on IP zero value")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  2. api/go1.18.txt

    pkg net/netip, method (*Prefix) UnmarshalText([]uint8) error
    pkg net/netip, method (Addr) AppendTo([]uint8) []uint8
    pkg net/netip, method (Addr) As16() [16]uint8
    pkg net/netip, method (Addr) As4() [4]uint8
    pkg net/netip, method (Addr) AsSlice() []uint8
    pkg net/netip, method (Addr) BitLen() int
    pkg net/netip, method (Addr) Compare(Addr) int
    pkg net/netip, method (Addr) Is4() bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 13K bytes
    - Viewed (0)
Back to top