This file is indexed.

/usr/lib/ruby/vendor_ruby/Ice/Connection.rb is in ruby-zeroc-ice 3.5.1-6.4ubuntu1.

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
# **********************************************************************
#
# Copyright (c) 2003-2013 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.5.1
#
# <auto-generated>
#
# Generated from file `Connection.ice'
#
# Warning: do not edit this file.
#
# </auto-generated>
#

require 'Ice'
require 'Ice/ObjectAdapterF.rb'
require 'Ice/Identity.rb'
require 'Ice/Endpoint.rb'

module Ice

    if not defined?(::Ice::ConnectionInfo_mixin)
        module ConnectionInfo_mixin

            def inspect
                ::Ice::__stringify(self, T_ConnectionInfo)
            end

            attr_accessor :incoming, :adapterName, :connectionId
        end
        class ConnectionInfo
            include ConnectionInfo_mixin
            
            def ConnectionInfo.ice_staticId()
                '::Ice::ConnectionInfo'
            end

            def initialize(incoming=false, adapterName='', connectionId='')
                @incoming = incoming
                @adapterName = adapterName
                @connectionId = connectionId
            end
        end

        if not defined?(::Ice::T_ConnectionInfo)
            T_ConnectionInfo = ::Ice::__declareLocalClass('::Ice::ConnectionInfo')
        end

        T_ConnectionInfo.defineClass(ConnectionInfo, -1, false, false, nil, [], [
            ['incoming', ::Ice::T_bool, false, 0],
            ['adapterName', ::Ice::T_string, false, 0],
            ['connectionId', ::Ice::T_string, false, 0]
        ])
        ConnectionInfo_mixin::ICE_TYPE = T_ConnectionInfo
    end

    if not defined?(::Ice::Connection_mixin)
        module Connection_mixin

            #
            # Operation signatures.
            #
            # def close(force)
            # def createProxy(id)
            # def setAdapter(adapter)
            # def getAdapter()
            # def getEndpoint()
            # def flushBatchRequests()
            # def type()
            # def timeout()
            # def toString()
            # def getInfo()

            def inspect
                ::Ice::__stringify(self, T_Connection)
            end
        end
        class Connection
            include Connection_mixin
            
            def Connection.ice_staticId()
                '::Ice::Connection'
            end
        end

        if not defined?(::Ice::T_Connection)
            T_Connection = ::Ice::__declareLocalClass('::Ice::Connection')
        end

        T_Connection.defineClass(Connection, -1, true, false, nil, [], [])
        Connection_mixin::ICE_TYPE = T_Connection
    end

    if not defined?(::Ice::IPConnectionInfo_mixin)
        module IPConnectionInfo_mixin

            def inspect
                ::Ice::__stringify(self, T_IPConnectionInfo)
            end

            attr_accessor :localAddress, :localPort, :remoteAddress, :remotePort
        end
        class IPConnectionInfo
            include IPConnectionInfo_mixin
            
            def IPConnectionInfo.ice_staticId()
                '::Ice::IPConnectionInfo'
            end

            def initialize(incoming=false, adapterName='', connectionId='', localAddress="", localPort=-1, remoteAddress="", remotePort=-1)
                super(incoming, adapterName, connectionId)
                @localAddress = localAddress
                @localPort = localPort
                @remoteAddress = remoteAddress
                @remotePort = remotePort
            end
        end

        if not defined?(::Ice::T_IPConnectionInfo)
            T_IPConnectionInfo = ::Ice::__declareLocalClass('::Ice::IPConnectionInfo')
        end

        T_IPConnectionInfo.defineClass(IPConnectionInfo, -1, false, false, nil, [], [
            ['localAddress', ::Ice::T_string, false, 0],
            ['localPort', ::Ice::T_int, false, 0],
            ['remoteAddress', ::Ice::T_string, false, 0],
            ['remotePort', ::Ice::T_int, false, 0]
        ])
        IPConnectionInfo_mixin::ICE_TYPE = T_IPConnectionInfo
    end

    if not defined?(::Ice::TCPConnectionInfo_mixin)
        module TCPConnectionInfo_mixin

            def inspect
                ::Ice::__stringify(self, T_TCPConnectionInfo)
            end
        end
        class TCPConnectionInfo
            include TCPConnectionInfo_mixin
            
            def TCPConnectionInfo.ice_staticId()
                '::Ice::TCPConnectionInfo'
            end

            def initialize(incoming=false, adapterName='', connectionId='', localAddress="", localPort=-1, remoteAddress="", remotePort=-1)
                super(incoming, adapterName, connectionId, localAddress, localPort, remoteAddress, remotePort)
            end
        end

        if not defined?(::Ice::T_TCPConnectionInfo)
            T_TCPConnectionInfo = ::Ice::__declareLocalClass('::Ice::TCPConnectionInfo')
        end

        T_TCPConnectionInfo.defineClass(TCPConnectionInfo, -1, false, false, nil, [], [])
        TCPConnectionInfo_mixin::ICE_TYPE = T_TCPConnectionInfo
    end

    if not defined?(::Ice::UDPConnectionInfo_mixin)
        module UDPConnectionInfo_mixin

            def inspect
                ::Ice::__stringify(self, T_UDPConnectionInfo)
            end

            attr_accessor :mcastAddress, :mcastPort
        end
        class UDPConnectionInfo
            include UDPConnectionInfo_mixin
            
            def UDPConnectionInfo.ice_staticId()
                '::Ice::UDPConnectionInfo'
            end

            def initialize(incoming=false, adapterName='', connectionId='', localAddress="", localPort=-1, remoteAddress="", remotePort=-1, mcastAddress='', mcastPort=-1)
                super(incoming, adapterName, connectionId, localAddress, localPort, remoteAddress, remotePort)
                @mcastAddress = mcastAddress
                @mcastPort = mcastPort
            end
        end

        if not defined?(::Ice::T_UDPConnectionInfo)
            T_UDPConnectionInfo = ::Ice::__declareLocalClass('::Ice::UDPConnectionInfo')
        end

        T_UDPConnectionInfo.defineClass(UDPConnectionInfo, -1, false, false, nil, [], [
            ['mcastAddress', ::Ice::T_string, false, 0],
            ['mcastPort', ::Ice::T_int, false, 0]
        ])
        UDPConnectionInfo_mixin::ICE_TYPE = T_UDPConnectionInfo
    end
end