This file is indexed.

/usr/share/php/Ice/Connection.php is in php-zeroc-ice 3.6.3-5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
<?php
// **********************************************************************
//
// Copyright (c) 2003-2016 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
//
// Ice version 3.6.3
//
// <auto-generated>
//
// Generated from file `Connection.ice'
//
// Warning: do not edit this file.
//
// </auto-generated>
//

require_once 'Ice/ObjectAdapterF.php';
require_once 'Ice/Identity.php';
require_once 'Ice/Endpoint.php';

global $Ice__t_ConnectionInfo;

if(!class_exists('Ice_ConnectionInfo'))
{
    class Ice_ConnectionInfo
    {
        public function __construct($incoming=false, $adapterName='', $connectionId='', $rcvSize=0, $sndSize=0)
        {
            $this->incoming = $incoming;
            $this->adapterName = $adapterName;
            $this->connectionId = $connectionId;
            $this->rcvSize = $rcvSize;
            $this->sndSize = $sndSize;
        }

        public function __toString()
        {
            global $Ice__t_ConnectionInfo;
            return IcePHP_stringify($this, $Ice__t_ConnectionInfo);
        }

        public $incoming;
        public $adapterName;
        public $connectionId;
        public $rcvSize;
        public $sndSize;
    }

    $Ice__t_ConnectionInfo = IcePHP_defineClass('::Ice::ConnectionInfo', 'Ice_ConnectionInfo', -1, false, false, $Ice__t_Object, null, array(
        array('incoming', $IcePHP__t_bool, false, 0),
        array('adapterName', $IcePHP__t_string, false, 0),
        array('connectionId', $IcePHP__t_string, false, 0),
        array('rcvSize', $IcePHP__t_int, false, 0),
        array('sndSize', $IcePHP__t_int, false, 0)));
}

global $Ice__t_Connection;
if(!isset($Ice__t_Connection))
{
    $Ice__t_Connection = IcePHP_declareClass('::Ice::Connection');
}

global $Ice__t_ConnectionCallback;

if(!interface_exists('Ice_ConnectionCallback'))
{
    interface Ice_ConnectionCallback
    {
        public function heartbeat($con);
        public function closed($con);
    }

    $Ice__t_ConnectionCallback = IcePHP_defineClass('::Ice::ConnectionCallback', 'Ice_ConnectionCallback', -1, true, false, $Ice__t_Object, null, null);
}

global $Ice__t_ACMClose;

if(!class_exists('Ice_ACMClose'))
{
    class Ice_ACMClose
    {
        const CloseOff = 0;
        const CloseOnIdle = 1;
        const CloseOnInvocation = 2;
        const CloseOnInvocationAndIdle = 3;
        const CloseOnIdleForceful = 4;
    }

    $Ice__t_ACMClose = IcePHP_defineEnum('::Ice::ACMClose', array('CloseOff', 0, 'CloseOnIdle', 1, 'CloseOnInvocation', 2, 'CloseOnInvocationAndIdle', 3, 'CloseOnIdleForceful', 4));
}

global $Ice__t_ACMHeartbeat;

if(!class_exists('Ice_ACMHeartbeat'))
{
    class Ice_ACMHeartbeat
    {
        const HeartbeatOff = 0;
        const HeartbeatOnInvocation = 1;
        const HeartbeatOnIdle = 2;
        const HeartbeatAlways = 3;
    }

    $Ice__t_ACMHeartbeat = IcePHP_defineEnum('::Ice::ACMHeartbeat', array('HeartbeatOff', 0, 'HeartbeatOnInvocation', 1, 'HeartbeatOnIdle', 2, 'HeartbeatAlways', 3));
}

global $Ice__t_ACM;

if(!class_exists('Ice_ACM'))
{
    class Ice_ACM
    {
        public function __construct($timeout=0, $close=Ice_ACMClose::CloseOff, $heartbeat=Ice_ACMHeartbeat::HeartbeatOff)
        {
            $this->timeout = $timeout;
            $this->close = $close;
            $this->heartbeat = $heartbeat;
        }

        public function __toString()
        {
            global $Ice__t_ACM;
            return IcePHP_stringify($this, $Ice__t_ACM);
        }

        public $timeout;
        public $close;
        public $heartbeat;
    }

    $Ice__t_ACM = IcePHP_defineStruct('::Ice::ACM', 'Ice_ACM', array(
        array('timeout', $IcePHP__t_int), 
        array('close', $Ice__t_ACMClose), 
        array('heartbeat', $Ice__t_ACMHeartbeat)));
}

global $Ice__t_Connection;

if(!interface_exists('Ice_Connection'))
{
    interface Ice_Connection
    {
        public function close($force);
        public function createProxy($id);
        public function setAdapter($adapter);
        public function getAdapter();
        public function getEndpoint();
        public function flushBatchRequests();
        public function setCallback($callback);
        public function setACM($timeout, $close, $heartbeat);
        public function getACM();
        public function type();
        public function timeout();
        public function toString();
        public function getInfo();
        public function setBufferSize($rcvSize, $sndSize);
    }

    $Ice__t_Connection = IcePHP_defineClass('::Ice::Connection', 'Ice_Connection', -1, true, false, $Ice__t_Object, null, null);
}

