diff options
author | Ben Burwell <ben@benburwell.com> | 2020-05-21 15:00:11 -0400 |
---|---|---|
committer | Ben Burwell <ben@benburwell.com> | 2020-06-16 20:30:15 -0400 |
commit | d8c87b67316fa87fdb9bd5c8b6b1d3291d9ebc9f (patch) | |
tree | 11fa34fa971880d47df6e8bfbf98bb3796ff0025 /include | |
parent | 477a4e31d724a9e14f92092c3d2ec8e486b99403 (diff) |
The gemini protocol's "speculative specification" is documented at the
following URLs:
https://gemini.circumlunar.space/docs/spec-spec.txt
gopher://gemini.circumlunar.space/1/docs/spec-spec.txt
gemini://gemini.circumlunar.space/docs/spec-spec.txt
This patch introduces preliminary support for version 0.11.0 of the
specification, as of March 1st 2020.
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 d5f8817d5..8aef99fbb 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -942,6 +942,7 @@ typedef enum { #define CURLPROTO_SMB (1<<26) #define CURLPROTO_SMBS (1<<27) #define CURLPROTO_MQTT (1<<28) +#define CURLPROTO_GEMINI (1<<29) #define CURLPROTO_ALL (~0) /* enable everything */ /* long may be 32 or 64 bits, but we should never depend on anything else |