This file is indexed.

/usr/include/xmlrpc-c/server_cgi.h is in libxmlrpc-core-c3-dev 1.16.33-3.1ubuntu5.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
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
/* Interface header file for libxmlrpc_server_cgi.

   By Bryan Henderson, 05.04.27.  Contributed to the public domain.
*/

#ifndef  XMLRPC_CGI_H_INCLUDED
#define  XMLRPC_CGI_H_INCLUDED

#include <xmlrpc-c/server.h>

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */


void
xmlrpc_server_cgi_process_call(xmlrpc_registry * const registryP);

#define XMLRPC_CGI_NO_FLAGS (0)

extern void
xmlrpc_cgi_init (int flags);

extern xmlrpc_registry *
xmlrpc_cgi_registry (void);

void
xmlrpc_cgi_add_method(const char *  const method_name,
                      xmlrpc_method const method,
                      void *        const user_data);

void
xmlrpc_cgi_add_method_w_doc(const char *  const method_name,
                            xmlrpc_method const method,
                            void *        const user_data,
                            const char *  const signature,
                            const char *  const help);
extern void
xmlrpc_cgi_process_call (void);

extern void
xmlrpc_cgi_cleanup (void);


#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif