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.
66 lines
1.3 KiB
66 lines
1.3 KiB
4 months ago
|
|
||
|
/*
|
||
|
* src/lib/ingress.c ingress module for CLI lib
|
||
|
*
|
||
|
* 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) 2013 Cong Wang <xiyou.wangcong@gmail.com>
|
||
|
*/
|
||
|
|
||
|
#include <netlink/cli/utils.h>
|
||
|
#include <netlink/cli/tc.h>
|
||
|
|
||
|
static void print_usage(void)
|
||
|
{
|
||
|
printf(
|
||
|
"Usage: nl-qdisc-add [...] ingress\n"
|
||
|
"\n"
|
||
|
"OPTIONS\n"
|
||
|
" --help Show this help text.\n"
|
||
|
"\n"
|
||
|
"EXAMPLE"
|
||
|
" # Attach ingress to eth1\n"
|
||
|
" nl-qdisc-add --dev=eth1 --parent=root ingress\n");
|
||
|
}
|
||
|
|
||
|
static void ingress_parse_argv(struct rtnl_tc *tc, int argc, char **argv)
|
||
|
{
|
||
|
for (;;) {
|
||
|
int c, optidx = 0;
|
||
|
static struct option long_opts[] = {
|
||
|
{ "help", 0, 0, 'h' },
|
||
|
{ 0, 0, 0, 0 }
|
||
|
};
|
||
|
|
||
|
c = getopt_long(argc, argv, "h", long_opts, &optidx);
|
||
|
if (c == -1)
|
||
|
break;
|
||
|
|
||
|
switch (c) {
|
||
|
case 'h':
|
||
|
print_usage();
|
||
|
return;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static struct nl_cli_tc_module ingress_module =
|
||
|
{
|
||
|
.tm_name = "ingress",
|
||
|
.tm_type = RTNL_TC_TYPE_QDISC,
|
||
|
.tm_parse_argv = ingress_parse_argv,
|
||
|
};
|
||
|
|
||
|
static void __init ingress_init(void)
|
||
|
{
|
||
|
nl_cli_tc_register(&ingress_module);
|
||
|
}
|
||
|
|
||
|
static void __exit ingress_exit(void)
|
||
|
{
|
||
|
nl_cli_tc_unregister(&ingress_module);
|
||
|
}
|