mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 18:17:45 +00:00
Everywhere: Use _{short_,}string to create Strings from literals
This commit is contained in:
parent
85414d9338
commit
09d40bfbb2
92 changed files with 334 additions and 310 deletions
|
@ -117,7 +117,7 @@ ErrorOr<bool> Client::handle_request(ReadonlyBytes raw_request)
|
|||
if (Configuration::the().credentials().has_value()) {
|
||||
bool has_authenticated = verify_credentials(request.headers());
|
||||
if (!has_authenticated) {
|
||||
auto const basic_auth_header = TRY(String::from_utf8("WWW-Authenticate: Basic realm=\"WebServer\", charset=\"UTF-8\""sv));
|
||||
auto const basic_auth_header = TRY("WWW-Authenticate: Basic realm=\"WebServer\", charset=\"UTF-8\""_string);
|
||||
Vector<String> headers {};
|
||||
TRY(headers.try_append(basic_auth_header));
|
||||
TRY(send_error_response(401, request, move(headers)));
|
||||
|
@ -338,7 +338,7 @@ ErrorOr<void> Client::handle_directory_listing(String const& requested_path, Str
|
|||
|
||||
auto response = builder.to_deprecated_string();
|
||||
FixedMemoryStream stream { response.bytes() };
|
||||
return send_response(stream, request, { .type = TRY(String::from_utf8("text/html"sv)), .length = response.length() });
|
||||
return send_response(stream, request, { .type = TRY("text/html"_string), .length = response.length() });
|
||||
}
|
||||
|
||||
ErrorOr<void> Client::send_error_response(unsigned code, HTTP::HttpRequest const& request, Vector<String> const& headers)
|
||||
|
|
|
@ -22,9 +22,9 @@
|
|||
|
||||
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
||||
{
|
||||
static auto const default_listen_address = TRY(String::from_utf8("0.0.0.0"sv));
|
||||
static auto const default_listen_address = TRY("0.0.0.0"_string);
|
||||
static auto const default_port = 8000;
|
||||
static auto const default_document_root_path = TRY(String::from_utf8("/www"sv));
|
||||
static auto const default_document_root_path = TRY("/www"_string);
|
||||
|
||||
DeprecatedString listen_address = default_listen_address.to_deprecated_string();
|
||||
int port = default_port;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue