/* Icecast * * This program is distributed under the GNU General Public License, version 2. * A copy of this license is included with this source. * * Copyright 2000-2004, Jack Moffitt , * oddsock , * Karl Heyes * and others (see AUTHORS for details). */ #ifndef __FSERVE_H__ #define __FSERVE_H__ #include #include "compat.h" typedef struct _fserve_t { client_t *client; FILE *file; int offset; int64_t content_length; int datasize; int ready; unsigned char *buf; struct _fserve_t *next; } fserve_t; void fserve_initialize(void); void fserve_shutdown(void); int fserve_client_create(client_t *httpclient, const char *path); #endif