summaryrefslogtreecommitdiff
path: root/java/src/IceInternal/TcpEndpointFactory.java
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2007-06-04 15:53:35 +0000
committerDwayne Boone <dwayne@zeroc.com>2007-06-04 15:53:35 +0000
commit512d5d6ee8737edc9dbc82773532ae9a54a7cfcd (patch)
treeaf479386298a1914edec879859341e507d0e7326 /java/src/IceInternal/TcpEndpointFactory.java
parentBug 1597. (diff)
downloadice-512d5d6ee8737edc9dbc82773532ae9a54a7cfcd.tar.bz2
ice-512d5d6ee8737edc9dbc82773532ae9a54a7cfcd.tar.xz
ice-512d5d6ee8737edc9dbc82773532ae9a54a7cfcd.zip
Bug 1658 - listen on 0.0.0.0 rather than expanding endpoints
Diffstat (limited to 'java/src/IceInternal/TcpEndpointFactory.java')
-rw-r--r--java/src/IceInternal/TcpEndpointFactory.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/IceInternal/TcpEndpointFactory.java b/java/src/IceInternal/TcpEndpointFactory.java
index ace33a69fe3..1bc9e326d66 100644
--- a/java/src/IceInternal/TcpEndpointFactory.java
+++ b/java/src/IceInternal/TcpEndpointFactory.java
@@ -29,9 +29,9 @@ final class TcpEndpointFactory implements EndpointFactory
}
public EndpointI
- create(String str)
+ create(String str, boolean oaEndpoint)
{
- return new TcpEndpointI(_instance, str);
+ return new TcpEndpointI(_instance, str, oaEndpoint);
}
public EndpointI