mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 15:39:33 +00:00
93 lines
3.2 KiB
C++
93 lines
3.2 KiB
C++
/*
|
|
*
|
|
* (C) 2013-21 - 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 _AUTONOMOUS_SYSTEM_H_
|
|
#define _AUTONOMOUS_SYSTEM_H_
|
|
|
|
// #define AS_LATENCY_DEBUG 1
|
|
|
|
#include "ntop_includes.h"
|
|
|
|
class AutonomousSystem : public GenericHashEntry, public GenericTrafficElement, public SerializableElement, public Score {
|
|
private:
|
|
u_int32_t asn;
|
|
char *asname;
|
|
u_int32_t round_trip_time;
|
|
|
|
#if defined(NTOPNG_PRO)
|
|
time_t nextMinPeriodicUpdate;
|
|
|
|
/* Traffic behavior analysis */
|
|
AnalysisBehavior *score_behavior, *traffic_tx_behavior, *traffic_rx_behavior;
|
|
#endif
|
|
|
|
inline void incSentStats(time_t t, u_int64_t num_pkts, u_int64_t num_bytes) {
|
|
if(first_seen == 0) first_seen = t,
|
|
last_seen = iface->getTimeLastPktRcvd();
|
|
sent.incStats(t, num_pkts, num_bytes);
|
|
}
|
|
inline void incRcvdStats(time_t t,u_int64_t num_pkts, u_int64_t num_bytes) {
|
|
rcvd.incStats(t, num_pkts, num_bytes);
|
|
}
|
|
|
|
#ifdef NTOPNG_PRO
|
|
void updateBehaviorStats(const struct timeval *tv);
|
|
#endif
|
|
|
|
public:
|
|
AutonomousSystem(NetworkInterface *_iface, IpAddress *ipa);
|
|
~AutonomousSystem();
|
|
|
|
void set_hash_entry_state_idle();
|
|
|
|
inline u_int16_t getNumHosts() { return getUses(); }
|
|
inline u_int32_t key() { return(asn); }
|
|
inline u_int32_t get_asn() { return(asn); }
|
|
inline char* get_asname() { return(asname ? asname : (char*)""); }
|
|
|
|
bool equal(u_int32_t asn);
|
|
|
|
inline void incStats(time_t when, u_int16_t proto_id,
|
|
u_int64_t sent_packets, u_int64_t sent_bytes,
|
|
u_int64_t rcvd_packets, u_int64_t rcvd_bytes) {
|
|
if(ndpiStats || (ndpiStats = new nDPIStats()))
|
|
ndpiStats->incStats(when, proto_id, sent_packets, sent_bytes, rcvd_packets, rcvd_bytes);
|
|
incSentStats(when, sent_packets, sent_bytes);
|
|
incRcvdStats(when, rcvd_packets, rcvd_bytes);
|
|
}
|
|
|
|
void updateRoundTripTime(u_int32_t rtt_msecs);
|
|
void lua(lua_State* vm, DetailsLevel details_level, bool asListElement, bool diff = false);
|
|
|
|
virtual void updateStats(const struct timeval *tv);
|
|
|
|
inline void deserialize(json_object *obj) {
|
|
GenericHashEntry::deserialize(obj);
|
|
GenericTrafficElement::deserialize(obj, iface);
|
|
}
|
|
inline void serialize(json_object *obj, DetailsLevel details_level) {
|
|
GenericHashEntry::getJSONObject(obj, details_level);
|
|
GenericTrafficElement::getJSONObject(obj, iface);
|
|
}
|
|
inline char* getSerializationKey(char *buf, uint bufsize) { snprintf(buf, bufsize, AS_SERIALIZED_KEY, iface->get_id(), asn); return(buf); }
|
|
};
|
|
|
|
#endif /* _AUTONOMOUS_SYSTEM_H_ */
|