| 147 | // Socket address encapsulation for IPv6 |
| 148 | |
| 149 | SocketAddressInet6::SocketAddressInet6(const char* src) |
| 150 | { |
| 151 | if (!Parse(src)) |
| 152 | { |
| 153 | throw std::runtime_error(std::string("Invalid IPv6 socket address: ") + src); |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | SocketAddressInet6::SocketAddressInet6(const std::string& src) |
| 158 | { |
nothing calls this directly
no outgoing calls
no test coverage detected