(svn r15941) -Codechange: jonty-comp's wish partly implemented (content server) ;)

This commit is contained in:
rubidium
2009-04-03 17:20:57 +00:00
parent 1463b00b48
commit ce06df313d
3 changed files with 13 additions and 3 deletions

View File

@@ -79,13 +79,14 @@ public:
* Create a network address based on a unresolved host and port
* @param ip the unresolved hostname
* @param port the port
* @param family the address family
*/
NetworkAddress(const char *hostname = "0.0.0.0", uint16 port = 0) :
NetworkAddress(const char *hostname = "0.0.0.0", uint16 port = 0, int family = AF_INET) :
hostname(strdup(hostname)),
address_length(0)
{
memset(&this->address, 0, sizeof(this->address));
this->address.ss_family = AF_INET;
this->address.ss_family = family;
this->SetPort(port);
}