diff options
author | Matthew Newhook <matthew@zeroc.com> | 2006-06-05 15:11:48 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2006-06-05 15:11:48 +0000 |
commit | c7830493b1a04964c872095e7b924d86c08b2b52 (patch) | |
tree | 106dd9f15a637962b24dd870e023f7b3dd236f61 /java/ssl/jdk1.5/IceSSL/ConnectionInfo.java | |
parent | Add addressFilter to build (diff) | |
download | ice-c7830493b1a04964c872095e7b924d86c08b2b52.tar.bz2 ice-c7830493b1a04964c872095e7b924d86c08b2b52.tar.xz ice-c7830493b1a04964c872095e7b924d86c08b2b52.zip |
added support for TrustOnly.
Diffstat (limited to 'java/ssl/jdk1.5/IceSSL/ConnectionInfo.java')
-rw-r--r-- | java/ssl/jdk1.5/IceSSL/ConnectionInfo.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/java/ssl/jdk1.5/IceSSL/ConnectionInfo.java b/java/ssl/jdk1.5/IceSSL/ConnectionInfo.java index 8e58d7edbaf..c087c838896 100644 --- a/java/ssl/jdk1.5/IceSSL/ConnectionInfo.java +++ b/java/ssl/jdk1.5/IceSSL/ConnectionInfo.java @@ -37,4 +37,16 @@ public class ConnectionInfo // The remote TCP/IP host & port. // public java.net.InetSocketAddress remoteAddr; + + // + // If the connection is incoming this bool is true, false + // otherwise. + // + boolean incoming; + + // + // The name of the object adapter that hosts this endpoint, if + // any. + // + String adapterName; } |