diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-09-21 13:45:24 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-09-21 23:30:16 +0200 |
commit | 6434a73984b2527194d6409021693c7032d17570 (patch) | |
tree | 0e13b44283e01d45f2889dd8565e0ea25d4dfcd1 /lib/urldata.h | |
parent | 2e645e21de1b3faef108569a8819778b6755c2f0 (diff) | |
download | curl-6434a73984b2527194d6409021693c7032d17570.tar.gz |
Curl_handler: add 'family' to each protocol
Makes get_protocol_family() faster and it moves the knowledge about the
"families" to each protocol handler, where it belongs.
Closes #5986
Diffstat (limited to 'lib/urldata.h')
-rw-r--r-- | lib/urldata.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/urldata.h b/lib/urldata.h index 81cb5fe57..7bb172493 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -739,6 +739,8 @@ struct Curl_handler { long defport; /* Default port. */ unsigned int protocol; /* See CURLPROTO_* - this needs to be the single specific protocol bit */ + unsigned int family; /* single bit for protocol family; basically the + non-TLS name of the protocol this is */ unsigned int flags; /* Extra particular characteristics, see PROTOPT_* */ }; |