HTTP_FILTER_LOG Structure
Visual Studio 2005
This structure is pointed to by the pvNotification in the CHttpFilter::HttpFilterProc when NotificationType is SF_NOTIFY_LOG, which indicates that the server is about to log information to the server log file.
typedef struct _HTTP_FILTER_LOG
{
const CHAR * pszClientHostName; //IN/OUT
const CHAR * pszClientUserName; //IN/OUT
const CHAR * pszServerName; //IN/OUT
const CHAR * pszOperation; //IN/OUT
const CHAR * pszTarget; //IN/OUT
const CHAR * pszParameters; //IN/OUT
DWORD dwHttpStatus; //IN/OUT
DWORD dwWin32Status; //IN/OUT
} HTTP_FILTER_LOG, *PHTTP_FILTER_LOG;
Parameters
- pszClientHostName
-
Client's host name.
- pszClientUserName
-
Client's user name.
- pszServerName
-
Name of the server the client connected to.
- pszOperation
-
HTTP command.
- pszTarget
-
Target of the HTTP command.
- pszParameters
-
Parameters passed to the HTTP command.
- dwHttpStatus
-
HTTP return status.
- dwWin32Status
-
Win32 error code.