| 42 | IP6Addr const IP6Addr::MAX{std::numeric_limits<uint64_t>::max(), std::numeric_limits<uint64_t>::max()}; |
| 43 | |
| 44 | IPEndpoint::IPEndpoint(string_view const &text) { |
| 45 | this->invalidate(); |
| 46 | this->parse(text); |
| 47 | } |
| 48 | |
| 49 | bool |
| 50 | IPEndpoint::assign(sockaddr *dst, sockaddr const *src) { |
nothing calls this directly
no test coverage detected