-
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.
Merge pull request #34 from giubacc/fix-build-20231004
Fix build 20231004
- Loading branch information
Showing
9 changed files
with
25 additions
and
19 deletions.
There are no files selected for viewing
Submodule depot_tools
updated
from 401f0f to 60adf7
Submodule pistache
updated
33 files
+4 −2 | .github/workflows/debian-changelog.yaml | |
+6 −3 | .github/workflows/linux.yaml | |
+9 −9 | README.md | |
+1 −1 | include/pistache/client.h | |
+1 −0 | include/pistache/flags.h | |
+40 −13 | include/pistache/http.h | |
+29 −15 | include/pistache/http_header.h | |
+1 −1 | include/pistache/http_headers.h | |
+2 −0 | include/pistache/listener.h | |
+3 −1 | include/pistache/meson.build | |
+62 −19 | include/pistache/net.h | |
+24 −0 | include/pistache/router.h | |
+18 −2 | meson.build | |
+2 −0 | meson_options.txt | |
+16 −7 | src/client/client.cc | |
+68 −1 | src/common/http.cc | |
+27 −5 | src/common/http_header.cc | |
+1 −1 | src/common/http_headers.cc | |
+1 −2 | src/common/mime.cc | |
+225 −208 | src/common/net.cc | |
+23 −11 | src/common/peer.cc | |
+4 −0 | src/meson.build | |
+2 −2 | src/server/endpoint.cc | |
+93 −46 | src/server/listener.cc | |
+129 −130 | tests/headers_test.cc | |
+4 −4 | tests/http_client_test.cc | |
+231 −4 | tests/http_server_test.cc | |
+38 −2 | tests/listener_test.cc | |
+60 −6 | tests/net_test.cc | |
+16 −4 | tests/router_test.cc | |
+3 −6 | tests/tcp_client.h | |
+1 −1 | tests/view_test.cc | |
+1 −1 | version.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters