Changeset 8a9a41e in mainline for uspace/srv/net/inetsrv/ndp.h
- Timestamp:
- 2021-10-24T08:28:43Z (3 years ago)
- Children:
- 1eeddb3
- Parents:
- 2ce943a (diff), cd981f2a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- Erik Kučák <35500848+Riko196@…> (2021-10-24 08:28:43)
- git-committer:
- GitHub <noreply@…> (2021-10-24 08:28:43)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/inetsrv/ndp.h
r2ce943a r8a9a41e 1 1 /* 2 * Copyright (c) 2021 Jiri Svoboda 2 3 * Copyright (c) 2013 Antonin Steinhauser 3 4 * All rights reserved. … … 39 40 40 41 #include <inet/addr.h> 42 #include <inet/eth_addr.h> 41 43 #include "inetsrv.h" 42 44 #include "icmpv6_std.h" … … 52 54 ndp_opcode_t opcode; 53 55 /** Sender hardware address */ 54 addr48_t sender_hw_addr;56 eth_addr_t sender_hw_addr; 55 57 /** Sender protocol address */ 56 58 addr128_t sender_proto_addr; 57 59 /** Target hardware address */ 58 addr48_t target_hw_addr;60 eth_addr_t target_hw_addr; 59 61 /** Target protocol address */ 60 62 addr128_t target_proto_addr; … … 64 66 65 67 extern errno_t ndp_received(inet_dgram_t *); 66 extern errno_t ndp_translate(addr128_t, addr128_t, addr48_t, inet_link_t *);68 extern errno_t ndp_translate(addr128_t, addr128_t, eth_addr_t *, inet_link_t *); 67 69 68 70 #endif
Note:
See TracChangeset
for help on using the changeset viewer.