diff options
author | Daniel Stenberg <daniel@haxx.se> | 2021-01-05 17:22:09 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-01-06 15:23:41 +0100 |
commit | f52c6981c53ae55b3f9e9179c698a66bd2f7b655 (patch) | |
tree | 3e90890823addae75241108670137973fcba8d6d /include | |
parent | ab525c059eb44883db32c728a667a2a65974e37c (diff) | |
download | curl-f52c6981c53ae55b3f9e9179c698a66bd2f7b655.tar.gz |
curl.h: add CURLPROTO_GOPHERS as own protocol identifier
Follow-up to a1f06f32b860, to make sure it can be handled separately
from plain gopher.
Closes #6418
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 6b5f97a5e..3c0461bc2 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -1016,6 +1016,7 @@ typedef CURLSTScode (*curl_hstswrite_callback)(CURL *easy, #define CURLPROTO_SMB (1<<26) #define CURLPROTO_SMBS (1<<27) #define CURLPROTO_MQTT (1<<28) +#define CURLPROTO_GOPHERS (1<<29) #define CURLPROTO_ALL (~0) /* enable everything */ /* long may be 32 or 64 bits, but we should never depend on anything else |