This structure is used by GetFilterVersion to obtain the version information about the filter.
typedef struct _HTTP_FILTER_VERSION
{
DWORD dwServerFilterVersion;
DWORD dwFilterVersion;
CHAR lpszFilterDesc[SF_MAX_FILTER_DESC_LEN+1];
DWORD dwFlags;
} HTTP_FILTER_VERSION, *PHTTP_FILTER_VERSION;
Value | Meaning |
---|---|
SF_NOTIFY_ORDER_DEFAULT | Load the filter at the default priority (recommended). |
SF_NOTIFY_ORDER_LOW | Load the filter at a low priority. |
SF_NOTIFY_ORDER_MEDIUM | Load the filter at a medium priority. |
SF_NOTIFY_ORDER_HIGH | Load the filter at a high priority. |