diff options
Diffstat (limited to 'src/config/account.h')
-rw-r--r-- | src/config/account.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/config/account.h b/src/config/account.h index f82a3e11..e8bda927 100644 --- a/src/config/account.h +++ b/src/config/account.h @@ -72,6 +72,7 @@ typedef struct prof_account_t gchar* tls_policy; gchar* auth_policy; gchar* client; + int max_sessions; } ProfAccount; ProfAccount* account_new(gchar* name, gchar* jid, gchar* password, gchar* eval_password, gboolean enabled, @@ -82,7 +83,7 @@ ProfAccount* account_new(gchar* name, gchar* jid, gchar* password, gchar* eval_p gchar* omemo_policy, GList* omemo_enabled, GList* omemo_disabled, GList* ox_enabled, GList* pgp_enabled, gchar* pgp_keyid, gchar* startscript, gchar* theme, gchar* tls_policy, gchar* auth_policy, - gchar* client); + gchar* client, int max_sessions); char* account_create_connect_jid(ProfAccount* account); gboolean account_eval_password(ProfAccount* account); void account_free(ProfAccount* account); |