This file is indexed.

/usr/include/lighttpd/mod_cml_funcs.h is in lighttpd-dev 1.4.28-2ubuntu4.

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

#ifdef HAVE_CONFIG_H
# include "config.h"
#endif

#ifdef HAVE_LUA_H
#include <lua.h>

int f_crypto_md5(lua_State *L);
int f_file_mtime(lua_State *L);
int f_file_isreg(lua_State *L);
int f_file_isdir(lua_State *L);
int f_dir_files(lua_State *L);

int f_memcache_exists(lua_State *L);
int f_memcache_get_string(lua_State *L);
int f_memcache_get_long(lua_State *L);
#endif
#endif