This commit was generated by cvs2svn to compensate for changes in r786,
[libnl.git] / include / netlink / route / classifier-modules.h
1 /*
2  * netlink/route/classifier-modules.h   Classifier Module API
3  *
4  *      This library is free software; you can redistribute it and/or
5  *      modify it under the terms of the GNU Lesser General Public
6  *      License as published by the Free Software Foundation version 2.1
7  *      of the License.
8  *
9  * Copyright (c) 2003-2006 Thomas Graf <tgraf@suug.ch>
10  */
11
12 #ifndef NETLINK_CLASS_MODULES_H_
13 #define NETLINK_CLASS_MODULES_H_
14
15 #include <netlink/netlink.h>
16
17 /**
18  * Classifier operations
19  * @ingroup cls
20  */
21 struct rtnl_cls_ops
22 {
23         /**
24          * Kind/Name of classifier
25          */
26         char co_kind[32];
27
28         /**
29          * Dump callbacks
30          */
31         int (*co_dump[NL_DUMP_MAX+1])(struct rtnl_cls *,
32                                       struct nl_dump_params *, int);
33         /**
34          * Must return the contents supposed to be in TCA_OPTIONS
35          */
36         struct nl_msg *(*co_get_opts)(struct rtnl_cls *);
37
38         /**
39          * TCA_OPTIONS message parser
40          */
41         int (*co_msg_parser)(struct rtnl_cls *);
42
43         /**
44          * Called before a class object gets destroyed
45          */
46         void (*co_free_data)(struct rtnl_cls *);
47
48         /**
49          * INTERNAL (Do not use)
50          */
51         struct rtnl_cls_ops *co_next;
52 };
53
54 extern int rtnl_cls_register(struct rtnl_cls_ops *);
55 extern int rtnl_cls_unregister(struct rtnl_cls_ops *);
56
57 #endif