00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef NETLINK_HTB_H_
00015 #define NETLINK_HTB_H_
00016
00017 #include <netlink/netlink.h>
00018 #include <netlink/route/tc.h>
00019
00020 extern void rtnl_htb_set_rate2quantum(struct rtnl_qdisc *, uint32_t);
00021 extern void rtnl_htb_set_defcls(struct rtnl_qdisc *, uint32_t);
00022
00023 extern void rtnl_htb_set_prio(struct rtnl_class *, uint32_t);
00024 extern void rtnl_htb_set_mtu(struct rtnl_class *, uint32_t);
00025 extern void rtnl_htb_set_rate(struct rtnl_class *, uint32_t);
00026 extern void rtnl_htb_set_ceil(struct rtnl_class *, uint32_t);
00027
00028 #endif