diff options
| -rw-r--r-- | src/common/firewall_message.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/common/firewall_message.h b/src/common/firewall_message.h index a90b27c..a190771 100644 --- a/src/common/firewall_message.h +++ b/src/common/firewall_message.h @@ -1,6 +1,7 @@ #pragma once #include <stddef.h> +#include <stdint.h> #define MESSAGE_MAGIC 0x12345678 @@ -60,6 +61,13 @@ struct capture_info_message int vlan_id[]; }; +#define SESSION_FLAGS_MESSAGE_TOPIC "TOPIC_SESSION_FLAGS" +struct session_flags_message +{ + uint64_t flags; + char *identify_info; +}; + #define FILE_CHUNK_MESSAGE_TOPIC "TOPIC_FILE_CHUNK" struct file_chunk |
