Actions
Bug #5012
closed
PA
Remove duplicate definition of constants between C and Rust
Bug #5012:
Remove duplicate definition of constants between C and Rust
Affected Versions:
Effort:
Difficulty:
Label:
Description
Discussion comes from https://github.com/OISF/suricata/pull/6840
PGSQL_LOG_PASSWORDS is not exported by cbindgen
With the following patch
-pub const PGSQL_LOG_PASSWORDS: u32 = BIT_U32!(1);
+pub const PGSQL_LOG_PASSWORDS: u32 = 2;
it does get exported
FLOW_DIR_REVERSED is another example
CI should ensure this get no longer added
Actions