You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
471 B
23 lines
471 B
13 years ago
|
#ifndef _LIGHTTPD_BUFFER_H_
|
||
|
#define _LIGHTTPD_BUFFER_H_
|
||
|
|
||
|
#include <lighttpd/settings.h>
|
||
|
|
||
|
#include <lighttpd/mempool.h>
|
||
|
|
||
|
typedef struct liBuffer liBuffer;
|
||
|
struct liBuffer {
|
||
|
gchar *addr;
|
||
|
gsize alloc_size;
|
||
|
gsize used;
|
||
|
gint refcount;
|
||
|
mempool_ptr mptr;
|
||
|
};
|
||
|
|
||
|
/* shared buffer; free memory after last reference is released */
|
||
|
LI_API liBuffer* li_buffer_new(gsize max_size);
|
||
|
LI_API void li_buffer_acquire(liBuffer *buf);
|
||
|
LI_API void li_buffer_release(liBuffer *buf);
|
||
|
|
||
|
#endif
|