Automated commit of clang-format CI changes.

This commit is contained in:
lucaderi 2023-04-08 12:28:11 +00:00 committed by clang-format-bot
parent dfb41880d5
commit 37dbf7f059
41 changed files with 863 additions and 762 deletions

View file

@ -90,9 +90,16 @@ class AutonomousSystem : public GenericHashEntry,
virtual void updateStats(const struct timeval *tv);
inline char* getSerializationKey(char *buf, uint bufsize) { snprintf(buf, bufsize, AS_SERIALIZED_KEY, iface->get_id(), asn); return(buf); }
inline u_int32_t getTotalAlertedNumFlowsAsClient() const { return(alerted_flows_as_client); };
inline u_int32_t getTotalAlertedNumFlowsAsServer() const { return(alerted_flows_as_server); };
inline char *getSerializationKey(char *buf, uint bufsize) {
snprintf(buf, bufsize, AS_SERIALIZED_KEY, iface->get_id(), asn);
return (buf);
}
inline u_int32_t getTotalAlertedNumFlowsAsClient() const {
return (alerted_flows_as_client);
};
inline u_int32_t getTotalAlertedNumFlowsAsServer() const {
return (alerted_flows_as_server);
};
};
#endif /* _AUTONOMOUS_SYSTEM_H_ */