You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
790 B
38 lines
790 B
/*
|
|
* lib/route/qdisc/blackhole.c Blackhole Qdisc
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation version 2.1
|
|
* of the License.
|
|
*
|
|
* Copyright (c) 2003-2011 Thomas Graf <tgraf@suug.ch>
|
|
*/
|
|
|
|
/**
|
|
* @ingroup qdisc
|
|
* @defgroup qdisc_blackhole Blackhole
|
|
* @{
|
|
*/
|
|
|
|
#include <netlink-private/netlink.h>
|
|
#include <netlink/netlink.h>
|
|
#include <netlink-private/route/tc-api.h>
|
|
|
|
static struct rtnl_tc_ops blackhole_ops = {
|
|
.to_kind = "blackhole",
|
|
.to_type = RTNL_TC_TYPE_QDISC,
|
|
};
|
|
|
|
static void __init blackhole_init(void)
|
|
{
|
|
rtnl_tc_register(&blackhole_ops);
|
|
}
|
|
|
|
static void __exit blackhole_exit(void)
|
|
{
|
|
rtnl_tc_unregister(&blackhole_ops);
|
|
}
|
|
|
|
/** @} */
|