Actions
Optimization #4154
closedTask #4772: tracking: parity between fields logged and fields available for detection
Feature #4153: app-layer: rust derive style macros to generate common code
Rust Parsers: Abstract AppLayer events to a derive macro
Effort:
Difficulty:
Label:
Description
Most parsers duplicate code to deal with application layer events. Instead, a parser should be able to define the events in an enum and have the rest of the code generated via a derive macro.
For example, given an enum like:
#[derive(Debug, PartialEq, AppLayerEvent)] pub enum DNSEvent { MalformedData, NotRequest, NotResponse, ZFlagSet, }
the following utility functions will be generated:
- from_id
- as_i32
- to_cstring
- from_cstring
- get_event_info
- get_event_info_by_id
Updated by Jason Ish almost 4 years ago
- Related to Feature #4153: app-layer: rust derive style macros to generate common code added
Updated by Jason Ish almost 4 years ago
Updated by Victor Julien about 3 years ago
- Status changed from Assigned to In Progress
Updated by Jason Ish about 3 years ago
- Status changed from In Progress to In Review
Updated by Jason Ish about 3 years ago
- Status changed from In Review to Feedback
Merged into master. No backports required.
Actions