cleaned up engine
[ana-net.git] / src / xt_engine.h
blob20adf5922795038d5371209352d1c4b62306cb33
1 /*
2 * Lightweight Autonomic Network Architecture
4 * Copyright 2011 Daniel Borkmann <dborkma@tik.ee.ethz.ch>,
5 * Swiss federal institute of technology (ETH Zurich)
6 * Subject to the GPL.
7 */
9 #ifndef XT_ENGINE_H
10 #define XT_ENGINE_H
12 #include <linux/skbuff.h>
14 #include "xt_conf.h"
15 #include "xt_fblock.h"
17 #define PPE_SUCCESS 0
18 #define PPE_DROPPED 1
19 #define PPE_ERROR 2
21 extern int process_packet(struct sk_buff *skb, enum path_type dir);
23 #endif /* XT_ENGINE_H */