summaryrefslogtreecommitdiff
path: root/src/easyopt.c
diff options
context:
space:
mode:
authorScott Talbert <swt@techie.net>2023-01-31 10:07:14 -0500
committerGitHub <noreply@github.com>2023-01-31 10:07:14 -0500
commit48e396f74a21309ab1765030bc73c8da321b5c74 (patch)
tree08da44db185874f5df63e0f7f3d0a860258a6b28 /src/easyopt.c
parent2a8f57dc7d1906aeb1d828d91cbb440573dcd634 (diff)
parentde38accb520fa224d7ea90122d6bf71d2827f16e (diff)
downloadpycurl-master.tar.gz
Merge pull request #786 from swt2c/option_aws_sigv4HEADmaster
Add CURLOPT_AWS_SIGV4 option
Diffstat (limited to 'src/easyopt.c')
-rw-r--r--src/easyopt.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/easyopt.c b/src/easyopt.c
index 9bed04c..bfc16f4 100644
--- a/src/easyopt.c
+++ b/src/easyopt.c
@@ -324,6 +324,9 @@ do_curl_setopt_string_impl(CurlObject *self, int option, PyObject *obj)
#if LIBCURL_VERSION_NUM >= MAKE_LIBCURL_VERSION(7, 62, 0)
case CURLOPT_DOH_URL:
#endif
+#if LIBCURL_VERSION_NUM >= MAKE_LIBCURL_VERSION(7, 75, 0)
+ case CURLOPT_AWS_SIGV4:
+#endif
case CURLOPT_KRBLEVEL:
str = PyText_AsString_NoNUL(obj, &encoded_obj);
if (str == NULL)