0dc3fa0b8ba14822b6cc7323d9ecb8521f7ff4ae
[sliver-openvswitch.git] / datapath / unit-exports.c
1 /*
2  * Distributed under the terms of the GNU GPL version 2.
3  * Copyright (c) 2007, 2008 The Board of Trustees of The Leland 
4  * Stanford Junior University
5  */
6
7 #include "table.h"
8 #include "flow.h"
9 #include "crc32.h"
10 #include "forward.h"
11 #include <linux/module.h>
12
13 EXPORT_SYMBOL(flow_alloc);
14 EXPORT_SYMBOL(flow_free);
15 EXPORT_SYMBOL(flow_cache);
16
17 EXPORT_SYMBOL(table_hash_create);
18 EXPORT_SYMBOL(table_hash2_create);
19 EXPORT_SYMBOL(table_linear_create);
20
21 EXPORT_SYMBOL(crc32_init);
22 EXPORT_SYMBOL(crc32_calculate);
23
24 EXPORT_SYMBOL(flow_extract);
25 EXPORT_SYMBOL(execute_setter);