Ice 3.6 Slice API Reference
All Classes Interfaces Structs Exceptions Modules Files Operations Constants Sequences Dictionaries Enumerations Enumerator Pages
Endpoint.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 #include <Ice/Version.ice>
13 #include <Ice/BuiltinSequences.ice>
14 #include <Ice/EndpointF.ice>
15 
16 [["cpp:header-ext:h", "objc:header-dir:objc", "js:ice-build"]]
17 
18 ["objc:prefix:ICE"]
19 module Ice
20 {
21 
27 const short TCPEndpointType = 1;
28 
34 const short SSLEndpointType = 2;
35 
41 const short UDPEndpointType = 3;
42 
48 const short WSEndpointType = 4;
49 
55 const short WSSEndpointType = 5;
56 
62 local class EndpointInfo
63 {
70  int timeout;
71 
78  bool compress;
79 
85  ["cpp:const"] short type();
86 
92  ["cpp:const"] bool datagram();
93 
99  ["cpp:const"] bool secure();
100 };
101 
107 local interface Endpoint
108 {
116  ["cpp:const"] string toString();
117 
125  ["cpp:const"] EndpointInfo getInfo();
126 };
127 
135 local class IPEndpointInfo extends EndpointInfo
136 {
142  string host;
143 
149  int port;
150 
157 };
158 
166 local class TCPEndpointInfo extends IPEndpointInfo
167 {
168 };
169 
177 local class UDPEndpointInfo extends IPEndpointInfo
178 {
185 
191  int mcastTtl;
192 };
193 
199 local class WSEndpointInfo extends TCPEndpointInfo
200 {
206  string resource;
207 };
208 
216 local class OpaqueEndpointInfo extends EndpointInfo
217 {
225 
232 };
233 
234 };
235 
string host
The host or address configured with the endpoint.
Definition: Endpoint.ice:142
const short TCPEndpointType
Uniquely identifies TCP endpoints.
Definition: Endpoint.ice:27
The user-level interface to an endpoint.
Definition: Endpoint.ice:107
Provides access to the address details of a IP endpoint.
Definition: Endpoint.ice:135
The Ice core library.
Definition: BuiltinSequences.ice:15
Base class providing access to the endpoint details.
Definition: Endpoint.ice:62
int mcastTtl
The multicast time-to-live (or hops).
Definition: Endpoint.ice:191
bool compress
Specifies whether or not compression should be used if available when using this endpoint.
Definition: Endpoint.ice:78
const short UDPEndpointType
Uniquely identifies UDP endpoints.
Definition: Endpoint.ice:41
Provides access to a WebSocket endpoint information.
Definition: Endpoint.ice:199
ByteSeq rawBytes
The raw encoding of the opaque endpoint.
Definition: Endpoint.ice:231
const short SSLEndpointType
Uniquely identifies SSL endpoints.
Definition: Endpoint.ice:34
Provides access to an UDP endpoint information.
Definition: Endpoint.ice:177
A version structure for the encoding version.
Definition: Version.ice:34
int timeout
The timeout for the endpoint in milliseconds.
Definition: Endpoint.ice:70
string sourceAddress
The source IP address.
Definition: Endpoint.ice:156
const short WSEndpointType
Uniquely identifies TCP-based WebSocket endpoints.
Definition: Endpoint.ice:48
int port
The port number.
Definition: Endpoint.ice:149
const short WSSEndpointType
Uniquely identifies SSL-based WebSocket endpoints.
Definition: Endpoint.ice:55
string resource
The URI configured with the endpoint.
Definition: Endpoint.ice:206
EncodingVersion rawEncoding
The encoding version of the opaque endpoint (to decode or encode the rawBytes).
Definition: Endpoint.ice:224
sequence< byte > ByteSeq
A sequence of bytes.
Definition: BuiltinSequences.ice:22
string mcastInterface
The multicast interface.
Definition: Endpoint.ice:184
Provides access to a TCP endpoint information.
Definition: Endpoint.ice:166
Provides access to the details of an opaque endpoint.
Definition: Endpoint.ice:216