summaryrefslogtreecommitdiff
path: root/lib/urldata.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2022-12-30 15:04:57 +0100
committerDaniel Stenberg <daniel@haxx.se>2022-12-31 16:56:21 +0100
commitbecfe2ec783a40254761606a09069cf258d424ef (patch)
tree19f3f7ace874900ad1d3b10d997014af986b078b /lib/urldata.h
parentdf856cb5c94665c9083dc8be5bb02392d841cc1e (diff)
downloadcurl-becfe2ec783a40254761606a09069cf258d424ef.tar.gz
urldata: cease storing TLS auth type
The only TLS auth type libcurl ever supported is SRP and that is the default type. Since nobody ever sets any other type, there is no point in wasting space to store the set type and code to check the type. If TLS auth is used, SRP is now implied. Closes #10181
Diffstat (limited to 'lib/urldata.h')
-rw-r--r--lib/urldata.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index a70729c7e..a8af5dba3 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -283,7 +283,6 @@ struct ssl_primary_config {
#ifdef USE_TLS_SRP
char *username; /* TLS username (for, e.g., SRP) */
char *password; /* TLS password (for, e.g., SRP) */
- enum CURL_TLSAUTH authtype; /* TLS authentication type (default SRP) */
#endif
char *curves; /* list of curves to use */
unsigned char ssl_options; /* the CURLOPT_SSL_OPTIONS bitmask */