Automated commit of clang-format CI changes.

This commit is contained in:
lucaderi 2023-04-07 14:20:44 +00:00 committed by clang-format-bot
parent 2ecb162dfb
commit d395deac4e
604 changed files with 47610 additions and 38436 deletions

View file

@ -26,14 +26,16 @@
class RemoteToLocalInsecureProtoAlert : public FlowAlert {
private:
ndpi_serializer* getAlertJSON(ndpi_serializer* serializer);
ndpi_serializer* getAlertJSON(ndpi_serializer* serializer);
public:
static FlowAlertType getClassType() { return { flow_alert_remote_to_local_insecure_proto, alert_category_security }; }
static u_int8_t getDefaultScore() { return SCORE_LEVEL_ERROR; };
static FlowAlertType getClassType() {
return {flow_alert_remote_to_local_insecure_proto, alert_category_security};
}
static u_int8_t getDefaultScore() { return SCORE_LEVEL_ERROR; };
RemoteToLocalInsecureProtoAlert(FlowCheck *c, Flow *f) : FlowAlert(c, f) {};
~RemoteToLocalInsecureProtoAlert() {};
RemoteToLocalInsecureProtoAlert(FlowCheck* c, Flow* f) : FlowAlert(c, f){};
~RemoteToLocalInsecureProtoAlert(){};
FlowAlertType getAlertType() const { return getClassType(); }
};