00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef __NETLINK_CLI_QDISC_H_
00013 #define __NETLINK_CLI_QDISC_H_
00014
00015 #include <netlink/route/qdisc.h>
00016
00017 #define nl_cli_qdisc_alloc_cache(sk) \
00018 nl_cli_alloc_cache((sk), "queueing disciplines", \
00019 rtnl_qdisc_alloc_cache)
00020
00021 extern struct rtnl_qdisc *nl_cli_qdisc_alloc(void);
00022
00023 extern void nl_cli_qdisc_parse_dev(struct rtnl_qdisc *, struct nl_cache *, char *);
00024 extern void nl_cli_qdisc_parse_parent(struct rtnl_qdisc *, char *);
00025 extern void nl_cli_qdisc_parse_handle(struct rtnl_qdisc *, char *);
00026 extern void nl_cli_qdisc_parse_kind(struct rtnl_qdisc *, char *);
00027
00028 #endif