Coverage Report

Created: 2025-12-31 06:08

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/ntopng/include/HostsPorts.h
Line
Count
Source
1
/*
2
 *
3
 * (C) 2019-25 - ntop.org
4
 *
5
 *
6
 * This program is free software; you can redistribute it and/or modify
7
 * it under the terms of the GNU General Public License as published by
8
 * the Free Software Foundation; either version 3 of the License, or
9
 * (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software Foundation,
18
 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19
 *
20
 */
21
22
#ifndef _HOSTS_PORTS_H_
23
#define _HOSTS_PORTS_H_
24
25
#include "ntop_includes.h"
26
27
class HostsPorts {
28
  private:
29
    /* <srv_port, app_proto, master_proto> -> (<srv_host, vlan_id> -> 1)*/
30
    std::unordered_map<u_int64_t, PortDetails*> srv_ports;
31
    u_int8_t protocol = 0;
32
    u_int16_t vlan_id = (u_int16_t)-1;
33
  
34
  public:
35
0
    HostsPorts(){};
36
0
    ~HostsPorts(){};
37
38
    /* Getters */
39
0
    inline std::unordered_map<u_int64_t, PortDetails*> get_srv_ports() { return(srv_ports); };
40
0
    inline u_int8_t get_protocol() { return(protocol); };
41
0
    inline u_int16_t get_vlan_id() { return(vlan_id); };
42
    
43
    /* Setters */
44
0
    void set_protocol(u_int8_t _protocol) { protocol = _protocol; };
45
0
    void set_vlan_id(u_int16_t _vlan_id) { vlan_id = _vlan_id; };
46
    void add_srv_port(u_int64_t key, u_int64_t host_key); 
47
};
48
49
#endif /* _HOSTS_PORTS_H_ */