Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/il/arp/arp.h

    r609243f4 r6b82009  
    9292struct arp_device {
    9393        /** Actual device hardware address. */
    94         uint8_t addr[NIC_MAX_ADDRESS_LENGTH];
    95         /** Actual device hardware address length. */
    96         size_t addr_len;
     94        measured_string_t *addr;
     95        /** Actual device hardware address data. */
     96        uint8_t *addr_data;
    9797        /** Broadcast device hardware address. */
    98         uint8_t broadcast_addr[NIC_MAX_ADDRESS_LENGTH];
    99         /** Broadcast device hardware address length. */
    100         size_t broadcast_addr_len;
     98        measured_string_t *broadcast_addr;
     99        /** Broadcast device hardware address data. */
     100        uint8_t *broadcast_data;
    101101        /** Device identifier. */
    102         nic_device_id_t device_id;
     102        device_id_t device_id;
    103103        /** Hardware type. */
    104104        hw_type_t hardware;
Note: See TracChangeset for help on using the changeset viewer.