This file is indexed.

/usr/share/doc/polyorb-doc/examples/corba/random/random.idl is in polyorb-doc 2.11~20140418-3.2.

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
// This interface was copied from http://random.org/corba.html, where you can
// also find the current IOR of the server.
// See client.cc for details.

// IDL
interface Random {

    // return non-negative long integer in the interval [0, 2^31)
    long lrand48();

    // return signed long integer in the interval [-2^31, 2^31)
    long mrand48();
};