diff options
Diffstat (limited to 'src/options.h')
-rw-r--r-- | src/options.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/options.h b/src/options.h index 2e8c874..cf4dec8 100644 --- a/src/options.h +++ b/src/options.h @@ -228,6 +228,7 @@ struct options secure_protocol_tlsv1, secure_protocol_tlsv1_1, secure_protocol_tlsv1_2, + secure_protocol_tlsv1_3, secure_protocol_pfs } secure_protocol; /* type of secure protocol to use. */ int check_cert; /* whether to validate the server's cert */ @@ -256,6 +257,8 @@ struct options bool ftps_fallback_to_ftp; bool ftps_implicit; bool ftps_clear_data_connection; + + char *tls_ciphers_string; #endif /* HAVE_SSL */ bool cookies; /* whether cookies are used. */ @@ -338,6 +341,9 @@ struct options bool hsts; char *hsts_file; #endif + + const char *homedir; /* the homedir of the running process */ + const char *wgetrcfile; /* the wgetrc file to be loaded */ }; extern struct options opt; |