mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 22:08:10 +00:00
Everywhere: Rename {Deprecated => Byte}String
This commit un-deprecates DeprecatedString, and repurposes it as a byte string. As the null state has already been removed, there are no other particularly hairy blockers in repurposing this type as a byte string (what it _really_ is). This commit is auto-generated: $ xs=$(ack -l \bDeprecatedString\b\|deprecated_string AK Userland \ Meta Ports Ladybird Tests Kernel) $ perl -pie 's/\bDeprecatedString\b/ByteString/g; s/deprecated_string/byte_string/g' $xs $ clang-format --style=file -i \ $(git diff --name-only | grep \.cpp\|\.h) $ gn format $(git ls-files '*.gn' '*.gni')
This commit is contained in:
parent
38d62563b3
commit
5e1499d104
1615 changed files with 10257 additions and 10257 deletions
|
@ -5,7 +5,7 @@
|
|||
*/
|
||||
|
||||
#include <AK/Assertions.h>
|
||||
#include <AK/DeprecatedString.h>
|
||||
#include <AK/ByteString.h>
|
||||
#include <LibCore/ArgsParser.h>
|
||||
#include <LibCore/ElapsedTimer.h>
|
||||
#include <LibCore/System.h>
|
||||
|
@ -25,7 +25,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|||
{
|
||||
TRY(Core::System::pledge("stdio id inet unix"));
|
||||
|
||||
DeprecatedString host_name;
|
||||
ByteString host_name;
|
||||
int max_hops = 30;
|
||||
int max_retries = 3;
|
||||
int echo_timeout = 5;
|
||||
|
@ -79,7 +79,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|||
// -1: error or no response
|
||||
auto try_reach_host = [&](int ttl) -> ErrorOr<int> {
|
||||
Core::ElapsedTimer m_timer { true };
|
||||
auto ttl_number = DeprecatedString::number(ttl);
|
||||
auto ttl_number = ByteString::number(ttl);
|
||||
for (auto i = 0; i < max_retries; i++) {
|
||||
icmp_request request {};
|
||||
request.header = { ICMP_ECHO, 0, 0, { { 0, 0 } } };
|
||||
|
@ -107,7 +107,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|||
auto response_time = m_timer.elapsed();
|
||||
auto* peer = gethostbyaddr(&peer_address.sin_addr, sizeof(peer_address.sin_addr), AF_INET);
|
||||
|
||||
DeprecatedString peer_name;
|
||||
ByteString peer_name;
|
||||
if (peer) {
|
||||
peer_name = peer->h_name;
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue