about summary refs log tree commit diff stats
path: root/src/config/account.h
diff options
context:
space:
mode:
authorPeter Vilim <peterlvilim@users.noreply.github.com>2015-01-06 23:00:02 -0600
committerPeter Vilim <peterlvilim@users.noreply.github.com>2015-01-06 23:00:02 -0600
commit401835f32a61c6e47bd34be20753f4555c56b064 (patch)
treed2e51d04112d760d5b4da82a2bd0ca9a58410d4b /src/config/account.h
parent99a87a148f13854f4337edf0a6b2a56cae29d5c3 (diff)
downloadprofani-tty-401835f32a61c6e47bd34be20753f4555c56b064.tar.gz
Add support for evaluated password
Diffstat (limited to 'src/config/account.h')
-rw-r--r--src/config/account.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/config/account.h b/src/config/account.h
index 49477f95..ab43234d 100644
--- a/src/config/account.h
+++ b/src/config/account.h
@@ -41,6 +41,7 @@ typedef struct prof_account_t {
     gchar *name;
     gchar *jid;
     gchar *password;
+    gchar *eval_password;
     gchar *resource;
     gchar *server;
     int port;
@@ -61,7 +62,7 @@ typedef struct prof_account_t {
 } ProfAccount;
 
 ProfAccount* account_new(const gchar * const name, const gchar * const jid,
-    const gchar * const passord, gboolean enabled, const gchar * const server,
+    const gchar * const passord, const gchar * eval_password, gboolean enabled, const gchar * const server,
     int port, const gchar * const resource, const gchar * const last_presence,
     const gchar * const login_presence, int priority_online, int priority_chat,
     int priority_away, int priority_xa, int priority_dnd,