5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version
8 * 2 of the License, or (at your option) any later version.
10 * Authors: J Hadi Salim
12 * This is here just in case it is needed
13 * useless right now; might be useful in the future
22 #include <sys/socket.h>
23 #include <netinet/in.h>
24 #include <arpa/inet.h>
30 static void explain(void)
32 fprintf(stderr
, "Usage: ... ingress \n");
35 #define usage() return(-1)
37 static int ingress_parse_opt(struct qdisc_util
*qu
, int argc
, char **argv
, struct nlmsghdr
*n
)
43 if (strcmp(*argv
, "handle") == 0) {
47 fprintf(stderr
, "What is \"%s\"?\n", *argv
);
54 addattr_l(n
, 1024, TCA_OPTIONS
, NULL
, 0);
58 static int ingress_print_opt(struct qdisc_util
*qu
, FILE *f
, struct rtattr
*opt
)
61 fprintf(f
, "---------------- ");
65 struct qdisc_util ingress_qdisc_util
= {
67 .parse_qopt
= ingress_parse_opt
,
68 .print_qopt
= ingress_print_opt
,