This file is indexed.

/usr/include/taningia/xmpp.h is in libtaningia-dev 0.2.2-1ubuntu1.

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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
/*
 * Copyright (C) 2009  Lincoln de Sousa <lincoln@minaslivre.org>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public
 * License along with this program; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */

#ifndef _TANINGIA_XMPP_H_
#define _TANINGIA_XMPP_H_

#ifdef __cplusplus
extern "C" {
#endif

#include <iksemel.h>
#include <taningia/taningia.h>

typedef enum {
  XMPP_CONNECTION_ERROR,
  XMPP_NO_SUCH_EVENT_ERROR,
  XMPP_SEND_ERROR
} ta_xmpp_error_t;

typedef struct _ta_xmpp_client_t ta_xmpp_client_t;

typedef int (*ta_xmpp_client_hook_t) (ta_xmpp_client_t *, void *, void *);

typedef void (*ta_xmpp_client_answer_cb_t) (ta_xmpp_client_t *, iks *, void *);

/**
 * @name: ta_xmpp_client::new
 * @type: constructor
 * @param jid: XMPP jid to be used in the client connection.
 * @param password: Password of the jid.
 * @param host (optional): Host to connect to.
 * @param port (optional): XMPP host port to connect to.
 *
 * Creates a new instance of the xmpp client. If host is ommited, it
 * will be extracted from the jid. If port is ommited, the default
 * XMPP port (5222) will be used.
 */
ta_xmpp_client_t *ta_xmpp_client_new (const char *jid, const char *password,
                                      const char *host, int port);

/**
 * @name: ta_xmpp_client::init
 * @type: initializer
 */
void ta_xmpp_client_init (ta_xmpp_client_t *client,
                          const char *jid,
                          const char *password,
                          const char *host,
                          int port);

/**
 * @name: ta_xmpp_client::get_jid
 * @type: getter
 */
const char *ta_xmpp_client_get_jid (ta_xmpp_client_t *ctx);

/**
 * @name: ta_xmpp_client::set_jid
 * @type: setter
 */
void ta_xmpp_client_set_jid (ta_xmpp_client_t *ctx, const char *jid);

/**
 * @name: ta_xmpp_client::get_password
 * @type: getter
 */
const char *ta_xmpp_client_get_password (ta_xmpp_client_t *ctx);

/**
 * @name: ta_xmpp_client::set_password
 * @type: setter
 */
void ta_xmpp_client_set_password (ta_xmpp_client_t *ctx, const char *password);

/**
 * @name: ta_xmpp_client::get_host
 * @type: getter
 */
const char *ta_xmpp_client_get_host (ta_xmpp_client_t *ctx);

/**
 * @name: ta_xmpp_client::set_host
 * @type: setter
 */
void ta_xmpp_client_set_host (ta_xmpp_client_t *ctx, const char *host);

/**
 * @name: ta_xmpp_client::get_port
 * @type: getter
 */
int ta_xmpp_client_get_port (ta_xmpp_client_t *ctx);

/**
 * @name: ta_xmpp_client::set_port
 * @type: setter
 */
void ta_xmpp_client_set_port (ta_xmpp_client_t *ctx, int port);

/**
 * @name: ta_xmpp_client::get_logger
 * @type: getter
 */
ta_log_t *ta_xmpp_client_get_logger (ta_xmpp_client_t *ctx);

/**
 * @name: ta_xmpp_client::get_error
 * @type: getter
 */
ta_error_t *ta_xmpp_client_get_error (ta_xmpp_client_t *ctx);

/**
 * @name: ta_xmpp_client::get_filter
 * @type: getter
 */
iksfilter *ta_xmpp_client_get_filter (ta_xmpp_client_t *client);

/**
 * @name: ta_xmpp_client::connect
 * @type: method
 * @raise: XMPP_CONNECTION_ERROR
 *
 * Connects the client to the host and port specified in the
 * constructor.
 */
int ta_xmpp_client_connect (ta_xmpp_client_t *client);

/**
 * @name: ta_xmpp_client::disconnect
 * @type: method
 *
 * Disconnects the client from the host.
 */
void ta_xmpp_client_disconnect (ta_xmpp_client_t *ctx);

/**
 * @name: ta_xmpp_client::send
 * @type: method
 * @param node: The iks node to be sent to the XMPP server.
 *
 * Sends iks nodes to the XMPP server. Only call this function after
 * making sure that client is running properly. To do it, use the
 * `ta_xmpp_client_is_running' function.
 */
int ta_xmpp_client_send (ta_xmpp_client_t *ctx, iks *node);

/**
 * @name: ta_xmpp_client::send_and_filter
 * @type: method
 * @param node: The iks node to be sent to the XMPP server.
 * @param cb: Callback to be called when the sent message is answered
 * by the server.
 * @param data: Extra field for passing context vars to the custom
 * callback (if none, NULL should be used).
 * @param free_cb: Function to free data. Pass NULL when `data' is
 * NULL too.
 *
 * Sends iks nodes to the XMPP server. Only call this function after
 * making sure that client is running properly. To do it, use the
 * `ta_xmpp_client_is_running' function.
 */
int
ta_xmpp_client_send_and_filter (ta_xmpp_client_t *client, iks *node,
                                ta_xmpp_client_answer_cb_t cb, void *data,
                                ta_free_func_t free_cb);

/**
 * @name: ta_xmpp_client::run
 * @type: method
 * @param detach: Define if client's main loop will run in a separated
 * thread.
 *
 * Starts the client main loop. If `detach' is true, returns
 * -1. Otherwise returns the error code of the package read function.
 */
int ta_xmpp_client_run (ta_xmpp_client_t *ctx, int detach);

/**
 * @name: ta_xmpp_client::is_running
 * @type: method
 * @return: bool
 *
 * Returns the state of the XMPP client, if it is running or not.
 */
int ta_xmpp_client_is_running (ta_xmpp_client_t *ctx);

/**
 * @name: ta_xmpp_client::event_connect
 * @type: method
 * @param event: Name of the event to connected the hook.
 * @param hook (callable): The hook to be
 * connected to the event.
 * @param user_data (optional): User defined value to be passed to the
 * hook.
 * @raise: XMPP_NO_SUCH_EVENT_ERROR
 *
 * Connects a hook to an already defined event in the client.  A
 * common case of this function is while connecting, that you connect
 * a hook to the <em>authenticated</em> event. To do it, you can do
 * some thing like this:
 *
 * <pre>
 * int
 * auth_cb (ta_xmpp_client_t *client, void *user_data)
 * {
 *   printf ("Auth sucessful!");
 *   return 1;
 * }
 *
 * ta_xmpp_client_t *client;
 * client = ta_xmpp_client_new ("lincoln@localhost", "passwd", NULL, 0);
 * ta_xmpp_client_connect (client);
 * ta_xmpp_client_event_connect (client, "authenticated", auth_cb, NULL);
 * ta_xmpp_client_run (client, 1);
 * </pre>
 *
 * This method will <strong>not</strong> modify or free value passed
 * in `user_data' parameter.
 */
int ta_xmpp_client_event_connect (ta_xmpp_client_t *client,
                                  const char *event,
                                  ta_xmpp_client_hook_t hook,
                                  void *user_data);

/**
 * @name: ta_xmpp_client::event_disconnect
 * @type: method
 * @param event: The event name
 * @param hook (callable): Hook to be disconnected from the event. If
 * it is `NULL', all hooks will be deleted.
 * @raise: XMPP_NO_SUCH_EVENT_ERROR
 *
 * Disconnects a previously connected hook from an event.
 *
 * This method will <strong>not</strong> modify or free value passed
 * in `user_data' parameter.
 */
int ta_xmpp_client_event_disconnect (ta_xmpp_client_t *client,
                                     const char *event,
                                     ta_xmpp_client_hook_t hook);

#ifdef __cplusplus
}
#endif

#endif /* _TANINGIA_XMPP_H_ */