This file is indexed.

/usr/include/libdvb/devices.hh is in libdvb-dev 0.5.5.1-5.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
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
#ifndef _channel_hh
#define _channel_hh

using namespace std;
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>

#include <iostream>
#include <fstream>
#include <sstream>
#include <iomanip>
#include <linux/dvb/frontend.h>

#define MAXNAM 25
#define MAXKEY 15
#define DEC(N) dec << setw(N) << setfill('0') 
#define HEX(N) hex << setw(N) << setfill('0') 


const int maxname=MAXNAM;
const int MAXAPIDS=32;
const uint32_t UNSET=0xffffffff;
const uint16_t NOID=0xffff;
const uint16_t NOPID=0xffff;

class Transponder {
public:
        uint16_t id;
        uint16_t onid;
        uint16_t satid;
        uint16_t tsid;
        int type;
        char name[maxname+1];
        uint32_t freq;
        int pol;
        int qam;
        uint32_t srate;
        int fec;
        int band;
        int hp_rate;         
	int lp_rate; 
        int mod;    
        int transmode;
        int guard;
        int hierarchy;
	fe_spectral_inversion_t inversion;

        struct Sat *sat;
        
        Transponder() {
		name[0]='\0';
		id = NOID;
		onid = NOID;
		satid = NOID;
		tsid = NOID;
		type = 0;
	}
	int orbpos;

        friend ostream &operator<<(ostream &stream, Transponder &x);
        friend istream &operator>>(istream &stream, Transponder &x);
};

class Sat {
public:
        uint16_t id;
        char name[maxname+1];
        unsigned int lnbid;
        struct Lnb *lnb;
        unsigned int rotorid;
        unsigned int fmin;
        unsigned int fmax;

        Sat() {
	        id=NOID;
		name[0]='\0';
		lnb=NULL;
	        rotorid=NOID;
	        lnbid=NOID;
		fmin=fmax=0;
	};
	int set(int sid, char *sname, int slnbid, int srotorid) {
	  return 0;
        }; 

        friend ostream &operator<<(ostream &stream, Sat &x);
        friend istream &operator>>(istream &stream, Sat &x);
};


class Lnb {
public:
        Sat *sat;
        uint16_t id;
        struct DVB *dvbd;
        char name[maxname+1];
        int type;
        unsigned int lof1;
        unsigned int lof2;
        unsigned int slof;
        int diseqcnr;
        uint16_t diseqcid;
        uint16_t swiid;


        void cpy (const Lnb &olnb){
	  this->id=olnb.id;
	  this->type=olnb.type;
	  this->lof1=olnb.lof1;
	  this->lof2=olnb.lof2;
	  this->slof=olnb.slof;
	  this->diseqcnr=olnb.diseqcnr;
	  this->diseqcid=olnb.diseqcid;
	  this->swiid=olnb.swiid;
	  strncpy(this->name,olnb.name,maxname);
	}

        void init(int t, uint l1, uint l2, uint sl,
		  int dnr, int disid, int sw) {
		type=t;
		lof1=l1;
		lof2=l2;
		slof=sl;
		diseqcnr=dnr;
		diseqcid=disid;
		swiid=sw;
		dvbd=0;
		name[0]='\0';
	}

        Lnb () {
	        lof1=lof2=slof=0;
	        swiid=NOID;
		diseqcid=NOID;
		diseqcnr=-1;
		name[0]='\0';
	}
  
        Lnb (const Lnb &olnb){
          cpy(olnb);
	}

  

        friend ostream &operator<<(ostream &stream, Lnb &x);
        friend istream &operator>>(istream &stream, Lnb &x);
};

struct diseqcmsg {
        int burst;
        int len;
        unsigned char msg[8];
};

class DiSEqC {
public:
        uint16_t id;
        char name[maxname+1];
        diseqcmsg msgs[4];

        friend ostream &operator<<(ostream &stream, DiSEqC &x);
        friend istream &operator>>(istream &stream, DiSEqC &x);
};

class Rotor {
public:
        uint16_t id;
        char name[maxname+1];
        diseqcmsg msgs[4];

