diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-10-06 15:21:18 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-10-06 15:21:18 +0000 |
commit | 3a8c1051d39e2d5dae76dd7d146be46ca85e1ecf (patch) | |
tree | 3f90cde49d025a2f6afb05cfe77f1f6f36bb9f66 /java/src/IceSSL/SslEndpointFactory.java | |
parent | Updated properties. (diff) | |
download | ice-3a8c1051d39e2d5dae76dd7d146be46ca85e1ecf.tar.bz2 ice-3a8c1051d39e2d5dae76dd7d146be46ca85e1ecf.tar.xz ice-3a8c1051d39e2d5dae76dd7d146be46ca85e1ecf.zip |
Bug 395 - Added pseudo INVADDR_ANY support
Diffstat (limited to 'java/src/IceSSL/SslEndpointFactory.java')
-rw-r--r-- | java/src/IceSSL/SslEndpointFactory.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/IceSSL/SslEndpointFactory.java b/java/src/IceSSL/SslEndpointFactory.java index 89c4f8072bd..6a4d36efeb6 100644 --- a/java/src/IceSSL/SslEndpointFactory.java +++ b/java/src/IceSSL/SslEndpointFactory.java @@ -29,9 +29,9 @@ final class SslEndpointFactory implements IceInternal.EndpointFactory } public IceInternal.EndpointI - create(String str) + create(String str, boolean adapterEndp) { - return new SslEndpointI(_instance, str); + return new SslEndpointI(_instance, str, adapterEndp); } public IceInternal.EndpointI |