mirror of
https://github.com/openappsec/openappsec.git
synced 2025-06-28 16:41:02 +03:00
27 lines
322 B
C++
27 lines
322 B
C++
#ifndef __IPS_ENUMS_H__
|
|
#define __IPS_ENUMS_H__
|
|
|
|
namespace IPSSignatureSubTypes
|
|
{
|
|
|
|
enum class SignatureAction
|
|
{
|
|
PREVENT,
|
|
DETECT,
|
|
IGNORE
|
|
};
|
|
|
|
enum class IPSLevel
|
|
{
|
|
VERY_LOW,
|
|
LOW,
|
|
MEDIUM_LOW,
|
|
MEDIUM,
|
|
MEDIUM_HIGH,
|
|
HIGH,
|
|
CRITICAL
|
|
};
|
|
|
|
} // IPSSignatureSubTypes
|
|
#endif // __IPS_ENUMS_H__
|