mirror of
https://git.proxmox.com/git/mirror_iproute2
synced 2025-10-12 00:50:42 +00:00
51 lines
1015 B
C
51 lines
1015 B
C
/*
|
|
* q_hfsc.c HFSC.
|
|
*
|
|
* 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, <kuznet@ms2.inr.ac.ru>
|
|
*
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <syslog.h>
|
|
#include <fcntl.h>
|
|
#include <sys/socket.h>
|
|
#include <netinet/in.h>
|
|
#include <arpa/inet.h>
|
|
#include <string.h>
|
|
|
|
#include "utils.h"
|
|
#include "tc_util.h"
|
|
|
|
#define usage() return(-1)
|
|
|
|
static int hfsc_parse_opt(struct qdisc_util *qu, int argc, char **argv, struct nlmsghdr *n)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
static int hfsc_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
static int hfsc_print_xstats(struct qdisc_util *qu, FILE *f, struct rtattr *xstats)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
struct qdisc_util hfsc_util = {
|
|
NULL,
|
|
"hfsc",
|
|
hfsc_parse_opt,
|
|
hfsc_print_opt,
|
|
hfsc_print_xstats,
|
|
};
|
|
|