-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
snapcast: patch to support boost 1.81.0
- Loading branch information
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
48 changes: 48 additions & 0 deletions
48
packages/addons/addon-depends/snapcast-depends/snapcast/patches/snapcast-03_boost.patch
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
commit 438b83b0b93f2914b1830347b4e24722618d9ba4 | ||
Author: Rudi Heitbaum <[email protected]> | ||
Date: Wed Dec 21 11:31:29 2022 +0000 | ||
|
||
server/control_session_http: update for boost 1.81.0 | ||
|
||
diff --git a/server/control_session_http.cpp b/server/control_session_http.cpp | ||
index 385b3197..6522f5a9 100644 | ||
--- a/server/control_session_http.cpp | ||
+++ b/server/control_session_http.cpp | ||
@@ -127,8 +127,8 @@ boost::beast::string_view mime_type(boost::beast::string_view path) | ||
std::string path_cat(boost::beast::string_view base, boost::beast::string_view path) | ||
{ | ||
if (base.empty()) | ||
- return path.to_string(); | ||
- std::string result = base.to_string(); | ||
+ return static_cast<std::string>(path); | ||
+ std::string result = static_cast<std::string>(base); | ||
char constexpr path_separator = '/'; | ||
if (result.back() == path_separator) | ||
result.resize(result.size() - 1); | ||
@@ -171,7 +171,7 @@ void ControlSessionHttp::handle_request(http::request<Body, http::basic_fields<A | ||
res.set(http::field::server, HTTP_SERVER_NAME); | ||
res.set(http::field::content_type, "text/html"); | ||
res.keep_alive(req.keep_alive()); | ||
- res.body() = why.to_string(); | ||
+ res.body() = static_cast<std::string>(why); | ||
res.prepare_payload(); | ||
return res; | ||
}; | ||
@@ -182,7 +182,7 @@ void ControlSessionHttp::handle_request(http::request<Body, http::basic_fields<A | ||
res.set(http::field::server, HTTP_SERVER_NAME); | ||
res.set(http::field::content_type, "text/html"); | ||
res.keep_alive(req.keep_alive()); | ||
- res.body() = "The resource '" + target.to_string() + "' was not found."; | ||
+ res.body() = "The resource '" + static_cast<std::string>(target) + "' was not found."; | ||
res.prepare_payload(); | ||
return res; | ||
}; | ||
@@ -204,7 +204,7 @@ void ControlSessionHttp::handle_request(http::request<Body, http::basic_fields<A | ||
res.set(http::field::server, HTTP_SERVER_NAME); | ||
res.set(http::field::content_type, "text/html"); | ||
res.keep_alive(req.keep_alive()); | ||
- res.body() = "An error occurred: '" + what.to_string() + "'"; | ||
+ res.body() = "An error occurred: '" + static_cast<std::string>(what) + "'"; | ||
res.prepare_payload(); | ||
return res; | ||
}; |