HTTP_FILTER_LOG (Windows CE 5.0)

Send Feedback

This structure contains information about to be written by the server to its log file. The structure is pointed to by the pvNotification parameter in the HttpFilterProc function when the NotificationType parameter is SF_NOTIFY_LOG.

typedef struct _HTTP_FILTER_LOG{const CHAR*pszClientHostName;
  const CHAR*pszClientUserName;
  const CHAR*pszServerName;
  const CHAR*pszOperation;
  const CHAR*pszTarget;
  const CHAR*pszParameters;
  DWORDdwHttpStatus;
  DWORDdwWin32Status;
  DWORDdwBytesSent;
  DWORDdwBytesRecvd;
  DWORDmsTimeForProcessing;
} HTTP_FILTER_LOG, *PHTTP_FILTER_LOG;

Members

  • pszClientHostName
    Client's host name.
  • pszClientUserName
    Client's user name.
  • pszServerName
    Name of the server to which the client connected.
  • pszOperation
    HTTP command.
  • pszTarget
    Target of the HTTP command.
  • pszParameters
    Parameters passed to the HTTP command.
  • dwHttpStatus
    HTTP return status.
  • dwWin32Status
    Win32 error code.
  • dwBytesSent
    Number of bytes sent.
  • dwBytesRecvd
    Number of bytes received.
  • msTimeForProcessing
    Time, in milliseconds, used for processing.

Remarks

The strings cannot be changed but pointers can be replaced. If the string pointers are changed, the memory they point to must remain valid until the next notification.

Requirements

Pocket PC: Pocket PC 2000 and later.
Smartphone: Smartphone 2002 and later.
OS Versions: Windows CE 3.0 and later.
Header: Httpfilt.h.

See Also

HttpFilterProc

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.