Go to the documentation of this file.
24 #ifndef SURICATA_ACTION_GLOBALS_H
25 #define SURICATA_ACTION_GLOBALS_H
29 #define ACTION_ALERT 0x01
30 #define ACTION_DROP 0x02
31 #define ACTION_REJECT 0x04
32 #define ACTION_REJECT_DST 0x08
33 #define ACTION_REJECT_BOTH 0x10
34 #define ACTION_PASS 0x20
35 #define ACTION_CONFIG 0x40
37 #define ACTION_REJECT_ANY (ACTION_REJECT|ACTION_REJECT_DST|ACTION_REJECT_BOTH)
39 #define ACTION_DROP_REJECT (ACTION_REJECT_ANY | ACTION_DROP)