added comment
[ana-net.git] / src / xt_builder.h
blobcca8bfdf60d4bda5ad71c95c6e5e7c89c01e5449
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_BUILDER_H
10 #define XT_BUILDER_H
12 #include "xt_fblock.h"
14 extern int register_fblock_type(struct fblock_factory *fops);
15 extern void unregister_fblock_type(struct fblock_factory *fops);
16 extern struct fblock *build_fblock_object(char *type, char *name);
17 extern int init_fblock_builder(void);
18 extern void cleanup_fblock_builder(void);
20 #endif /* XT_BUILDER_H */