More toward GitHub issue #56

This commit is contained in:
Adam Ierymenko 2014-04-10 16:30:15 -07:00
parent c9294c1a78
commit aee742e767
12 changed files with 113 additions and 27 deletions

View file

@ -101,6 +101,12 @@ public:
this->set(ipBytes,ipLen,port);
}
InetAddress(const uint32_t ipv4,unsigned int port)
throw()
{
this->set(&ipv4,4,port);
}
InetAddress(const std::string &ip,unsigned int port)
throw()
{