typedef struct {
char *uri; /* Full URI of operation */
char *realm; /* for HTTP auth, NULL for others */
gboolean previous_authn_failed;
/* TRUE if there were credentials specified
* for this request, but they resulted in
* an authorization error.
* ("you gave me the wrong pw!")
*
* FALSE if there were no credentials specified
* but they are required to continue
*
*/
enum {
AuthTypeBasic, /* Password will be transmitted unencrypted */
AuthTypeDigest /* Digest is transferred, not plaintext credentials */
} auth_type;
} GnomeVFSCallbackSimpleAuthIn; |