This file is indexed.

/usr/include/orbit-2.0/orbit/orb-core/corba-orb.h is in liborbit2-dev 1:2.14.19-0.3.

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
#ifndef CORBA_ORB_H
#define CORBA_ORB_H 1

#include <orbit/orb-core/orb-types.h>
#include <orbit/orb-core/corba-orb-type.h>
#include <orbit/orb-core/corba-typecode-type.h>

G_BEGIN_DECLS

CORBA_ORB CORBA_ORB_init (int                *argc,
			  char              **argv,
			  CORBA_ORBid         orb_identifier,
			  CORBA_Environment  *ev);

/* Will return TRUE if the named protocol is supported by 
 * the ORB. Currently supported values of "name" are:
 *
 *    "IPv4"
 *    "IPv6"
 *    "UNIX"
 *    "IrDA"
 *    "SSL"
 * 
 * Unknown or unsupported values of "name" will make this 
 * method return FALSE.*/
gboolean  ORBit_proto_use (const char *name);

/* Will return the maximum allowed GIOP buffer size. You will
 * need to know this if your are e.g. streaming large data chunks
 * to an ORBit2 client. The return type should be gulong but we 
 * are bound by the type chosen internally by linc2.
 */
glong ORBit_get_giop_recv_limit (void);

#ifdef ORBIT2_INTERNAL_API

void      ORBit_ORB_forw_bind (CORBA_ORB                   orb,
			       CORBA_sequence_CORBA_octet *okey,
			       CORBA_Object                oref,
			       CORBA_Environment          *ev);

guint     ORBit_ORB_idle_init     (CORBA_ORB orb);

void      ORBit_ORB_start_servers (CORBA_ORB orb);

#endif /* ORBIT2_INTERNAL_API */

G_END_DECLS

#endif