about summary refs log tree commit diff stats
path: root/src/config/account.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-03-23 23:38:06 +0000
committerJames Booth <boothj5@gmail.com>2015-03-23 23:38:06 +0000
commit475dfebd97b8adace3ee56683b968da752a3ae02 (patch)
treedac7c25cdb51c8b562ad9543b422709cbf7a658f /src/config/account.h
parent8a5d1fef2930036d34bf02d0b15d0b6239725ffd (diff)
downloadprofani-tty-475dfebd97b8adace3ee56683b968da752a3ae02.tar.gz
Added pgpkeyid account setting, send signed presence
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 c237a19e..a49aebd0 100644
--- a/src/config/account.h
+++ b/src/config/account.h
@@ -59,6 +59,7 @@ typedef struct prof_account_t {
     GList *otr_manual;
     GList *otr_opportunistic;
     GList *otr_always;
+    gchar *pgp_keyid;
 } ProfAccount;
 
 ProfAccount* account_new(const gchar * const name, const gchar * const jid,
@@ -68,7 +69,7 @@ ProfAccount* account_new(const gchar * const name, const gchar * const jid,
     int priority_away, int priority_xa, int priority_dnd,
     const gchar * const muc_service, const gchar * const muc_nick,
     const gchar * const otr_policy, GList *otr_manual, GList *otr_opportunistic,
-    GList *otr_always);
+    GList *otr_always, const gchar * const pgp_keyid);
 
 char* account_create_full_jid(ProfAccount *account);