xref: /haiku/src/add-ons/kernel/network/datalink_protocols/ipv6_datagram/ndp.h (revision b216fbd0774446feb184ec1be17bb52bcbd75bbe)
1 /*
2  * Copyright 2010, Haiku, Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef IPV6_NDP_H
6 #define IPV6_NDP_H
7 
8 
9 #include <net_buffer.h>
10 
11 
12 struct net_ndp_module_info {
13 	module_info info;
14 
15 	status_t	(*receive_data)(net_buffer* buffer);
16 };
17 
18 
19 #endif	// IPV6_NDP_H
20