forked from wujingbang/aodv-Android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaodv_dev.h
executable file
·32 lines (26 loc) · 1.03 KB
/
aodv_dev.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/***************************************************************************
aodv_dev.h - description
-------------------
begin : Thu Aug 7 2003
copyright : (C) 2003 by Luke Klein-Berndt
email : [email protected]
***************************************************************************/
/***************************************************************************
Modified by Miguel Catalan Cid - [email protected] - Version: Mon Jan 1 2010
***************************************************************************/
#ifndef AODV_DEV_H
#define AODV_DEV_H
#include <linux/netdevice.h>
/* struct net_device */
#include <asm/uaccess.h>
#include <linux/if.h>
#include <linux/rtnetlink.h>
/*#include <linux/types.h>
#include <linux/if.h>
#include <linux/inetdevice.h>
#include <linux/rtnetlink.h>*/
#include "aodv.h"
int init_aodv_dev(char *name);
aodv_dev *find_aodv_dev_by_dev(struct net_device *dev);
void free_dev(void);
#endif