]> git.proxmox.com Git - mirror_iproute2.git/blame - tc/m_estimator.c
5.10.0
[mirror_iproute2.git] / tc / m_estimator.c
CommitLineData
aba5acdf
SH
1/*
2 * m_estimator.c Parse/print estimator module options.
3 *
4 * This program is free software; you can u32istribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
10 *
11 */
12
13#include <stdio.h>
14#include <stdlib.h>
15#include <unistd.h>
aba5acdf
SH
16#include <fcntl.h>
17#include <sys/socket.h>
18#include <netinet/in.h>
19#include <arpa/inet.h>
20#include <string.h>
21
22#include "utils.h"
23#include "tc_util.h"
d1f28cf1 24#include "tc_common.h"
aba5acdf 25
94c9cc51 26static void est_help(void);
aba5acdf
SH
27
28static void est_help(void)
29{
8589eb4e
MC
30 fprintf(stderr,
31 "Usage: ... estimator INTERVAL TIME-CONST\n"
32 " INTERVAL is interval between measurements\n"
33 " TIME-CONST is averaging time constant\n"
34 "Example: ... est 1sec 8sec\n");
aba5acdf
SH
35}
36
37int parse_estimator(int *p_argc, char ***p_argv, struct tc_estimator *est)
38{
39 int argc = *p_argc;
40 char **argv = *p_argv;
32a121cb 41 unsigned int A, time_const;
ae665a52 42
aba5acdf
SH
43 NEXT_ARG();
44 if (est->ewma_log)
45 duparg("estimator", *argv);
46 if (matches(*argv, "help") == 0)
47 est_help();
8f34caaf 48 if (get_time(&A, *argv))
aba5acdf
SH
49 invarg("estimator", "invalid estimator interval");
50 NEXT_ARG();
51 if (matches(*argv, "help") == 0)
52 est_help();
8f34caaf 53 if (get_time(&time_const, *argv))
aba5acdf
SH
54 invarg("estimator", "invalid estimator time constant");
55 if (tc_setup_estimator(A, time_const, est) < 0) {
56 fprintf(stderr, "Error: estimator parameters are out of range.\n");
94c9cc51 57 return -1;
aba5acdf
SH
58 }
59 if (show_raw)
66702fb9 60 fprintf(stderr, "[estimator i=%hhd e=%u]\n", est->interval, est->ewma_log);
aba5acdf
SH
61 *p_argc = argc;
62 *p_argv = argv;
63 return 0;
64}