This file is indexed.

/usr/include/libsocialweb/libsocialweb-keyfob/sw-keyfob.h is in libsocialweb-dev 0.25.20-6+b1.

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

#include <rest/oauth-proxy.h>
#include <rest/oauth2-proxy.h>
#include <rest-extras/flickr-proxy.h>

G_BEGIN_DECLS

/* Generic callback */
typedef void (*SwKeyfobCallback) (RestProxy *proxy, gboolean authorised, gpointer user_data);

void sw_keyfob_oauth (OAuthProxy *proxy,
                          SwKeyfobCallback callback,
                          gpointer user_data);

gboolean sw_keyfob_oauth_sync (OAuthProxy *proxy);

void sw_keyfob_oauth2 (OAuth2Proxy *proxy,
                       SwKeyfobCallback callback,
                       gpointer user_data);

gboolean sw_keyfob_oauth2_sync (OAuth2Proxy *proxy);

void sw_keyfob_flickr (FlickrProxy *proxy,
                          SwKeyfobCallback callback,
                          gpointer user_data);

gboolean sw_keyfob_flickr_sync (FlickrProxy *proxy);

G_END_DECLS

#endif /* __SW_KEYFOB_H__ */