MySQL 8.0.40
Source Code Documentation
|
#include "tcp_address.h"
#include <sstream>
#include <system_error>
#include <type_traits>
#include "mysql/harness/net_ts/internet.h"
#include "mysql/harness/stdx/expected.h"
Namespaces | |
namespace | mysql_harness |
Functions | |
static constexpr int8_t | from_digit (char c) |
template<class T > | |
static std::enable_if_t< std::is_unsigned< T >::value, stdx::expected< T, std::error_code > > | from_chars (const std::string &value, int base=10) |
convert a numeric string to a number. More... | |
static stdx::expected< TCPAddress, std::error_code > | mysql_harness::make_tcp_address_ipv6 (const std::string &endpoint) |
HARNESS_EXPORT stdx::expected< TCPAddress, std::error_code > | mysql_harness::make_tcp_address (const std::string &endpoint) |
create TCPAddress from endpoint string. More... | |
|
static |
convert a numeric string to a number.
variant for unsigned integers like port numbers.
Contrary to strtol() it
|
staticconstexpr |