This file is indexed.

/usr/include/near/device.h is in neard-dev 0.11-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
/*
 *
 *  neard - Near Field Communication manager
 *
 *  Copyright (C) 2012  Intel Corporation. All rights reserved.
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2 as
 *  published by the Free Software Foundation.
 *
 *  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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 */

#ifndef __NEAR_DEVICE_H
#define __NEAR_DEVICE_H

#include <stdint.h>

#include <glib.h>

struct near_device;

typedef void (*near_device_io_cb) (uint32_t adapter_idx, uint32_t target_idx,
								int status);

struct near_ndef_message;

#define NEAR_DEVICE_PRIORITY_LOW      -100
#define NEAR_DEVICE_PRIORITY_DEFAULT     0
#define NEAR_DEVICE_PRIORITY_HIGH      100

#define NEAR_DEVICE_SN_NPP       "com.android.npp"
#define NEAR_DEVICE_SN_SNEP      "urn:nfc:sn:snep"
#define NEAR_DEVICE_SN_HANDOVER  "urn:nfc:sn:handover"

struct near_device_driver {
	int priority;

	int (*listen)(uint32_t adapter_idx, near_device_io_cb cb);
	int (*push)(uint32_t adapter_idx, uint32_t target_idx,
					struct near_ndef_message *ndef,
					char *service_name,
					near_device_io_cb cb);
};

struct near_device *near_device_get_device(uint32_t adapter_idx,
						uint32_t target_idx);
int near_device_add_data(uint32_t adapter_idx, uint32_t target_idx,
			uint8_t *data, size_t data_length);
int near_device_add_records(struct near_device *device, GList *records,
				near_device_io_cb cb, int status);
int near_device_driver_register(struct near_device_driver *driver);
void near_device_driver_unregister(struct near_device_driver *driver);

#endif