diff options
author | nobody <nobody@localhost> | 2002-05-16 00:19:25 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2002-05-16 00:19:25 +0800 |
commit | acdd664f5104862243db8c3a0689d5ac4ede774e (patch) | |
tree | 9a14849dd3a40bd1667b88d689e2aa7d58d08bce /camel/camel-sasl-login.c | |
parent | 74f4231f4eb650f0243ff39ab5a085b1df4f7697 (diff) | |
download | gsoc2013-evolution-GNOME_UTILS_2_0_2.tar gsoc2013-evolution-GNOME_UTILS_2_0_2.tar.gz gsoc2013-evolution-GNOME_UTILS_2_0_2.tar.bz2 gsoc2013-evolution-GNOME_UTILS_2_0_2.tar.lz gsoc2013-evolution-GNOME_UTILS_2_0_2.tar.xz gsoc2013-evolution-GNOME_UTILS_2_0_2.tar.zst gsoc2013-evolution-GNOME_UTILS_2_0_2.zip |
This commit was manufactured by cvs2svn to create tagGNOME_UTILS_2_0_2
'GNOME_UTILS_2_0_2'.
svn path=/tags/GNOME_UTILS_2_0_2/; revision=16870
Diffstat (limited to 'camel/camel-sasl-login.c')
-rw-r--r-- | camel/camel-sasl-login.c | 134 |
1 files changed, 0 insertions, 134 deletions
diff --git a/camel/camel-sasl-login.c b/camel/camel-sasl-login.c deleted file mode 100644 index f6c3c9e5f8..0000000000 --- a/camel/camel-sasl-login.c +++ /dev/null @@ -1,134 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -/* - * Authors: Jeffrey Stedfast <fejj@ximian.com> - * - * Copyright 2001 Ximian, Inc. (www.ximian.com) - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of version 2 of the GNU General Public - * License as published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public - * License along with this program; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - * - */ - -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif - -#include <string.h> -#include "camel-sasl-login.h" -#include "camel-service.h" - -CamelServiceAuthType camel_sasl_login_authtype = { - N_("Login"), - - N_("This option will connect to the server using a " - "simple password."), - - "LOGIN", - TRUE -}; - -enum { - LOGIN_USER, - LOGIN_PASSWD -}; - -static CamelSaslClass *parent_class = NULL; - -/* Returns the class for a CamelSaslLogin */ -#define CSP_CLASS(so) CAMEL_SASL_LOGIN_CLASS (CAMEL_OBJECT_GET_CLASS (so)) - -static GByteArray *login_challenge (CamelSasl *sasl, GByteArray *token, CamelException *ex); - -struct _CamelSaslLoginPrivate { - int state; -}; - -static void -camel_sasl_login_class_init (CamelSaslLoginClass *camel_sasl_login_class) -{ - CamelSaslClass *camel_sasl_class = CAMEL_SASL_CLASS (camel_sasl_login_class); - - parent_class = CAMEL_SASL_CLASS (camel_type_get_global_classfuncs (camel_sasl_get_type ())); - - /* virtual method overload */ - camel_sasl_class->challenge = login_challenge; -} - -static void -camel_sasl_login_init (gpointer object, gpointer klass) -{ - CamelSaslLogin *sasl_login = CAMEL_SASL_LOGIN (object); - - sasl_login->priv = g_new0 (struct _CamelSaslLoginPrivate, 1); -} - -static void -camel_sasl_login_finalize (CamelObject *object) -{ - CamelSaslLogin *sasl = CAMEL_SASL_LOGIN (object); - - g_free (sasl->priv); -} - - -CamelType -camel_sasl_login_get_type (void) -{ - static CamelType type = CAMEL_INVALID_TYPE; - - if (type == CAMEL_INVALID_TYPE) { - type = camel_type_register (camel_sasl_get_type (), - "CamelSaslLogin", - sizeof (CamelSaslLogin), - sizeof (CamelSaslLoginClass), - (CamelObjectClassInitFunc) camel_sasl_login_class_init, - NULL, - (CamelObjectInitFunc) camel_sasl_login_init, - (CamelObjectFinalizeFunc) camel_sasl_login_finalize); - } - - return type; -} - -static GByteArray * -login_challenge (CamelSasl *sasl, GByteArray *token, CamelException *ex) -{ - struct _CamelSaslLoginPrivate *priv = CAMEL_SASL_LOGIN (sasl)->priv; - GByteArray *buf = NULL; - CamelURL *url = sasl->service->url; - - g_return_val_if_fail (url->passwd != NULL, NULL); - - switch (priv->state) { - case LOGIN_USER: - buf = g_byte_array_new (); - g_byte_array_append (buf, url->user, strlen (url->user)); - break; - case LOGIN_PASSWD: - buf = g_byte_array_new (); - g_byte_array_append (buf, url->passwd, strlen (url->passwd)); - - sasl->authenticated = TRUE; - break; - default: - if (!camel_exception_is_set (ex)) { - camel_exception_set (ex, CAMEL_EXCEPTION_SERVICE_CANT_AUTHENTICATE, - _("Unknown authentication state.")); - } - } - - priv->state++; - - return buf; -} |