blob: 88a7628f902b78b24230e808cf17e09fbddf9691 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
classdef EndpointInfo < Ice.EndpointInfo
% TCPEndpointInfo Summary of TCPEndpointInfo
%
% Provides access to a TCP endpoint information.
% Copyright (c) ZeroC, Inc. All rights reserved.
methods
function obj = EndpointInfo(type, secure, underlying, timeout, compress)
if nargin == 0
underlying = [];
timeout = 0;
compress = false;
end
obj = obj@Ice.EndpointInfo(type, false, secure, underlying, timeout, compress);
end
end
end
|