HTTP_FILTER_AUTHENT (Windows CE 5.0)
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.
typedef struct _HTTP_FILTER_AUTHENT{ CHAR*pszUser;
DWORDcbUserBuff;
CHAR*pszPassword;
DWORDcbPasswordBuff;
} 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
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
Send Feedback on this topic to the authors