X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=tc%2Fq_csz.c;h=e2734cda73a2d7a6e191123ea9c91d5a1ad95629;hb=aba5acdfdb347d2c21fc67d613d83d4430ca3937;hp=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391;hpb=86fdf0e47be697587efcf9602cd1f952a1d73170;p=mirror_iproute2.git diff --git a/tc/q_csz.c b/tc/q_csz.c index e69de29b..e2734cda 100644 --- a/tc/q_csz.c +++ b/tc/q_csz.c @@ -0,0 +1,61 @@ +/* + * q_csz.c CSZ. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version + * 2 of the License, or (at your option) any later version. + * + * Authors: Alexey Kuznetsov, + * + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "utils.h" +#include "tc_util.h" + +static void explain() +{ + fprintf(stderr, "Usage: ... csz \n"); +} + +static void explain1(char *arg) +{ + fprintf(stderr, "Illegal \"%s\"\n", arg); +} + + +#define usage() return(-1) + +static int csz_parse_opt(struct qdisc_util *qu, int argc, char **argv, struct nlmsghdr *n) +{ + return -1; +} + +static int csz_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt) +{ + return -1; +} + +static int csz_print_xstats(struct qdisc_util *qu, FILE *f, struct rtattr *xstats) +{ + return -1; +} + +struct qdisc_util csz_util = { + NULL, + "csz", + csz_parse_opt, + csz_print_opt, + csz_print_xstats, +}; +