mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-21 18:33:24 +00:00
Added .gitignore file for ignoring selected files Reworked src and include paths to organize the source better Fixed bug with invalid git version caused in some settings that do not compile code extracting it from github
53 lines
1.7 KiB
C++
53 lines
1.7 KiB
C++
/*
|
|
*
|
|
* (C) 2013-15 - 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 u_int64_t getNumPackets() { return(raw.getPkts()); };
|
|
inline u_int64_t getNumBytes() { return(raw.getBytes()); };
|
|
|
|
/**
|
|
* @brief Cleanup the proto stats.
|
|
* @details Reset all proto stats information.
|
|
*/
|
|
void cleanup();
|
|
void print();
|
|
};
|
|
|
|
#endif /* _ETH_STATS_H_ */
|