diff options
author | rubidium42 <rubidium@openttd.org> | 2021-06-13 20:59:42 +0200 |
---|---|---|
committer | rubidium42 <rubidium42@users.noreply.github.com> | 2021-06-15 06:13:00 +0200 |
commit | 36705f1dc0d7c5436780d8915c147d9f55eaa191 (patch) | |
tree | 36a37f7582f07df3283b47eb090fa85f2f058ca3 | |
parent | 9e32c618f900746dd6848809bb175c993976316b (diff) | |
download | openttd-36705f1dc0d7c5436780d8915c147d9f55eaa191.tar.xz |
Codechange: [Network] Simplify formatting of network addresses to string
-rw-r--r-- | src/network/core/address.cpp | 32 | ||||
-rw-r--r-- | src/network/core/address.h | 1 |
2 files changed, 10 insertions, 23 deletions
diff --git a/src/network/core/address.cpp b/src/network/core/address.cpp index 8f74ed754..478dc1b2c 100644 --- a/src/network/core/address.cpp +++ b/src/network/core/address.cpp @@ -71,26 +71,17 @@ void NetworkAddress::SetPort(uint16 port) } /** - * Get the address as a string, e.g. 127.0.0.1:12345. - * @param buffer the buffer to write to - * @param last the last element in the buffer - * @param with_family whether to add the family (e.g. IPvX). + * Helper to get the formatting string of an address for a given family. + * @param family The family to get the address format for. + * @param with_family Whether to add the familty to the address (e.g. IPv4). + * @return The format string for the address. */ -void NetworkAddress::GetAddressAsString(char *buffer, const char *last, bool with_family) +static const char *GetAddressFormatString(uint16 family, bool with_family) { - if (this->GetAddress()->ss_family == AF_INET6) buffer = strecpy(buffer, "[", last); - buffer = strecpy(buffer, this->GetHostname(), last); - if (this->GetAddress()->ss_family == AF_INET6) buffer = strecpy(buffer, "]", last); - buffer += seprintf(buffer, last, ":%d", this->GetPort()); - - if (with_family) { - char family; - switch (this->address.ss_family) { - case AF_INET: family = '4'; break; - case AF_INET6: family = '6'; break; - default: family = '?'; break; - } - seprintf(buffer, last, " (IPv%c)", family); + switch (family) { + case AF_INET: return with_family ? "{}:{} (IPv4)" : "{}:{}"; + case AF_INET6: return with_family ? "[{}]:{} (IPv6)" : "[{}]:{}"; + default: return with_family ? "{}:{} (IPv?)" : "{}:{}"; } } @@ -101,10 +92,7 @@ void NetworkAddress::GetAddressAsString(char *buffer, const char *last, bool wit */ std::string NetworkAddress::GetAddressAsString(bool with_family) { - /* 7 extra are for with_family, which adds " (IPvX)". */ - char buf[NETWORK_HOSTNAME_PORT_LENGTH + 7]; - this->GetAddressAsString(buf, lastof(buf), with_family); - return buf; + return fmt::format(GetAddressFormatString(this->GetAddress()->ss_family, with_family), this->GetHostname(), this->GetPort()); } /** diff --git a/src/network/core/address.h b/src/network/core/address.h index c3f95b492..eac21c76a 100644 --- a/src/network/core/address.h +++ b/src/network/core/address.h @@ -89,7 +89,6 @@ public: } const char *GetHostname(); - void GetAddressAsString(char *buffer, const char *last, bool with_family = true); std::string GetAddressAsString(bool with_family = true); const sockaddr_storage *GetAddress(); |