mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2025-02-02 15:07:36 -05:00
36 lines
753 B
C
36 lines
753 B
C
/* 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 <jack@xiph.org,
|
|
* Michael Smith <msmith@xiph.org>,
|
|
* oddsock <oddsock@xiph.org>,
|
|
* Karl Heyes <karl@xiph.org>
|
|
* and others (see AUTHORS for details).
|
|
*/
|
|
|
|
#ifndef __FSERVE_H__
|
|
#define __FSERVE_H__
|
|
|
|
#include <stdio.h>
|
|
|
|
typedef struct
|
|
{
|
|
client_t *client;
|
|
|
|
FILE *file;
|
|
int offset;
|
|
int datasize;
|
|
unsigned char *buf;
|
|
} fserve_t;
|
|
|
|
void fserve_initialize(void);
|
|
void fserve_shutdown(void);
|
|
int fserve_client_create(client_t *httpclient, char *path);
|
|
|
|
|
|
#endif
|
|
|
|
|