b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame^] | 1 | #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 | |
| 17 | struct fpdb_entry *fpc_classify_start(struct sk_buff *skb, struct nf_conntrack_tuple *tuple); |
| 18 | int fpc_classify_finish(struct sk_buff *skb, struct fpdb_entry *el); |
| 19 | struct fp_net_device *fpc_classify(struct sk_buff *skb); |
| 20 | |
| 21 | #endif /* FP_CLASSIFIER_H */ |