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
12struct 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