fuzz: enable by default all protocols

That means DNP3, ENIP and NFS

Ticket: #6189
pull/9449/head
Philippe Antoine 3 years ago committed by Victor Julien
parent e65c052414
commit 30b5338af3

@ -1902,6 +1902,11 @@ int AppLayerProtoDetectConfProtoDetectionEnabledDefault(
if (RunmodeIsUnittests())
goto enabled;
#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
// so that fuzzig takes place for DNP3 and such
default_enabled = true;
#endif
r = snprintf(param, sizeof(param), "%s%s%s", "app-layer.protocols.",
alproto, ".enabled");
if (r < 0) {

Loading…
Cancel
Save