Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/inetsrv/ndp.h

    rb4edc96 r5a6cc679  
    11/*
    2  * Copyright (c) 2021 Jiri Svoboda
    32 * Copyright (c) 2013 Antonin Steinhauser
    43 * All rights reserved.
     
    4039
    4140#include <inet/addr.h>
    42 #include <inet/eth_addr.h>
    4341#include "inetsrv.h"
    4442#include "icmpv6_std.h"
     
    5452        ndp_opcode_t opcode;
    5553        /** Sender hardware address */
    56         eth_addr_t sender_hw_addr;
     54        addr48_t sender_hw_addr;
    5755        /** Sender protocol address */
    5856        addr128_t sender_proto_addr;
    5957        /** Target hardware address */
    60         eth_addr_t target_hw_addr;
     58        addr48_t target_hw_addr;
    6159        /** Target protocol address */
    6260        addr128_t target_proto_addr;
     
    6664
    6765extern errno_t ndp_received(inet_dgram_t *);
    68 extern errno_t ndp_translate(addr128_t, addr128_t, eth_addr_t *, inet_link_t *);
     66extern errno_t ndp_translate(addr128_t, addr128_t, addr48_t, inet_link_t *);
    6967
    7068#endif
Note: See TracChangeset for help on using the changeset viewer.