about summary refs log tree commit diff stats
path: root/src/config
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-10-23 23:07:27 +0100
committerJames Booth <boothj5@gmail.com>2014-10-23 23:07:27 +0100
commit552d88b931341b035548923b8e099bd25741064c (patch)
tree99b08e8a5fa5f1928476b2bc3ac8b35e92a1b44d /src/config
parent91883fd95d374cea3930f404e2ee3951acc76b4d (diff)
downloadprofani-tty-552d88b931341b035548923b8e099bd25741064c.tar.gz
Added /account clear [account] server
Diffstat (limited to 'src/config')
-rw-r--r--src/config/accounts.c10
-rw-r--r--src/config/accounts.h1
2 files changed, 11 insertions, 0 deletions
diff --git a/src/config/accounts.c b/src/config/accounts.c
index 0bea55b4..fffb45e1 100644
--- a/src/config/accounts.c
+++ b/src/config/accounts.c
@@ -441,6 +441,15 @@ _accounts_clear_password(const char * const account_name)
 }
 
 static void
+_accounts_clear_server(const char * const account_name)
+{
+    if (accounts_account_exists(account_name)) {
+        g_key_file_remove_key(accounts, account_name, "server", NULL);
+        _save_accounts();
+    }
+}
+
+static void
 _accounts_clear_otr(const char * const account_name)
 {
     if (accounts_account_exists(account_name)) {
@@ -862,6 +871,7 @@ accounts_init_module(void)
     accounts_set_priority_all = _accounts_set_priority_all;
     accounts_get_priority_for_presence_type = _accounts_get_priority_for_presence_type;
     accounts_clear_password = _accounts_clear_password;
+    accounts_clear_server = _accounts_clear_server;
     accounts_clear_otr = _accounts_clear_otr;
     accounts_add_otr_policy = _accounts_add_otr_policy;
 }
diff --git a/src/config/accounts.h b/src/config/accounts.h
index 299fdf0b..a16c0cfb 100644
--- a/src/config/accounts.h
+++ b/src/config/accounts.h
@@ -78,6 +78,7 @@ void (*accounts_set_priority_all)(const char * const account_name, const gint va
 gint (*accounts_get_priority_for_presence_type)(const char * const account_name,
     resource_presence_t presence_type);
 void (*accounts_clear_password)(const char * const account_name);
+void (*accounts_clear_server)(const char * const account_name);
 void (*accounts_clear_otr)(const char * const account_name);
 void (*accounts_add_otr_policy)(const char * const account_name, const char * const contact_jid, const char * const policy);