Ice 3.6 Slice API Reference
All Classes Interfaces Structs Exceptions Modules Files Operations Constants Sequences Dictionaries Enumerations Enumerator Pages
SSLInfo.ice
Go to the documentation of this file.
1 // **********************************************************************
2 //
3 // Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
4 //
5 // This copy of Ice is licensed to you under the terms described in the
6 // ICE_LICENSE file included in this distribution.
7 //
8 // **********************************************************************
9 
10 #pragma once
11 
12 [["cpp:header-ext:h", "objc:header-dir:objc", "js:ice-build"]]
13 [["cpp:include:Glacier2/Config.h"]]
14 
15 #include <Ice/BuiltinSequences.ice>
16 
17 ["objc:prefix:GLACIER2"]
18 module Glacier2
19 {
20 
29 struct SSLInfo
30 {
32  string remoteHost;
33 
36 
38  string localHost;
39 
41  int localPort;
42 
44  string cipher;
45 
48 };
49 
50 };
51 
string remoteHost
The remote host.
Definition: SSLInfo.ice:32
Glacier2 is a firewall solution for Ice.
Definition: PermissionsVerifier.ice:18
string localHost
The router&#39;s host.
Definition: SSLInfo.ice:38
Ice::StringSeq certs
The certificate chain.
Definition: SSLInfo.ice:47
int remotePort
The remote port.
Definition: SSLInfo.ice:35
int localPort
The router&#39;s port.
Definition: SSLInfo.ice:41
string cipher
The negotiated cipher suite.
Definition: SSLInfo.ice:44
sequence< string > StringSeq
A sequence of strings.
Definition: BuiltinSequences.ice:40
Information taken from an SSL connection used for permissions verification.
Definition: SSLInfo.ice:29