Apache 1.3 API Documentation

Structure BUFF

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.

See also:
cmd_parms, command_rec, conn_rec, proxyreqtype, request_rec, server_addr_rec, server_rec, uri_components

Previous: array_header Next: child_info

Table of Contents (Routines, Structures, Data Cells, Constants)