1/**
2 * @brief
3 *  net.h
4 */
5
6/*
7 * Copyright (c) 2017, ETH Zurich.
8 * All rights reserved.
9 *
10 * This file is distributed under the terms in the attached LICENSE file.
11 * If you do not find this file, copies can be found by writing to:
12 * ETH Zurich D-INFK, Universitaetsstrasse 6, CH-8092 Zurich. Attn: Systems Group.
13 */
14
15
16#ifndef LIB_NET_INCLUDE_NETWORKING_ARP_H_
17#define LIB_NET_INCLUDE_NETWORKING_ARP_H_
18
19
20errval_t arp_service_start(void);
21
22errval_t arp_service_subscribe(void);
23
24errval_t arp_service_get_mac(uint32_t ip, uint64_t* mac);
25
26#endif /* LIB_NET_INCLUDE_NETWORKING_ARP_H_ */
27