This file is indexed.

/usr/include/lighttpd/stream.h is in lighttpd-dev 1.4.35-4ubuntu2.

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 _STREAM_H_
#define _STREAM_H_

#include "buffer.h"

typedef struct {
	char *start;
	off_t size;
} stream;

int stream_open(stream *f, buffer *fn);
int stream_close(stream *f);

#endif