| 370 | class IPLoopback : public IPAddress { |
| 371 | public: |
| 372 | IPLoopback(Family family) { |
| 373 | Exception ex; // never ex |
| 374 | set(ex, family == IPv6 ? LocalhostV6 : LocalhostV4); |
| 375 | } |
| 376 | }; |
| 377 | |
| 378 | static IPWilcard _IPv4Wildcard(IPAddress::IPv4); |
nothing calls this directly
no outgoing calls
no test coverage detected