mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-08 23:25:13 +00:00
59 lines
2 KiB
C++
59 lines
2 KiB
C++
/*
|
|
*
|
|
* (C) 2013-17 - ntop.org
|
|
*
|
|
*
|
|
* 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 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program 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 this program; if not, write to the Free Software Foundation,
|
|
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
*/
|
|
|
|
#ifndef _ETH_STATS_H_
|
|
#define _ETH_STATS_H_
|
|
|
|
#include "ntop_includes.h"
|
|
|
|
class EthStats {
|
|
private:
|
|
ProtoStats raw, eth_IPv4, eth_IPv6, eth_ARP, eth_MPLS, eth_other;
|
|
|
|
public:
|
|
EthStats();
|
|
|
|
inline ProtoStats* getIPv4Stats() { return(ð_IPv4); };
|
|
inline ProtoStats* getIPv6Stats() { return(ð_IPv6); };
|
|
inline ProtoStats* getARPStats() { return(ð_ARP); };
|
|
inline ProtoStats* getMPLSStats() { return(ð_MPLS); };
|
|
inline ProtoStats* getEthOtherStats() { return(ð_other); };
|
|
|
|
void lua(lua_State *vm);
|
|
void incStats(u_int16_t proto, u_int32_t num_pkts, u_int32_t num_bytes, u_int pkt_overhead);
|
|
inline void setNumPackets(u_int64_t v) { return(raw.setPkts(v)); };
|
|
inline void setNumBytes(u_int64_t v) { return(raw.setBytes(v)); };
|
|
inline u_int64_t getNumPackets() { return(raw.getPkts()); };
|
|
inline u_int64_t getNumBytes() { return(raw.getBytes()); };
|
|
inline void sum(EthStats *e) {
|
|
raw.sum(&e->raw), eth_IPv4.sum(&e->eth_IPv4), eth_IPv6.sum(&e->eth_IPv6),
|
|
eth_ARP.sum(&e->eth_ARP), eth_MPLS.sum(&e->eth_MPLS), eth_other.sum(&e->eth_other);
|
|
};
|
|
|
|
/**
|
|
* @brief Cleanup the proto stats.
|
|
* @details Reset all proto stats information.
|
|
*/
|
|
void cleanup();
|
|
void print();
|
|
};
|
|
|
|
#endif /* _ETH_STATS_H_ */
|