00001 /* 00002 * netlink/route/sch/sfq.c SFQ Qdisc 00003 * 00004 * This library is free software; you can redistribute it and/or 00005 * modify it under the terms of the GNU Lesser General Public 00006 * License as published by the Free Software Foundation version 2.1 00007 * of the License. 00008 * 00009 * Copyright (c) 2003-2006 Thomas Graf <tgraf@suug.ch> 00010 */ 00011 00012 #ifndef NETLINK_SFQ_H_ 00013 #define NETLINK_SFQ_H_ 00014 00015 #include <netlink/netlink.h> 00016 00017 extern int rtnl_sfq_set_quantum(struct rtnl_qdisc *, int); 00018 extern int rtnl_sfq_get_quantum(struct rtnl_qdisc *); 00019 00020 extern int rtnl_sfq_set_limit(struct rtnl_qdisc *, int); 00021 extern int rtnl_sfq_get_limit(struct rtnl_qdisc *); 00022 00023 extern int rtnl_sfq_set_perturb(struct rtnl_qdisc *, int); 00024 extern int rtnl_sfq_get_perturb(struct rtnl_qdisc *); 00025 00026 extern int rtnl_sfq_get_divisor(struct rtnl_qdisc *); 00027 00028 #endif