This file is indexed.

/usr/include/vstream-client.h is in vstream-client-dev 1.2-6.1.

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

#include <inttypes.h>

int vstream_start( );
int vstream_startstream( char *fsid );
int64_t vstream_streamsize( );
void vstream_list_streams( int longList );
int vstream_load_chunk( char *fsid, unsigned char *buff, int size, int64_t offset );
void vstream_set_socket_fd( int fd );
int vstream_open_socket( char *addy );

// you must implement this if you link against this library:
void vstream_error( const char *format, ... );

#define VSERVER_PORT 8074

#endif