]> saetta.ns0.it Git - zakauthe/libzakauthe/commitdiff
Added function Aute::autentica_get_password.
authorAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Tue, 15 Oct 2013 13:57:48 +0000 (15:57 +0200)
committerAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Tue, 15 Oct 2013 13:57:48 +0000 (15:57 +0200)
configure.ac
src/aute.c
src/libaute.h

index 53434762fa7c0ce006bdccb9f5d7eddb4f1ca70a..e46f2efc7975a159c6003ffbf12961dffb3ca114 100644 (file)
@@ -2,7 +2,7 @@
 # Process this file with autoconf to produce a configure script.
 
 AC_PREREQ(2.59)
-AC_INIT([libaute], [0.1.0], [azagli@libero.it])
+AC_INIT([libaute], [0.1.1], [azagli@libero.it])
 AC_CONFIG_SRCDIR([src/aute.c])
 AC_CONFIG_HEADER([config.h])
 
index ba8b6b42aa044f3cbf98c44e3aef32e37cd777ea..6004d63eb452a8760a38d32b5056dd86933fff51 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2005-2010 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2005-2013 Andrea Zagli <azagli@libero.it>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -178,6 +178,41 @@ gchar
        return ret;
 }
 
+/**
+ * aute_autentica_get_password:
+ * @aute: 
+ * @password:
+ *
+ * Returns: il nome utente se l'autenticazione va a buon fine; 
+ * stringa vuota ("") se viene premuto "Annulla"; NULL in caso di errore.
+ * Nel parametro @password ritorna la password inserita.
+ */
+gchar
+*aute_autentica_get_password (Aute *aute, gchar **password)
+{
+       gchar *(*autentica_get_password) (GSList *parameters, gchar **password);
+       gchar *ret;
+
+       AutePrivate *priv = AUTE_GET_PRIVATE (aute);
+
+       g_return_val_if_fail (priv->module != NULL, NULL);
+
+       ret = NULL;
+
+       /* loading the function */
+       if (!g_module_symbol (priv->module, "autentica_get_password", (gpointer *)&autentica_get_password))
+               {
+                       /* TO DO */
+                       g_warning ("Error g_module_symbol\n");
+                       return NULL;
+               }
+
+       /* calling plugin's function */
+       ret = (*autentica_get_password) (priv->parameters, password);
+
+       return ret;
+}
+
 /**
  * aute_autentica:
  * @aute: 
index bc3606cc067f5add487598b8a6dedb4593c11fd8..7de5cc76c1eca79a2ebcd022e87986153f33643d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2005-2010 Andrea Zagli <azagli@libero.it>
+ * Copyright 2005-2013 Andrea Zagli <azagli@libero.it>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -54,6 +54,7 @@ Aute *aute_new (void);
 gboolean aute_set_config (Aute *aute, GSList *parameters);
 
 gchar *aute_autentica (Aute *aute);
+gchar *aute_autentica_get_password (Aute *aute, gchar **password);
 
 GtkWidget *aute_get_management_gui (Aute *aute);