Definition:
#include "buff.h"
typedef struct buff_struct BUFF;
struct buff_struct {
int flags;
unsigned char *inptr;
int incnt;
int outchunk;
int outcnt;
unsigned char *inbase;
unsigned char *outbase;
int bufsiz;
void (*error) (BUFF *fb, int op, void *data);
void *error_data;
long int bytes_sent;
ap_pool *pool;
int fd;
int fd_in;
#ifdef WIN32
HANDLE hFH
#endif
void *t_handle;
#ifdef B_SFIO
Sfio_t *sf_in;
Sfio_t *sf_out;
#endif
};
Usage example:
No examples available.
No documentation available.
Previous: array_header
Next: child_info
Table of Contents
(Routines,
Structures,
Data Cells,
Constants)