From 90a1b857f3fddf5cf1a25b73d6bdbe6c40471076 Mon Sep 17 00:00:00 2001 From: Ben Burwell Date: Sat, 6 Jun 2020 22:42:17 -0400 Subject: WIP: Add support for gemini meta headers --- lib/setopt.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/setopt.c') diff --git a/lib/setopt.c b/lib/setopt.c index 4570cc06a..80332a510 100644 --- a/lib/setopt.c +++ b/lib/setopt.c @@ -2831,6 +2831,9 @@ CURLcode Curl_vsetopt(struct Curl_easy *data, CURLoption option, va_list param) return result; break; #endif + case CURLOPT_META: + result = Curl_setstropt(&data->set.gemini_meta, va_arg(param, char *)); + break; default: /* unknown tag and its companion, just ignore: */ result = CURLE_UNKNOWN_OPTION; -- cgit v1.2.3