Implemented cardinarily information report in hsot

Fixes #4005
This commit is contained in:
Luca Deri 2020-06-13 00:00:30 +02:00
parent b6d78df176
commit a27eedaeef
10 changed files with 132 additions and 90 deletions

View file

@ -384,7 +384,7 @@ class Host : public GenericHashEntry, public AlertableEntity {
void incCliContactedPorts(u_int16_t port) { stats->incCliContactedPorts(port); }
void incSrvHostContacts(IpAddress *peer) { stats->incSrvHostContacts(peer); }
void incSrvPortsContacts(u_int16_t port) { stats->incSrvPortsContacts(port); }
void incServicesContacted(char *name) { stats->incServicesContacted(name); }
void incContactedService(char *name) { stats->incContactedService(name); }
};
#endif /* _HOST_H_ */