mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-28 15:09:33 +00:00
70 lines
1.8 KiB
C++
70 lines
1.8 KiB
C++
/*
|
|
*
|
|
* (C) 2014-25 - 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 _ALERT_FIFO_ITEM_H
|
|
#define _ALERT_FIFO_ITEM_H
|
|
|
|
#include "ntop_includes.h"
|
|
|
|
class AlertFifoItem {
|
|
public:
|
|
AlertEntity alert_entity;
|
|
AlertLevel alert_severity;
|
|
AlertCategory alert_category;
|
|
std::string alert; /* json */
|
|
u_int32_t score;
|
|
u_int16_t alert_id;
|
|
|
|
struct {
|
|
u_int16_t host_pool;
|
|
} host;
|
|
|
|
struct {
|
|
u_int16_t cli_host_pool;
|
|
u_int16_t srv_host_pool;
|
|
} flow;
|
|
|
|
AlertFifoItem() {
|
|
alert_entity = alert_entity_other;
|
|
alert_severity = alert_level_none;
|
|
alert_category = alert_category_other;
|
|
score = 0;
|
|
host.host_pool = 0;
|
|
alert_id = 0;
|
|
flow.cli_host_pool = flow.srv_host_pool = 0;
|
|
}
|
|
|
|
AlertFifoItem(const AlertFifoItem *i) {
|
|
alert_entity = i->alert_entity;
|
|
alert_severity = i->alert_severity;
|
|
alert_category = i->alert_category;
|
|
score = i->score;
|
|
alert = i->alert;
|
|
alert_id = i->alert_id;
|
|
host.host_pool = i->host.host_pool;
|
|
flow.cli_host_pool = i->flow.cli_host_pool;
|
|
flow.srv_host_pool = i->flow.srv_host_pool;
|
|
}
|
|
|
|
~AlertFifoItem() {}
|
|
};
|
|
|
|
#endif /* _ALERT_FIFO_ITEM_H */
|