From c3db21df6ef94b5fb91a5c0dbdcfc518c299b37c Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Sun, 1 Apr 2001 22:10:55 +0000 Subject: Updated the authtype values. 2001-04-01 Jeffrey Stedfast * camel-sasl-plain.c: * camel-sasl-anonymous.c: * camel-sasl-digest-md5.c: * camel-sasl-cram-md5.c: * camel-sasl-kerberos4.c: Updated the authtype values. * camel-service.h: Added another field to CamelServiceAuthType that specifies whether or not the mechanism supports "quick auth" which means that the client can send the initial challenge in the AUTH request. * camel-sasl.c (camel_sasl_new): Add support for LOGIN. (camel_sasl_authtype_list): Here too. (camel_sasl_authtype): And finally here. * camel-sasl-plain.c: Define camel_sasl_login_authtype. * providers/smtp/camel-smtp-transport.c (smtp_auth): Only unref the SASL object if it exists. svn path=/trunk/; revision=9086 --- camel/camel-service.h | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'camel/camel-service.h') diff --git a/camel/camel-service.h b/camel/camel-service.h index 7850aca4e6..9c180e5d98 100644 --- a/camel/camel-service.h +++ b/camel/camel-service.h @@ -83,8 +83,14 @@ typedef struct { /* query_auth_types returns a GList of these */ typedef struct { - char *name, *description, *authproto; - gboolean need_password; + char *name; /* user-friendly name */ + char *description; + char *authproto; + + gboolean need_password; /* needs a password to authenticate */ + + gboolean quick_login; /* client can send initial challenge to + * speed up the authentication procedure */ } CamelServiceAuthType; -- cgit v1.2.3