[mod_status] page refresh option (fixes #2170)
[lighttpd.git] / src / stream.h
blob11c42f9795d99e6565cd71695933caf4bff62e4c
1 #ifndef _STREAM_H_
2 #define _STREAM_H_
3 #include "first.h"
5 #include "buffer.h"
7 typedef struct {
8 char *start;
9 off_t size;
10 } stream;
12 int stream_open(stream *f, buffer *fn);
13 int stream_close(stream *f);
15 #endif