From: Victor Julien Date: Wed, 27 Apr 2022 14:47:12 +0000 (+0200) Subject: app-layer/events: remove unused function X-Git-Tag: suricata-7.0.0-beta1~617 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=93050c26b323458e3166868ad7656f13bf80d5f1;p=thirdparty%2Fsuricata.git app-layer/events: remove unused function --- diff --git a/src/app-layer-events.c b/src/app-layer-events.c index 6d1842df25..8b14f361f4 100644 --- a/src/app-layer-events.c +++ b/src/app-layer-events.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2014 Open Information Security Foundation +/* Copyright (C) 2014-2022 Open Information Security Foundation * * You can copy, redistribute or modify this Program under the terms of * the GNU General Public License version 2 as published by the Free @@ -120,24 +120,6 @@ void AppLayerDecoderEventsSetEventRaw(AppLayerDecoderEvents **sevents, uint8_t e (*sevents)->events[(*sevents)->cnt++] = event; } -/** - * \brief Set an app layer decoder event. - * - * \param f Pointer to a flow containing DecoderEvents pointer head. If - * the head points to a DecoderEvents instance, a - * new instance would be created and the pointer head would - * would be updated with this new instance - * \param event The event to be stored. - */ -void AppLayerDecoderEventsSetEvent(Flow *f, uint8_t event) -{ - AppLayerDecoderEvents *events = AppLayerParserGetDecoderEvents(f->alparser); - AppLayerDecoderEvents *new = events; - AppLayerDecoderEventsSetEventRaw(&events, event); - if (events != new) - AppLayerParserSetDecoderEvents(f->alparser, events); -} - void AppLayerDecoderEventsResetEvents(AppLayerDecoderEvents *events) { if (events != NULL) diff --git a/src/app-layer-events.h b/src/app-layer-events.h index 2ea0b1cb06..7e0a4a087a 100644 --- a/src/app-layer-events.h +++ b/src/app-layer-events.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2014 Open Information Security Foundation +/* Copyright (C) 2014-2022 Open Information Security Foundation * * You can copy, redistribute or modify this Program under the terms of * the GNU General Public License version 2 as published by the Free @@ -63,7 +63,6 @@ int AppLayerGetPktEventInfo(const char *event_name, int *event_id); int AppLayerGetEventInfoById(int event_id, const char **event_name, AppLayerEventType *event_type); void AppLayerDecoderEventsSetEventRaw(AppLayerDecoderEvents **sevents, uint8_t event); -void AppLayerDecoderEventsSetEvent(Flow *f, uint8_t event); static inline int AppLayerDecoderEventsIsEventSet(AppLayerDecoderEvents *devents, uint8_t event)