gitextract_di3av8n9/ ├── .clang-format ├── .clang-tidy ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report.yml │ │ └── feature-request.yml │ ├── dependabot.yml │ └── workflows/ │ ├── build-deb.yml │ ├── build-nuget.yml │ ├── ci.yml │ ├── clang-format.yml │ ├── clang-tidy.yml │ ├── cppcheck.yml │ └── readme-updater.yml ├── .gitignore ├── .vscode/ │ └── tasks.json ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cmake/ │ ├── FindMbedTLS.cmake │ ├── clang-tidy.cmake │ ├── clear_variable.cmake │ ├── code_coverage.cmake │ ├── cppcheck.cmake │ ├── cprConfig-ssl.cmake.in │ ├── cprConfig.cmake.in │ ├── cprver.h.in │ ├── libpsl.cmake │ ├── mongoose.CMakeLists.txt │ ├── sanitizer.cmake │ ├── std_fs_support_test.cpp │ └── zlib_external.cmake ├── cppcheck-suppressions.xml ├── cpr/ │ ├── CMakeLists.txt │ ├── accept_encoding.cpp │ ├── async.cpp │ ├── auth.cpp │ ├── callback.cpp │ ├── cert_info.cpp │ ├── connection_pool.cpp │ ├── cookies.cpp │ ├── cprtypes.cpp │ ├── curl_container.cpp │ ├── curlholder.cpp │ ├── curlmultiholder.cpp │ ├── error.cpp │ ├── file.cpp │ ├── interceptor.cpp │ ├── multipart.cpp │ ├── multiperform.cpp │ ├── parameters.cpp │ ├── payload.cpp │ ├── proxies.cpp │ ├── proxyauth.cpp │ ├── redirect.cpp │ ├── response.cpp │ ├── session.cpp │ ├── sse.cpp │ ├── ssl_ctx.cpp │ ├── threadpool.cpp │ ├── timeout.cpp │ ├── unix_socket.cpp │ └── util.cpp ├── cpr-config.cmake ├── include/ │ ├── CMakeLists.txt │ └── cpr/ │ ├── accept_encoding.h │ ├── api.h │ ├── async.h │ ├── async_wrapper.h │ ├── auth.h │ ├── bearer.h │ ├── body.h │ ├── body_view.h │ ├── buffer.h │ ├── callback.h │ ├── cert_info.h │ ├── connect_timeout.h │ ├── connection_pool.h │ ├── cookies.h │ ├── cpr.h │ ├── cprtypes.h │ ├── curl_container.h │ ├── curlholder.h │ ├── curlmultiholder.h │ ├── error.h │ ├── file.h │ ├── filesystem.h │ ├── http_version.h │ ├── interceptor.h │ ├── interface.h │ ├── limit_rate.h │ ├── local_port.h │ ├── local_port_range.h │ ├── low_speed.h │ ├── multipart.h │ ├── multiperform.h │ ├── parameters.h │ ├── payload.h │ ├── proxies.h │ ├── proxyauth.h │ ├── range.h │ ├── redirect.h │ ├── reserve_size.h │ ├── resolve.h │ ├── response.h │ ├── secure_string.h │ ├── session.h │ ├── singleton.h │ ├── sse.h │ ├── ssl_ctx.h │ ├── ssl_options.h │ ├── status_codes.h │ ├── threadpool.h │ ├── timeout.h │ ├── unix_socket.h │ ├── user_agent.h │ ├── util.h │ └── verbose.h ├── nuget/ │ ├── build/ │ │ └── native/ │ │ ├── libcpr.props │ │ └── libcpr.targets │ └── libcpr.nuspec ├── package-build/ │ ├── build-package.sh │ └── debian-libcpr/ │ ├── README.Debian │ ├── changelog │ ├── control │ ├── copyright │ ├── libcpr-dev.install │ ├── libcpr1.install │ ├── rules │ └── source/ │ └── format ├── scripts/ │ ├── check_clang_format.sh │ ├── delete_build_dir.sh │ └── run_clang_format.sh └── test/ ├── CMakeLists.txt ├── LICENSE ├── abstractServer.cpp ├── abstractServer.hpp ├── alternating_tests.cpp ├── async_tests.cpp ├── callback_tests.cpp ├── connection_pool_tests.cpp ├── curlholder_tests.cpp ├── data/ │ ├── certificates/ │ │ ├── ca-bundle.crt │ │ ├── client.crt │ │ ├── root-ca.crt │ │ ├── server.crt │ │ └── sub-ca.crt │ ├── client.cnf │ ├── generate-certificates.sh │ ├── keys/ │ │ ├── client.key │ │ ├── root-ca.key │ │ ├── server.key │ │ ├── server.pub │ │ └── sub-ca.key │ ├── root-ca.cnf │ ├── server.cnf │ ├── sub-ca.cnf │ ├── test_file.txt │ ├── test_file_hello_äüöp_2585.txt │ └── test_file_hello_äüöp_2585_你好.txt ├── delete_tests.cpp ├── download_tests.cpp ├── encoded_auth_tests.cpp ├── error_tests.cpp ├── file_upload_tests.cpp ├── get_tests.cpp ├── head_tests.cpp ├── httpServer.cpp ├── httpServer.hpp ├── httpsServer.cpp ├── httpsServer.hpp ├── interceptor_multi_tests.cpp ├── interceptor_tests.cpp ├── multiasync_tests.cpp ├── multiasync_tests.hpp ├── multiperform_tests.cpp ├── options_tests.cpp ├── patch_tests.cpp ├── post_tests.cpp ├── prepare_tests.cpp ├── proxy_auth_tests.cpp ├── proxy_tests.cpp ├── put_tests.cpp ├── raw_body_tests.cpp ├── resolve_tests.cpp ├── session_tests.cpp ├── singleton_tests.cpp ├── singleton_tests.hpp ├── sse_tests.cpp ├── ssl_tests.cpp ├── structures_tests.cpp ├── testUtils.cpp ├── testUtils.hpp ├── testUtils_tests.cpp ├── threadpool_tests.cpp ├── util_tests.cpp └── version_tests.cpp