]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
rust: remove duplicate constants definitions in C
authorPhilippe Antoine <pantoine@oisf.net>
Sat, 29 Apr 2023 14:59:55 +0000 (16:59 +0200)
committerVictor Julien <vjulien@oisf.net>
Fri, 9 Jun 2023 08:44:11 +0000 (10:44 +0200)
src/rust.h

index 2916417ee78e44d5d413cab77f9192daa484b56a..12c90e67f30d4265005b34fc7748dd5310db8797 100644 (file)
@@ -25,15 +25,6 @@ typedef struct HttpRangeContainerBlock HttpRangeContainerBlock;
 #include "rust-context.h"
 #include "rust-bindings.h"
 
-/* Some manual exports from Rust as we are not yet exporting constants with
- * cbindgen. */
-#define SC_MD5_LEN    16
-#define SC_SHA1_LEN   20
-#define SC_SHA256_LEN 32
-
-/* Length of an MD5 hex string, not including a trailing NUL. */
-#define SC_MD5_HEX_LEN 32
-
 #define JB_SET_STRING(jb, key, val) jb_set_formatted((jb), "\"" key "\":\"" val "\"")
 #define JB_SET_TRUE(jb, key) jb_set_formatted((jb), "\"" key "\":true")
 #define JB_SET_FALSE(jb, key) jb_set_formatted((jb), "\"" key "\":false")