HTTP_FILTER_AUTHENT
typedef struct _HTTP_FILTER_AUTHENT
{
CHAR
* pszUser;
DWORD cbUserBuff;
CHAR
* pszPassword;
DWORD cbPasswordBuff;
} HTTP_FILTER_AUTHENT, *PHTTP_FILTER_AUTHENT;
Members
pszUser
[in/out] A
pointer to a string containing the user name for this request. An empty string
indicates an anonymous user.
cbUserBuff
[in] The size
of the buffer pointed to by pszUser. This is guaranteed to be at least
SF_MAX_USERNAME.
pszPassword
[in/out] A
pointer to a string containing the password for this request.
cbPasswordBuff
[in] The size
of the buffer pointed to by pszPassword. This is guaranteed to be at
least SF_MAX_PASSWORD.
Remarks
When the
server is about to authenticate the client, this structure is pointed to by the
pvNotification in the HttpFilterProc when notificationType
is SF_NOTIFY_AUTHENTICATION. This can be used to implement a different
authentication scheme.
See Also