This file is indexed.

/usr/include/libecap/common/names.h is in libecap3-dev 1.0.1-3.2.

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
/* (C) 2008 The Measurement Factory */

#ifndef LIBECAP__COMMON_NAMES_H
#define LIBECAP__COMMON_NAMES_H

#include <libecap/common/name.h>

namespace libecap {

// various protocol elements for use with libecap::Name

extern const Name protocolHttp;
extern const Name protocolHttps;
extern const Name protocolFtp;
extern const Name protocolGopher;
extern const Name protocolWais;
extern const Name protocolUrn;
extern const Name protocolWhois;

extern const Name methodGet;
extern const Name methodPut;
extern const Name methodPost;
extern const Name methodHead;
extern const Name methodConnect;
extern const Name methodOptions;
extern const Name methodDelete;
extern const Name methodTrace;

extern const Name headerContentLength;
extern const Name headerTransferEncoding;
extern const Name headerReferer;
extern const Name headerVia;
extern const Name headerXClientIp;
extern const Name headerXServerIp;

// commonly used meta-information names, based on popular ICAP extensions
extern const Name metaClientIp;
extern const Name metaServerIp;
extern const Name metaUserName;
extern const Name metaAuthenticatedUser;
extern const Name metaAuthenticatedGroups;
extern const Name metaSubscriberId;
extern const Name metaVirusId;
extern const Name metaResponseInfo;
extern const Name metaResponseDesc;
extern const Name metaNextServices;

} // namespace libecap

#endif