This file is indexed.

/usr/include/lighttpd/joblist.h is in lighttpd-dev 1.4.45-1ubuntu3.

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
#ifndef _JOB_LIST_H_
#define _JOB_LIST_H_
#include "first.h"

#include "base.h"

int joblist_append(server *srv, connection *con);
void joblist_free(server *srv, connections *joblist);

int fdwaitqueue_append(server *srv, connection *con);
void fdwaitqueue_free(server *srv, connections *fdwaitqueue);
connection *fdwaitqueue_unshift(server *srv, connections *fdwaitqueue);

#endif