summaryrefslogtreecommitdiff
path: root/src/network/core/address.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-04-03 17:20:57 +0000
committerrubidium <rubidium@openttd.org>2009-04-03 17:20:57 +0000
commitce06df313d8ed2eedcf6ed662efd4086c9a95d46 (patch)
tree522f72027447cc1277e5a8ad71db21238d667ef1 /src/network/core/address.h
parent1463b00b48a67bdbd8ad0ebdd327d38f42466248 (diff)
downloadopenttd-ce06df313d8ed2eedcf6ed662efd4086c9a95d46.tar.xz
(svn r15941) -Codechange: jonty-comp's wish partly implemented (content server) ;)
Diffstat (limited to 'src/network/core/address.h')
-rw-r--r--src/network/core/address.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/network/core/address.h b/src/network/core/address.h
index 9515de976..2b5f7444f 100644
--- a/src/network/core/address.h
+++ b/src/network/core/address.h
@@ -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);
}