-
Notifications
You must be signed in to change notification settings - Fork 1
/
InterfaceStats.h
78 lines (48 loc) · 1.59 KB
/
InterfaceStats.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*
InterfaceStats.h
Copyright (C) 2020 Rafał Frączek
This file is part of Smart Traffic Meter.
Smart Traffic Meter 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 3 of the License, or (at your option) any later version.
Smart Traffic Meter is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with Smart Traffic Meter.
If not, see http://www.gnu.org/licenses/.
*/
/**
* @file InterfaceStats.h
* @brief Class definition for the InterfaceStats
*
* This file contains the definition of the InterfaceStats class.
*
* @author Rafał Frączek
* @bug No known bugs
*
*/
#ifndef INTERFACESTATS_H
#define INTERFACESTATS_H
#include <stdint.h>
class InterfaceStats
{
private:
bool first_update;
uint64_t rx;
uint64_t tx;
uint64_t p_rx;
uint64_t p_tx;
public:
InterfaceStats();
InterfaceStats( const InterfaceStats& );
InterfaceStats& operator=(const InterfaceStats& );
~InterfaceStats();
void set_first_update(bool _first_update);
void set_initial_stats( uint64_t _tx, uint64_t _rx );
void set_current_stats( uint64_t _tx, uint64_t _rx );
void update( uint64_t _tx, uint64_t _rx );
uint64_t received( void ) const;
uint64_t transmitted( void ) const;
};
#endif // INTERFACESTATS_H