This file is indexed.

/usr/include/dovecot/master-service-settings-cache.h is in dovecot-dev 1:2.2.9-1ubuntu2.

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

struct master_service_settings_cache *
master_service_settings_cache_init(struct master_service *service,
				   const char *module,
				   const char *service_name);
void master_service_settings_cache_deinit(struct master_service_settings_cache **cache);

int master_service_settings_cache_read(struct master_service_settings_cache *cache,
				       const struct master_service_settings_input *input,
				       const struct dynamic_settings_parser *dyn_parsers,
				       const struct setting_parser_context **parser_r,
				       const char **error_r) ATTR_NULL(3);

#endif