00001 #ifndef EVENT_QUEUE_H 00002 #define EVENT_QUEUE_H 00003 00004 #include <linux/module.h> 00005 #include <linux/kernel.h> 00006 #include <linux/netdevice.h> 00007 #include "aodv_thread.h" 00008 #include "aodv.h" 00009 00010 int insert_event_queue_entry(int type, struct sk_buff *packet); 00011 struct event_queue_entry *get_next_event_queue_entry( void ); 00012 int cleanup_event_queue(void ); 00013 00014 #endif 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 00031 00032