The ServerSupportFunction callback function can be used by ISAPI filters to accomplish a wide variety of tasks.
BOOL WINAPI * ServerSupportFunction(
PHTTP_FILTER_CONTEXT pfc,
enum SF_REQ_TYPE sfReq,
PVOID pData,
DWORD ul1,
DWORD ul2
);
The parameter sfReq specifies the particular support function that is to be executed by IIS. The remaining parameters are described in the individual support function sections; see the following list.
Note If a parameter is designated as unused for a particular support function, you should set the parameter to NULL or 0, as appropriate.
SF_REQ_ADD_HEADERS_ON_DENIAL |
SF_REQ_DISABLE_NOTIFICATIONS |
SF_REQ_GET_CONNID |
SF_REQ_GET_PROPERTY |
SF_REQ_NORMALIZE_URL |
SF_REQ_SEND_RESPONSE_HEADER |
SF_REQ_SET_NEXT_READ_SIZE |
SF_REQ_SET_PROXY_INFO |