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,14 @@
class CustomFlowLuaScript : public FlowCheck {
private:
LuaEngine* initVM(const char* script_path);
LuaEngine *initVM(const char *script_path);
bool disabled_proto_detected, disabled_periodic_update, disabled_flow_end;
void checkFlow(Flow *f, LuaEngine *lua);
public:
CustomFlowLuaScript();
~CustomFlowLuaScript();
bool loadConfiguration(json_object *config);
FlowAlert *buildAlert(Flow *f);
@ -41,8 +41,8 @@ class CustomFlowLuaScript : public FlowCheck {
inline void protocolDetected(Flow *f);
void periodicUpdate(Flow *f);
void flowEnd(Flow *f);
std::string getName() const { return(std::string("custom_lua_script")); }
std::string getName() const { return (std::string("custom_lua_script")); }
};
#endif /* _CUSTOM_FLOW_LUA_SCRIPT_H_ */