This file is indexed.

/usr/include/gr_air_modes/types.h is in gr-air-modes 0.0.2.c29eb60-2ubuntu1.

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
/*
# Copyright 2010 Nick Foster
# 
# This file is part of gr-air-modes
# 
# gr-air-modes 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 3, or (at your option)
# any later version.
# 
# gr-air-modes 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 gr-air-modes; see the file COPYING.  If not, write to
# the Free Software Foundation, Inc., 51 Franklin Street,
# Boston, MA 02110-1301, USA.
# 
*/

#ifndef AIR_MODES_TYPES_H
#define AIR_MODES_TYPES_H

typedef enum { No_Packet = 0, Short_Packet = 1, Fruited_Packet = 2, Long_Packet = 3 } framer_packet_type;
typedef enum { No_Error = 0, Solution_Found, Too_Many_LCBs, No_Solution, Multiple_Solutions } bruteResultTypeDef;

struct modes_packet {
	unsigned char data[14];
//	unsigned char confidence[14]; //112 bits of boolean high/low confidence data for each bit
	unsigned char lowconfbits[24]; //positions of low confidence bits within the packet

	unsigned long crc;
	unsigned int numlowconf;
	framer_packet_type type; //what length packet are we
	unsigned int message_type;
	float reference_level;
	double timestamp;
};

struct slice_result_t {
	bool decision;
	bool confidence;
};

#endif