mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05:00
33cf86f527
svn path=/icecast/trunk/icecast/; revision=9711
43 lines
967 B
C
43 lines
967 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).
|
|
*/
|
|
|
|
/* refbuf.h
|
|
**
|
|
** reference counting data buffer
|
|
**
|
|
*/
|
|
#ifndef __REFBUF_H__
|
|
#define __REFBUF_H__
|
|
|
|
typedef struct _refbuf_tag
|
|
{
|
|
char *data;
|
|
unsigned long len;
|
|
int sync_point;
|
|
struct _refbuf_tag *associated;
|
|
struct _refbuf_tag *next;
|
|
|
|
unsigned long _count;
|
|
} refbuf_t;
|
|
|
|
void refbuf_initialize(void);
|
|
void refbuf_shutdown(void);
|
|
|
|
refbuf_t *refbuf_new(unsigned long size);
|
|
void refbuf_addref(refbuf_t *self);
|
|
void refbuf_release(refbuf_t *self);
|
|
|
|
#define PER_CLIENT_REFBUF_SIZE 4096
|
|
|
|
#endif /* __REFBUF_H__ */
|
|
|