blob: 6a64dd479f82e75d01d1d1e50a3171ec649e4f16 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#ifndef FP_CLASSIFIER_H
2#define FP_CLASSIFIER_H
3
4/*
5 * Fast path classifier
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 */
12
13/**--------------------------------------
14 * API FUNCTIONS
15 *--------------------------------------*/
16
17struct fpdb_entry *fpc_classify_start(struct sk_buff *skb, struct nf_conntrack_tuple *tuple);
18int fpc_classify_finish(struct sk_buff *skb, struct fpdb_entry *el);
19struct fp_net_device *fpc_classify(struct sk_buff *skb);
20
21#endif /* FP_CLASSIFIER_H */