Support packets in flight
[samplevnf.git] / VNFs / DPPD-PROX / stats_cons_cli.c
1 /*
2 // Copyright (c) 2010-2017 Intel Corporation
3 //
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //     http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 */
16
17 #include <rte_cycles.h>
18
19 #include "stats.h"
20 #include "stats_cons_cli.h"
21 #include "prox_cfg.h"
22 #include "prox_args.h"
23 #include "prox_assert.h"
24 #include "commands.h"
25
26 static struct stats_cons stats_cons_cli = {
27         .init = stats_cons_cli_init,
28         .notify = stats_cons_cli_notify,
29         .finish = stats_cons_cli_finish,
30         .flags = STATS_CONS_F_ALL,
31 };
32
33 struct stats_cons *stats_cons_cli_get(void)
34 {
35         return &stats_cons_cli;
36 }
37
38 void stats_cons_cli_init(void)
39 {
40 }
41
42 void stats_cons_cli_notify(void)
43 {
44 }
45
46 void stats_cons_cli_finish(void)
47 {
48 }