-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5dc11b6
commit 1e96c53
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule cpr
updated
32 files
+22 −5 | .github/workflows/build-deb.yml | |
+1 −1 | .github/workflows/ci.yml | |
+2 −7 | .github/workflows/clang-format.yml | |
+3 −1 | .gitignore | |
+62 −0 | .vscode/tasks.json | |
+25 −3 | CMakeLists.txt | |
+8 −2 | README.md | |
+1 −1 | cpr/CMakeLists.txt | |
+162 −29 | cpr/error.cpp | |
+8 −3 | cpr/multiperform.cpp | |
+3 −3 | cpr/session.cpp | |
+5 −4 | cpr/threadpool.cpp | |
+1 −0 | include/cpr/callback.h | |
+74 −15 | include/cpr/error.h | |
+2 −2 | include/cpr/threadpool.h | |
+2 −2 | nuget/libcpr.nuspec | |
+44 −0 | scripts/check_clang_format.sh | |
+9 −0 | scripts/delete_build_dir.sh | |
+30 −0 | scripts/run_clang_format.sh | |
+1 −1 | test/CMakeLists.txt | |
+2 −2 | test/abstractServer.cpp | |
+4 −4 | test/callback_tests.cpp | |
+6 −6 | test/error_tests.cpp | |
+17 −9 | test/get_tests.cpp | |
+3 −3 | test/head_tests.cpp | |
+11 −17 | test/httpServer.cpp | |
+5 −4 | test/multiasync_tests.cpp | |
+10 −1 | test/multiperform_tests.cpp | |
+15 −5 | test/post_tests.cpp | |
+1 −1 | test/raw_body_tests.cpp | |
+1 −1 | test/resolve_tests.cpp | |
+8 −8 | test/session_tests.cpp |