This commit was generated by cvs2svn to compensate for changes in r786,
[libnl.git] / include / netlink / route / sch / htb.h
1 /*
2  * netlink/route/sch/htb.h      HTB Qdisc
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  * Copyright (c) 2005 Petr Gotthard <petr.gotthard@siemens.com>
11  * Copyright (c) 2005 Siemens AG Oesterreich
12  */
13
14 #ifndef NETLINK_HTB_H_
15 #define NETLINK_HTB_H_
16
17 #include <netlink/netlink.h>
18 #include <netlink/route/tc.h>
19
20 extern void rtnl_htb_set_rate2quantum(struct rtnl_qdisc *, uint32_t);
21 extern void rtnl_htb_set_defcls(struct rtnl_qdisc *, uint32_t);
22
23 extern void rtnl_htb_set_prio(struct rtnl_class *, uint32_t);
24 extern void rtnl_htb_set_mtu(struct rtnl_class *, uint32_t);
25 extern void rtnl_htb_set_rate(struct rtnl_class *, uint32_t);
26 extern void rtnl_htb_set_ceil(struct rtnl_class *, uint32_t);
27
28 #endif