This file is indexed.

/usr/include/lighttpd/request.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
15
16
17
#ifndef _REQUEST_H_
#define _REQUEST_H_
#include "first.h"

#include "server.h"

typedef enum {
  HTTP_PARSEOPT_HEADER_STRICT  = 1
 ,HTTP_PARSEOPT_HOST_STRICT    = 2
 ,HTTP_PARSEOPT_HOST_NORMALIZE = 4
} http_parseopts_e;

int http_request_parse(server *srv, connection *con);
int http_request_header_finished(server *srv, connection *con);
int http_request_host_normalize(buffer *b);

#endif