1 /* SPDX-License-Identifier: LGPL-2.1-only */ 2 /* 3 * Copyright (c) 2003-2006 Thomas Graf <[email protected]> 4 */ 5 6 #ifndef NETLINK_RED_H_ 7 #define NETLINK_RED_H_ 8 9 #include <netlink/netlink.h> 10 #include <netlink/route/qdisc.h> 11 12 #ifdef __cplusplus 13 extern "C" { 14 #endif 15 16 extern void rtnl_red_set_limit(struct rtnl_qdisc *qdisc, int limit); 17 extern int rtnl_red_get_limit(struct rtnl_qdisc *qdisc); 18 19 #ifdef __cplusplus 20 } 21 #endif 22 23 #endif 24