Lines Matching refs:SocketAddress

62 const SocketAddress::Family SocketAddress::IPv4;
64 const SocketAddress::Family SocketAddress::IPv6;
67 const SocketAddress::Family SocketAddress::UNIX_LOCAL;
72 SocketAddress::SocketAddress() in SocketAddress() function in Poco::Net::SocketAddress
78 SocketAddress::SocketAddress(Family fam) in SocketAddress() function in Poco::Net::SocketAddress
84 SocketAddress::SocketAddress(const IPAddress& hostAddress, Poco::UInt16 portNumber) in SocketAddress() function in Poco::Net::SocketAddress
90 SocketAddress::SocketAddress(Poco::UInt16 portNumber) in SocketAddress() function in Poco::Net::SocketAddress
96 SocketAddress::SocketAddress(Family fam, Poco::UInt16 portNumber) in SocketAddress() function in Poco::Net::SocketAddress
102 SocketAddress::SocketAddress(const std::string& hostAddress, Poco::UInt16 portNumber) in SocketAddress() function in Poco::Net::SocketAddress
108 SocketAddress::SocketAddress(Family fam, const std::string& hostAddress, Poco::UInt16 portNumber) in SocketAddress() function in Poco::Net::SocketAddress
114 SocketAddress::SocketAddress(const std::string& hostAddress, const std::string& portNumber) in SocketAddress() function in Poco::Net::SocketAddress
120 SocketAddress::SocketAddress(Family fam, const std::string& hostAddress, const std::string& portNum… in SocketAddress() function in Poco::Net::SocketAddress
126 SocketAddress::SocketAddress(Family fam, const std::string& addr) in SocketAddress() function in Poco::Net::SocketAddress
132 SocketAddress::SocketAddress(const std::string& hostAndPort) in SocketAddress() function in Poco::Net::SocketAddress
138 SocketAddress::SocketAddress(const SocketAddress& socketAddress) in SocketAddress() function in Poco::Net::SocketAddress
153 SocketAddress::SocketAddress(const struct sockaddr* sockAddr, poco_socklen_t length) in SocketAddress() function in Poco::Net::SocketAddress
169 SocketAddress::~SocketAddress() in ~SocketAddress()
174 bool SocketAddress::operator < (const SocketAddress& socketAddress) const in operator <()
187 SocketAddress& SocketAddress::operator = (const SocketAddress& socketAddress) in operator =()
206 IPAddress SocketAddress::host() const in host()
212 Poco::UInt16 SocketAddress::port() const in port()
218 poco_socklen_t SocketAddress::length() const in length()
224 const struct sockaddr* SocketAddress::addr() const in addr()
230 int SocketAddress::af() const in af()
236 SocketAddress::Family SocketAddress::family() const in family()
242 std::string SocketAddress::toString() const in toString()
248 void SocketAddress::init(const IPAddress& hostAddress, Poco::UInt16 portNumber) in init()
260 void SocketAddress::init(const std::string& hostAddress, Poco::UInt16 portNumber) in init()
284 void SocketAddress::init(Family fam, const std::string& hostAddress, Poco::UInt16 portNumber) in init()
313 void SocketAddress::init(Family fam, const std::string& address) in init()
350 void SocketAddress::init(const std::string& hostAndPort) in init()
387 Poco::UInt16 SocketAddress::resolveService(const std::string& service) in resolveService()
412 Poco::BinaryWriter& operator << (Poco::BinaryWriter& writer, const Poco::Net::SocketAddress& value) in operator <<()
420 Poco::BinaryReader& operator >> (Poco::BinaryReader& reader, Poco::Net::SocketAddress& value) in operator >>()
426 value = Poco::Net::SocketAddress(host, port); in operator >>()
431 std::ostream& operator << (std::ostream& ostr, const Poco::Net::SocketAddress& address) in operator <<()