| 244 | */ |
| 245 | template <typename Stream> |
| 246 | void Unserialize(Stream& s) |
| 247 | { |
| 248 | if (s.GetVersion() & ADDRV2_FORMAT) { |
| 249 | UnserializeV2Stream(s); |
| 250 | } else { |
| 251 | UnserializeV1Stream(s); |
| 252 | } |
| 253 | } |
| 254 | |
| 255 | friend class CSubNet; |
| 256 |
nothing calls this directly
no test coverage detected