From 2cf4cbdf20b0154470c4b1642a5f8cc0cd97cf7c Mon Sep 17 00:00:00 2001 From: Andreas Kotes Date: Tue, 15 Apr 2014 13:15:16 +0200 Subject: version bump 0.18 --- vchat-config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vchat-config.h') diff --git a/vchat-config.h b/vchat-config.h index 8392d18..d2f29a0 100755 --- a/vchat-config.h +++ b/vchat-config.h @@ -29,7 +29,7 @@ extern unsigned int hscroll; static volatile configoption configoptions[] = { /* config-option type name in file default value value localvar */ {CF_NICK, CO_STR, "nick", NULL, NULL, { NULL } }, - {CF_FROM, CO_STR, "from", "vc-alpha-0.17", NULL, { NULL } }, + {CF_FROM, CO_STR, "from", "vc-alpha-0.18", NULL, { NULL } }, {CF_SERVERHOST, CO_STR, "host", "localhost", NULL, { NULL } }, {CF_SERVERPORT, CO_STR, "port", "2325", NULL, { NULL } }, {CF_CIPHERSUITE, CO_STR, "ciphers", "HIGH:MEDIUM", NULL, { NULL } }, -- cgit v1.2.3 From 0171de7653dbc409f8a936e80a8c9bc3ab3d1bdb Mon Sep 17 00:00:00 2001 From: Andreas Kotes Date: Wed, 16 Apr 2014 15:20:49 +0200 Subject: version 0.19 * fixed version string display * failing on SSL verify failures * removed ignssl option * reenabled ciphers options * added verifyssl option (cert verify depth) --- vchat-config.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'vchat-config.h') diff --git a/vchat-config.h b/vchat-config.h index d2f29a0..2628dc1 100755 --- a/vchat-config.h +++ b/vchat-config.h @@ -29,10 +29,10 @@ extern unsigned int hscroll; static volatile configoption configoptions[] = { /* config-option type name in file default value value localvar */ {CF_NICK, CO_STR, "nick", NULL, NULL, { NULL } }, - {CF_FROM, CO_STR, "from", "vc-alpha-0.18", NULL, { NULL } }, + {CF_FROM, CO_STR, "from", "vc-alpha-0.19", NULL, { NULL } }, {CF_SERVERHOST, CO_STR, "host", "localhost", NULL, { NULL } }, {CF_SERVERPORT, CO_STR, "port", "2325", NULL, { NULL } }, - {CF_CIPHERSUITE, CO_STR, "ciphers", "HIGH:MEDIUM", NULL, { NULL } }, + {CF_CIPHERSUITE, CO_STR, "ciphers", NULL, NULL, { NULL } }, {CF_CONFIGFILE, CO_STR, "conffile", "~/.vchat/config", NULL, { NULL } }, {CF_CERTFILE, CO_STR, "certfile", "~/.vchat/cert", NULL, { NULL } }, {CF_KEYFILE, CO_STR, "keyfile", "~/.vchat/key", NULL, { NULL } }, @@ -40,7 +40,7 @@ static volatile configoption configoptions[] = { {CF_LOGINSCRIPT, CO_STR, "loginscript","~/.vchat/loginscript", NULL, { NULL } }, {CF_ENCODING, CO_STR, "encoding", NULL, NULL, { .pstr = &encoding }}, {CF_USESSL, CO_INT, "usessl", (char *) 1, (char *)-1, { NULL } }, - {CF_IGNSSL, CO_INT, "ignssl", (char *) 0, (char *)-1, { NULL } }, + {CF_VERIFYSSL, CO_INT, "verifyssl", (char *) 2, (char *)-1, { NULL } }, {CF_USECERT, CO_INT, "usecert", (char *) 1, (char *)-1, { NULL } }, {CF_USETIME, CO_INT, "usetime", (char *) 1, (char *)-1, { .pint = &usetime } }, {CF_USETOPIC, CO_INT, "usetopicbar",(char *) 1, (char *)-1, { NULL } }, -- cgit v1.2.3 From 3297473435ad53b6691d6c772f83457a72134c48 Mon Sep 17 00:00:00 2001 From: Andreas Kotes Date: Wed, 16 Apr 2014 16:27:00 +0200 Subject: store & verify server cert fingerprint --- vchat-config.h | 1 + 1 file changed, 1 insertion(+) (limited to 'vchat-config.h') diff --git a/vchat-config.h b/vchat-config.h index 2628dc1..0291100 100755 --- a/vchat-config.h +++ b/vchat-config.h @@ -38,6 +38,7 @@ static volatile configoption configoptions[] = { {CF_KEYFILE, CO_STR, "keyfile", "~/.vchat/key", NULL, { NULL } }, {CF_FORMFILE, CO_STR, "formatfile", "~/.vchat/formats", NULL, { NULL } }, {CF_LOGINSCRIPT, CO_STR, "loginscript","~/.vchat/loginscript", NULL, { NULL } }, + {CF_FINGERPRINT, CO_STR, "fingerprint","~/.vchat/fingerprint", NULL, { NULL } }, {CF_ENCODING, CO_STR, "encoding", NULL, NULL, { .pstr = &encoding }}, {CF_USESSL, CO_INT, "usessl", (char *) 1, (char *)-1, { NULL } }, {CF_VERIFYSSL, CO_INT, "verifyssl", (char *) 2, (char *)-1, { NULL } }, -- cgit v1.2.3