NetworkInterface

struct NetworkInterface

Information about a network interface.

  • Writes this Struct to the given TraitEncoder. Throws HomeError.parseError if the data could not be encoded.

    Declaration

    Swift

    func encode(with encoder: TraitEncoder) throws
  • A list of the IPv4 addresses that are assigned to the network interface.

    Declaration

    Swift

    let iPv4Addresses: [Data]
  • A list of the unicast IPv6 addresses that are assigned to the network interface. This list includes the node’s link-local address and should include any assigned GUA and ULA addresses. This list must not include any multicast group addresses to which the node has subscribed.

    Declaration

    Swift

    let iPv6Addresses: [Data]
  • Creates a new Struct instance using data read from the given TraitDecoder.

    Throws

    HomeError.parseError when parsing fails.

    Declaration

    Swift

    init(decoder: TraitDecoder) throws

    Parameters

    decoder

    The raw data representing this Struct.

  • Returns the field corresponding to the given field ID.

    Declaration

    Swift

    static func structField(id: UInt32) -> (any Field)?