global $Ice__t_IPConnectionInfo;

if(!class_exists('Ice_IPConnectionInfo'))
{
    class Ice_IPConnectionInfo extends Ice_ConnectionInfo
    {
        public function __construct($incoming=false, $adapterName='', $connectionId='', $rcvSize=0, $sndSize=0, $localAddress="", $localPort=-1, $remoteAddress="", $remotePort=-1)
        {
            parent::__construct($incoming, $adapterName, $connectionId, $rcvSize, $sndSize);
            $this->localAddress = $localAddress;
            $this->localPort = $localPort;
            $this->remoteAddress = $remoteAddress;
            $this->remotePort = $remotePort;
        }

        public function __toString()
        {
            global $Ice__t_IPConnectionInfo;
            return IcePHP_stringify($this, $Ice__t_IPConnectionInfo);
        }

        public $localAddress;
        public $localPort;
        public $remoteAddress;
        public $remotePort;
    }

    $Ice__t_IPConnectionInfo = IcePHP_defineClass('::Ice::IPConnectionInfo', 'Ice_IPConnectionInfo', -1, false, false, $Ice__t_ConnectionInfo, null, array(
        array('localAddress', $IcePHP__t_string, false, 0),
        array('localPort', $IcePHP__t_int, false, 0),
        array('remoteAddress', $IcePHP__t_string, false, 0),
        array('remotePort', $IcePHP__t_int, false, 0)));
}

global $Ice__t_TCPConnectionInfo;

if(!class_exists('Ice_TCPConnectionInfo'))
{
    class Ice_TCPConnectionInfo extends Ice_IPConnectionInfo
    {
        public function __construct($incoming=false, $adapterName='', $connectionId='', $rcvSize=0, $sndSize=0, $localAddress="", $localPort=-1, $remoteAddress="", $remotePort=-1)
        {
            parent::__construct($incoming, $adapterName, $connectionId, $rcvSize, $sndSize, $localAddress, $localPort, $remoteAddress, $remotePort);
        }

        public function __toString()
        {
            global $Ice__t_TCPConnectionInfo;
            return IcePHP_stringify($this, $Ice__t_TCPConnectionInfo);
        }
    }

    $Ice__t_TCPConnectionInfo = IcePHP_defineClass('::Ice::TCPConnectionInfo', 'Ice_TCPConnectionInfo', -1, false, false, $Ice__t_IPConnectionInfo, null, null);
}

global $Ice__t_UDPConnectionInfo;

if(!class_exists('Ice_UDPConnectionInfo'))
{
    class Ice_UDPConnectionInfo extends Ice_IPConnectionInfo
    {
        public function __construct($incoming=false, $adapterName='', $connectionId='', $rcvSize=0, $sndSize=0, $localAddress="", $localPort=-1, $remoteAddress="", $remotePort=-1, $mcastAddress='', $mcastPort=-1)
        {
            parent::__construct($incoming, $adapterName, $connectionId, $rcvSize, $sndSize, $localAddress, $localPort, $remoteAddress, $remotePort);
            $this->mcastAddress = $mcastAddress;
            $this->mcastPort = $mcastPort;
        }

        public function __toString()
        {
            global $Ice__t_UDPConnectionInfo;
            return IcePHP_stringify($this, $Ice__t_UDPConnectionInfo);
        }

        public $mcastAddress;
        public $mcastPort;
    }

    $Ice__t_UDPConnectionInfo = IcePHP_defineClass('::Ice::UDPConnectionInfo', 'Ice_UDPConnectionInfo', -1, false, false, $Ice__t_IPConnectionInfo, null, array(
        array('mcastAddress', $IcePHP__t_string, false, 0),
        array('mcastPort', $IcePHP__t_int, false, 0)));
}

global $Ice__t_HeaderDict;

if(!isset($Ice__t_HeaderDict))
{
    $Ice__t_HeaderDict = IcePHP_defineDictionary('::Ice::HeaderDict', $IcePHP__t_string, $IcePHP__t_string);
}

global $Ice__t_WSConnectionInfo;

if(!class_exists('Ice_WSConnectionInfo'))
{
    class Ice_WSConnectionInfo extends Ice_TCPConnectionInfo
    {
        public function __construct($incoming=false, $adapterName='', $connectionId='', $rcvSize=0, $sndSize=0, $localAddress="", $localPort=-1, $remoteAddress="", $remotePort=-1, $headers=null)
        {
            parent::__construct($incoming, $adapterName, $connectionId, $rcvSize, $sndSize, $localAddress, $localPort, $remoteAddress, $remotePort);
            $this->headers = $headers;
        }

        public function __toString()
        {
            global $Ice__t_WSConnectionInfo;
            return IcePHP_stringify($this, $Ice__t_WSConnectionInfo);
        }

        public $headers;
    }

    $Ice__t_WSConnectionInfo = IcePHP_defineClass('::Ice::WSConnectionInfo', 'Ice_WSConnectionInfo', -1, false, false, $Ice__t_TCPConnectionInfo, null, array(
        array('headers', $Ice__t_HeaderDict, false, 0)));
}
?>