diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/tool_libinfo.c | 1 | ||||
-rw-r--r-- | src/tool_paramhlp.c | 1 | ||||
-rw-r--r-- | src/tool_setopt.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/src/tool_libinfo.c b/src/tool_libinfo.c index de7ec4d18..4c26376b8 100644 --- a/src/tool_libinfo.c +++ b/src/tool_libinfo.c @@ -54,6 +54,7 @@ CURLcode get_libcurl_info(void) { "file", CURLPROTO_FILE }, { "ftp", CURLPROTO_FTP }, { "ftps", CURLPROTO_FTPS }, + { "gemini", CURLPROTO_GEMINI }, { "gopher", CURLPROTO_GOPHER }, { "http", CURLPROTO_HTTP }, { "https", CURLPROTO_HTTPS }, diff --git a/src/tool_paramhlp.c b/src/tool_paramhlp.c index c375bcc82..f6be25a52 100644 --- a/src/tool_paramhlp.c +++ b/src/tool_paramhlp.c @@ -335,6 +335,7 @@ long proto2num(struct OperationConfig *config, long *val, const char *str) { "smtp", CURLPROTO_SMTP }, { "smtps", CURLPROTO_SMTPS }, { "rtsp", CURLPROTO_RTSP }, + { "gemini", CURLPROTO_GEMINI }, { "gopher", CURLPROTO_GOPHER }, { "smb", CURLPROTO_SMB }, { "smbs", CURLPROTO_SMBS }, diff --git a/src/tool_setopt.c b/src/tool_setopt.c index 9858d49c9..383600ab7 100644 --- a/src/tool_setopt.c +++ b/src/tool_setopt.c @@ -145,6 +145,7 @@ const struct NameValue setopt_nv_CURLPROTO[] = { NV(CURLPROTO_FILE), NV(CURLPROTO_FTP), NV(CURLPROTO_FTPS), + NV(CURLPROTO_GEMINI), NV(CURLPROTO_GOPHER), NV(CURLPROTO_HTTP), NV(CURLPROTO_HTTPS), |