This file is indexed.

/usr/include/upnp/ActionComplete.h is in libupnp4-dev 1.8.0~svn20100507-1.1.

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
#ifndef ACTIONCOMPLETE_H
#define ACTIONCOMPLETE_H


/*!
 * \file
 *
 * \brief UpnpActionComplete object declararion.
 *
 * \author Marcelo Roberto Jimenez
 */


/*!
 * \brief The type of an UpnpActionComplete object.
 */
typedef struct s_UpnpActionComplete UpnpActionComplete;


#include "ixml.h"       /* for IXML_Document */
#include "UpnpGlobal.h" /* for EXPORT_SPEC */
#include "UpnpString.h"


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


/*!
 * \brief Constructor.
 *
 * \return Pointer to the newly created object.
 */
EXPORT_SPEC UpnpActionComplete *UpnpActionComplete_new();


/*!
 * \brief Destructor.
 */
EXPORT_SPEC void UpnpActionComplete_delete(
	/*! [in] \b this pointer. */
	UpnpActionComplete *p);


/*!
 * \brief Copy Constructor.
 */
EXPORT_SPEC UpnpActionComplete *UpnpActionComplete_dup(
	/*! [in] \b this pointer. */
	const UpnpActionComplete *p);


/*!
 * \brief Assignment operator.
 */
EXPORT_SPEC void UpnpActionComplete_assign(
	/*! [in] \b this pointer. */
	UpnpActionComplete *p,
	/*! [in] \b that pointer. */
	const UpnpActionComplete *q);


/*!
 * \brief Error code getter.
 */
EXPORT_SPEC int UpnpActionComplete_get_ErrCode(
	/*! [in] \b this pointer. */
	const UpnpActionComplete *p);


/*!
 * \brief Error code setter.
 */
EXPORT_SPEC void UpnpActionComplete_set_ErrCode(
	/*! [in] \b this pointer. */
	UpnpActionComplete *p,
	/*! [in] The error code to set. */
	int n);


/*!
 * \brief Control URL getter.
 *
 * \return The control URL string.
 */
EXPORT_SPEC const UpnpString *UpnpActionComplete_get_CtrlUrl(
	/*! [in] \b this pointer. */
	const UpnpActionComplete *p);

/*!
 * \brief Control URL getter as a C string
 *
 * \return The control URL string.
 */
EXPORT_SPEC const char *UpnpActionComplete_get_CtrlUrl_cstr(
	/*! [in] \b this pointer. */
	const UpnpActionComplete *p);


/*!
 * \brief Control URL setter.
 */
EXPORT_SPEC void UpnpActionComplete_set_CtrlUrl(
	/*! [in] \b this pointer. */
	UpnpActionComplete *p,
	/*! [in] The control URL string to copy. */
	const UpnpString *s);


/*!
 * \brief Set the control URL from a null terminated C string.
 */
EXPORT_SPEC void UpnpActionComplete_strcpy_CtrlUrl(
	/*! [in] \b this pointer. */
	UpnpActionComplete *p,
	/*! [in] The null terminated control URL C string to copy. */
	const char *s);


/*!
 * \brief ActionRequest document getter.
 *
 * \return A pointer to the document object.
 */
EXPORT_SPEC IXML_Document *UpnpActionComplete_get_ActionRequest(
	/*! [in] \b this pointer. */
	const UpnpActionComplete *p);


/*!
 * \brief ActionRequest document setter.
 *
 * \note The ActionComplete object takes ownership of the document parameter,
 * i.e. it is responsible for deleting it upon destruction.
 */
EXPORT_SPEC void UpnpActionComplete_set_ActionRequest(
	/*! [in] \b this pointer. */
	UpnpActionComplete *p,
	/*! [in] Document to copy. */
	IXML_Document *d);


/*!
 * \brief ActionResult document getter.
 */
EXPORT_SPEC IXML_Document *UpnpActionComplete_get_ActionResult(
	/*! [in] \b this pointer. */
	const UpnpActionComplete *p);


/*!
 * \brief ActionResult document setter.
 *
 * \note The ActionComplete object takes ownership of the document parameter,
 * i.e. it is responsible for deleting it upon destruction.
 */
EXPORT_SPEC void UpnpActionComplete_set_ActionResult(
	/*! [in] \b this pointer. */
	UpnpActionComplete *p,
	/*! [in]  Document to copy. */
	IXML_Document *d);


#ifdef __cplusplus
}
#endif /* __cplusplus */


#endif /* ACTIONCOMPLETE_H */