Share via


HTTP_FILTER_AUTHENT (Windows Embedded CE 6.0)

1/6/2010

This structure contains user name and password information for use when the server is about to authenticate the client. The structure is pointed to by the pvNotification parameter in the HttpFilterProc function when NotificationType is SF_NOTIFY_AUTHENTICATION.

Syntax

typedef struct _HTTP_FILTER_AUTHENT{ 
  CHAR* pszUser;
  DWORD cbUserBuff;
  CHAR* pszPassword;
  DWORD cbPasswordBuff;
} HTTP_FILTER_AUTHENT, *PHTTP_FILTER_AUTHENT;

Parameters

  • pszUser
    Pointer to a string containing the user name for this request. An empty string indicates an anonymous user.
  • cbUserBuff
    Size of the buffer pointed to by pszUser. This is guaranteed to be at least SF_MAX_USERNAME.
  • pszPassword
    Pointer to a string containing the password for this request.
  • cbPasswordBuff
    Size of the buffer pointed to by pszPassword. This is guaranteed to be at least SF_MAX_PASSWORD.

Requirements

Header httpfilt.h
Windows Embedded CE Windows CE 3.0 and later

See Also

Reference

Web Server Structures
HttpFilterProc