Lines Matching refs:IpAddress
193 struct IpAddress
199 IpAddress() : _ip(0)
201 IpAddress(const uint32_t __ip) : _ip(__ip)
209 std::ostream &operator<<(std::ostream &stream, const IpAddress &ia);
210 bool operator==(const IpAddress &left, const IpAddress &right);
212 struct IpNetmask : public IpAddress
218 IpNetmask() : IpAddress(), _netmask(0)
221 IpAddress(__ip), _netmask(__netmask)
232 struct IpWithPort : public IpAddress
238 IpWithPort() : IpAddress(), _port(0)
241 IpAddress(__ip), _port(__port)