diff options
author | Scott Talbert <swt@techie.net> | 2023-01-31 10:07:14 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-31 10:07:14 -0500 |
commit | 48e396f74a21309ab1765030bc73c8da321b5c74 (patch) | |
tree | 08da44db185874f5df63e0f7f3d0a860258a6b28 /src/easyopt.c | |
parent | 2a8f57dc7d1906aeb1d828d91cbb440573dcd634 (diff) | |
parent | de38accb520fa224d7ea90122d6bf71d2827f16e (diff) | |
download | pycurl-master.tar.gz |
Add CURLOPT_AWS_SIGV4 option
Diffstat (limited to 'src/easyopt.c')
-rw-r--r-- | src/easyopt.c | 3 |
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) |