        friend ostream &operator<<(ostream &stream, Rotor &x);
        friend istream &operator>>(istream &stream, Rotor &x);
};

class Switch {
public:
        uint16_t id;
        int switchid;
        char name[maxname+1];
        diseqcmsg msg;

        friend ostream &operator<<(ostream &stream, Switch &x);
        friend istream &operator>>(istream &stream, Switch &x);
};

class Network {
public:
        uint16_t id;
        char name[maxname+1];

        friend ostream &operator<<(ostream &stream, Network &x);
        friend istream &operator>>(istream &stream, Network &x);
};

class Bouquet {
public:
        uint16_t id;
        char name[maxname+1];

        friend ostream &operator<<(ostream &stream, Bouquet &x);
        friend istream &operator>>(istream &stream, Bouquet &x);
};


#define MAX_ECM 16
#define MAX_ECM_DESC 256
typedef struct ecm_struct {
        int num;
        uint16_t sysid[MAX_ECM];
        uint16_t pid[MAX_ECM];
	uint16_t length[MAX_ECM];
	uint8_t data[MAX_ECM*MAX_ECM_DESC];
} ecm_t;



class Channel{
public:
        Channel *next;
        uint32_t id;
        char name[maxname+1];
        char net_name[maxname+1];
        char prov_name[maxname+1];
        int32_t type;
	int checked;
  
        uint16_t pnr;
        uint16_t vpid;
        uint16_t apids[MAXAPIDS];
        char apids_name[MAXAPIDS*4];
        int32_t  apidnum;
        int  last_apidn;
        uint16_t tmppid;
        uint16_t ac3pid;
        uint16_t subpid;
        uint16_t ttpid;
        uint16_t pmtpid;
        uint16_t pcrpid;
        uint16_t casystem;
        uint16_t capid;

	ecm_t  ecm;
	int (*ecm_callback)(Channel *chan);

	int has_eit;
	int pres_follow;

        uint16_t satid;
        uint16_t tpid;
        uint16_t onid;
        uint16_t bid;
	int8_t eit_ver_n;
	int8_t eit_ver_c;

        void clearall(void) {
	        id=UNSET;
		memset(name,0,MAXNAM+1);
		memset(prov_name,0,MAXNAM+1);
		memset(net_name,0,MAXNAM+1);
		type=0;
		checked = 0;
		has_eit = -1;
		pres_follow = -1;
		eit_ver_c = -1;
		eit_ver_n = -1;
		
		pnr=NOPID;
		vpid=NOPID;
		memset(apids, 0, sizeof(uint16_t)*MAXAPIDS);
		memset(apids_name, 0, sizeof(char)*MAXAPIDS*4);
		apidnum=0;
		last_apidn=-1;
		tmppid=NOPID;
		subpid=NOPID;
		ac3pid=NOPID;
		ttpid=NOPID;
		pmtpid=NOPID;
		pcrpid=NOPID;
		capid=NOPID;

		satid=NOID;
		tpid=NOID;
		onid=NOID;
		bid=NOID;
		ecm_callback = NULL;
		memset(&ecm,0, sizeof(ecm_t));
	};

        Channel() {
	        clearall();
	}
  
        Channel(int cid, char *nam, int ty, int prognr,
		int vid, int aid, int tid) {
	        int l=strlen(nam);

		clearall();
		if (l>maxname){
		  cerr << "" << endl; 
		  l=maxname;
		}
		strncpy(name, nam, l);
		name[l]='\0';
		type=ty;
		pnr=prognr;
		vpid=vid;
		apids[0]=aid;
	}

#ifdef DEBUG
        ~Channel(){
	        cerr <<"Channel " << name << "  destroyed" << endl;
	}
#endif
  
        friend ostream &operator<<(ostream &stream, Channel &x);
        friend istream &operator>>(istream &stream, Channel &x);
};

int findkey(char *name, char *keys[]);
void getname(char *name,istream &ins, char startc = '\"', char stopc = '\"');
#endif /*channel.h*/