extern const ConvertMap* set_gid_map;
extern const ConvertMap* set_uid_map;
extern const ConvertMap* show_year_map;
+extern const ConvertMap* sidechannel_map;
extern const ConvertMap* snaplen_map;
extern const ConvertMap* so_rule_memcap_map;
extern const ConvertMap* stateful_map;
set_gid_map,
set_uid_map,
show_year_map,
+ sidechannel_map,
snaplen_map,
so_rule_memcap_map,
stateful_map,
};
const ConvertMap* protected_content_map = &protected_content_api;
+
+/*************************************************
+ ************* sidechannel ****************
+ *************************************************/
+
+// FIXIT-H: This is temporary and needs to be translated to an appropriate `side_channel = {}`
+
+static const std::string sidechannel = "sidechannel";
+static const ConvertMap sidechannel_api =
+{
+ sidechannel,
+ deleted_ctor<& sidechannel>,
+};
+
+const ConvertMap* sidechannel_map = &sidechannel_api;
+
} // namespace config
extern const ConvertMap* ruletype_map;
extern const ConvertMap* sblock_map;
extern const ConvertMap* sdrop_map;
+extern const ConvertMap* sidechannel_map;
extern const ConvertMap* suppress_map;
extern const ConvertMap* threshold_map;
extern const ConvertMap* var_map;
ruletype_map,
sblock_map,
sdrop_map,
+ sidechannel_map,
suppress_map,
threshold_map,
var_map,
/*************************************************
************* dynamicoutput ****************
*************************************************/
-
static const std::string dynamicoutput = "dynamicoutput";
+
static const ConvertMap dynamicoutput_api =
{
dynamicoutput,
};
const ConvertMap* dynamicoutput_map = &dynamicoutput_api;
+
+/*************************************************
+ ************* sidechannel ****************
+ *************************************************/
+static const std::string sidechannel = "sidechannel";
+
+static const ConvertMap sidechannel_api =
+{
+ sidechannel,
+ deleted_ctor<&sidechannel>,
+};
+
+const ConvertMap* sidechannel_map = &sidechannel_api;
+
} // namespace keywords