This file is indexed.

/usr/include/xmlrpc-c/server_cgi.h is in libxmlrpc-core-c3-dev 1.33.06-0ubuntu1.

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
/* 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/c_util.h>
#include <xmlrpc-c/server.h>

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

/*
  XMLRPC_SERVER_CGI_EXPORTED marks a symbol in this file that is exported
  from libxmlrpc_server_cgi.

  XMLRPC_BUILDING_SERVER_CGI says this compilation is part of
  libxmlrpc_server_cgi, as opposed to something that _uses_
  libxmlrpc_server_cgi.
*/
#ifdef XMLRPC_BUILDING_SERVER_CGI
#define XMLRPC_SERVER_CGI_EXPORTED XMLRPC_DLLEXPORT
#else
#define XMLRPC_SERVER_CGI_EXPORTED
#endif

XMLRPC_SERVER_CGI_EXPORTED
void
xmlrpc_server_cgi_process_call(xmlrpc_registry * const registryP);

#define XMLRPC_CGI_NO_FLAGS (0)

XMLRPC_SERVER_CGI_EXPORTED
extern void
xmlrpc_cgi_init(int const flags);

XMLRPC_SERVER_CGI_EXPORTED
extern xmlrpc_registry *
xmlrpc_cgi_registry (void);

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

XMLRPC_SERVER_CGI_EXPORTED
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);
XMLRPC_SERVER_CGI_EXPORTED
extern void
xmlrpc_cgi_process_call (void);

XMLRPC_SERVER_CGI_EXPORTED
extern void
xmlrpc_cgi_cleanup (void);


#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif