summaryrefslogtreecommitdiff
path: root/vchat-config.h
diff options
context:
space:
mode:
authorerdgeist <>2010-08-27 13:20:16 +0000
committererdgeist <>2010-08-27 13:20:16 +0000
commitedad5cf6e2b7604204d6246be5fe6b6dd8532fa0 (patch)
treed47c713620fcaa097ea66c19b285bb8be62c2f03 /vchat-config.h
parent6eb716f8db302dcf51113a7f8c99c18ebcb6b07e (diff)
Tidy up ssl code, move all ssl related stuff to vchat-ssl and clean up some wrinkles in cert verification
Diffstat (limited to 'vchat-config.h')
-rwxr-xr-xvchat-config.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/vchat-config.h b/vchat-config.h
index 3511c68..4409107 100755
--- a/vchat-config.h
+++ b/vchat-config.h
@@ -23,7 +23,6 @@
23#endif 23#endif
24 24
25/* configuration array with structure as defined in vchat.h */ 25/* configuration array with structure as defined in vchat.h */
26extern unsigned int ignssl;
27extern unsigned int usetime; 26extern unsigned int usetime;
28extern unsigned int hscroll; 27extern unsigned int hscroll;
29 28
@@ -41,7 +40,7 @@ static volatile configoption configoptions[] = {
41 {CF_LOGINSCRIPT, CO_STR, "loginscript","~/.vchat/loginscript", NULL, { NULL } }, 40 {CF_LOGINSCRIPT, CO_STR, "loginscript","~/.vchat/loginscript", NULL, { NULL } },
42 {CF_ENCODING, CO_STR, "encoding", NULL, NULL, { .pstr = &encoding }}, 41 {CF_ENCODING, CO_STR, "encoding", NULL, NULL, { .pstr = &encoding }},
43 {CF_USESSL, CO_INT, "usessl", (char *) 1, (char *)-1, { NULL } }, 42 {CF_USESSL, CO_INT, "usessl", (char *) 1, (char *)-1, { NULL } },
44 {CF_IGNSSL, CO_INT, "ignssl", (char *) 0, (char *)-1, { .pint = &ignssl } }, 43 {CF_IGNSSL, CO_INT, "ignssl", (char *) 0, (char *)-1, { NULL } },
45 {CF_USECERT, CO_INT, "usecert", (char *) 1, (char *)-1, { NULL } }, 44 {CF_USECERT, CO_INT, "usecert", (char *) 1, (char *)-1, { NULL } },
46 {CF_USETIME, CO_INT, "usetime", (char *) 1, (char *)-1, { .pint = &usetime } }, 45 {CF_USETIME, CO_INT, "usetime", (char *) 1, (char *)-1, { .pint = &usetime } },
47 {CF_USETOPIC, CO_INT, "usetopicbar",(char *) 1, (char *)-1, { NULL } }, 46 {CF_USETOPIC, CO_INT, "usetopicbar",(char *) 1, (char *)-1, { NULL } },