about summary refs log tree commit diff stats
path: root/src/main.c
diff options
context:
space:
mode:
authorTomás Senart <tomas@soundcloud.com>2013-10-14 21:22:46 +0200
committerTomás Senart <tomas@soundcloud.com>2013-10-14 21:22:46 +0200
commitac7ec7f2d182d75ea15c5b07009709f106f6e691 (patch)
tree16c508a464a8d4ccea676e9d46489e2ec2b49001 /src/main.c
parent3cc080b06acc2e2e35bbdad6dedcac008b46ee02 (diff)
downloadprofani-tty-ac7ec7f2d182d75ea15c5b07009709f106f6e691.tar.gz
Connect to an account on start-up
This commit enables connecting to an account on startup which enables
the use case of having different pre-configured scripts which start
different profanity processes for different accounts. This only makes
sense in the light of not supporting many accounts connected per
process.
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 253c9237..6e6de9eb 100644
--- a/src/main.c
+++ b/src/main.c
@@ -32,6 +32,7 @@
 static gboolean disable_tls = FALSE;
 static gboolean version = FALSE;
 static char *log = "INFO";
+static char *account_name = "";
 
 int
 main(int argc, char **argv)
@@ -40,6 +41,7 @@ main(int argc, char **argv)
     {
         { "version", 'v', 0, G_OPTION_ARG_NONE, &version, "Show version information", NULL },
         { "disable-tls", 'd', 0, G_OPTION_ARG_NONE, &disable_tls, "Disable TLS", NULL },
+        { "account", 'a', 0, G_OPTION_ARG_STRING, &account_name, "Auto connect to an account on start-up" },
         { "log",'l', 0, G_OPTION_ARG_STRING, &log, "Set logging levels, DEBUG, INFO (default), WARN, ERROR", "LEVEL" },
         { NULL }
     };
@@ -77,7 +79,7 @@ main(int argc, char **argv)
         return 0;
     }
 
-    prof_run(disable_tls, log);
+    prof_run(disable_tls, log, account_name);
 
     return 0;
 }