| 166 | class IPv6Address : public IPAddressCommon { |
| 167 | public: |
| 168 | IPv6Address(const in6_addr& addr, UInt32 scope = 0) : _scope(scope) { |
| 169 | memcpy(&_addr, &addr, sizeof(_addr)); |
| 170 | } |
| 171 | |
| 172 | const string& toString() const { |
| 173 | lock_guard<mutex> lock(_mutex); |
nothing calls this directly
no outgoing calls
no test coverage detected