This file is indexed.

/usr/include/irssi/src/core/servers-reconnect.h is in irssi-dev 1.0.5-1ubuntu4.

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

/* wait for half an hour before trying to reconnect to host where last
   connection failed */
#define FAILED_RECONNECT_WAIT (60*30)

typedef struct {
        int tag;
	time_t next_connect;

	SERVER_CONNECT_REC *conn;
} RECONNECT_REC;

extern GSList *reconnects;

void reconnect_save_status(SERVER_CONNECT_REC *conn, SERVER_REC *server);
void server_reconnect_destroy(RECONNECT_REC *rec);

void servers_reconnect_init(void);
void servers_reconnect_deinit(void);

#endif