This file is indexed.

/usr/include/irssi/src/irc/dcc/dcc-server.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
24
25
26
27
28
29
#ifndef __DCC_SERVER_H
#define __DCC_SERVER_H

#include "dcc.h"

#define DCC_SERVER(dcc) \
	MODULE_CHECK_CAST_MODULE(dcc, SERVER_DCC_REC, type, "DCC", "SERVER")

#define IS_DCC_SERVER(dcc) \
	(DCC_SERVER(dcc) ? TRUE : FALSE)

struct SERVER_DCC_REC {
#include "dcc-rec.h"
	NET_SENDBUF_REC *sendbuf;

	unsigned int accept_send:1;   /* Accept SEND connections */
	unsigned int accept_chat:1;   /* Accept CHAT connections */
	unsigned int accept_fserve:1; /* Accept FSERVE connections */
	unsigned int connection_established:1; /* We have made a connection */
};

#define DCC_SERVER_TYPE module_get_uniq_id_str("DCC", "SERVER")

typedef struct SERVER_DCC_REC SERVER_DCC_REC;

void dcc_server_init(void);
void dcc_server_deinit(void);

#endif