oops
[libnl.git] / include / netlink / route / class-modules.h
1 /*
2  * netlink/route/class-modules.h       Class 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  * Class operations
19  * @ingroup class
20  */
21 struct rtnl_class_ops
22 {
23         /**
24          * Kind/Name of class
25          */
26         char co_kind[32];
27
28         /**
29          * Dump callbacks
30          */
31         int (*co_dump[NL_DUMP_MAX+1])(struct rtnl_class *,
32                                       struct nl_dump_params *, int);
33
34         /**
35          * Must return the contents supposed to be in TCA_OPTIONS
36          */
37         struct nl_msg *(*co_get_opts)(struct rtnl_class *);
38
39         /**
40          * TCA_OPTIONS message parser
41          */
42         int  (*co_msg_parser)(struct rtnl_class *);
43
44         /**
45          * Called before a class object gets destroyed
46          */
47         void (*co_free_data)(struct rtnl_class *);
48
49         /**
50          * INTERNAL (Do not use)
51          */
52         struct rtnl_class_ops *co_next;
53 };
54
55 extern int      rtnl_class_register(struct rtnl_class_ops *);
56 extern int      rtnl_class_unregister(struct rtnl_class_ops *);
57
58 #endif