diff options
author | Daniel Carl <danielcarl@gmx.de> | 2014-03-03 23:27:29 +0100 |
---|---|---|
committer | Daniel Carl <danielcarl@gmx.de> | 2014-03-03 23:27:29 +0100 |
commit | 81c0fa31cf39a74a08c74dc01611cd2c9416b211 (patch) | |
tree | 751ced26a4ae653937685af3d0071ea99ea4ad81 /src/main.h | |
parent | c944dee2bd8d2851a070346dada1d42b467f1249 (diff) |
Use 'tls-database' instead of deprecated 'ssl-ca-file'.
Diffstat (limited to 'src/main.h')
-rw-r--r-- | src/main.h | 28 |
1 files changed, 15 insertions, 13 deletions
@@ -287,19 +287,21 @@ typedef struct { } State; typedef struct { - time_t cookie_timeout; - int scrollstep; - char *home_page; - char *download_dir; - guint history_max; - char *editor_command; - guint timeoutlen; /* timeout for ambiguous mappings */ - gboolean strict_focus; - GHashTable *headers; /* holds user defined header appended to requests */ - char *nextpattern; /* regex patter nfor prev link matching */ - char *prevpattern; /* regex patter nfor next link matching */ - char *file; /* path to the custome config file */ - char *autocmd; /* command given by --cmd option */ + time_t cookie_timeout; + int scrollstep; + char *home_page; + char *download_dir; + guint history_max; + char *editor_command; + guint timeoutlen; /* timeout for ambiguous mappings */ + gboolean strict_focus; + GHashTable *headers; /* holds user defined header appended to requests */ + char *nextpattern; /* regex patter nfor prev link matching */ + char *prevpattern; /* regex patter nfor next link matching */ + char *file; /* path to the custome config file */ + char *autocmd; /* command given by --cmd option */ + char *cafile; /* path to the ca file */ + GTlsDatabase *tls_db; /* tls database */ } Config; typedef struct { |