Important: |
---|
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist. |
A version of this page is also available for
4/8/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 pvNotificationparameter in the HttpFilterProcfunction when NotificationTypeis 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 |
Windows Mobile | Pocket PC 2000 and later, Smartphone 2002 and later |