#include "apr_hooks.h"
#include "apr_network_io.h"
#include "apr_buckets.h"
Go to the source code of this file.
| #define | AP_BUCKET_IS_EOC(e) (e->type == &ap_bucket_type_eoc) |
| AP_DECLARE_HOOK (conn_rec *, create_connection,(apr_pool_t *p, server_rec *server, apr_socket_t *csd, long conn_id, void *sbh, apr_bucket_alloc_t *alloc)) AP_DECLARE_HOOK(int | |
| AP_DECLARE (apr_bucket *) ap_bucket_eoc_make(apr_bucket *b) | |
| pre_connection | |
| conn_rec * | c |
Definition in file http_connection.h.
|
|
Determine if a bucket is an End Of Connection (EOC) bucket
Definition at line 128 of file http_connection.h. Referenced by APR_OPTIONAL_FN_TYPE(), and ssl_io_filter_output(). |
|
|
Make the bucket passed in an error bucket
Definition at line 38 of file eoc_bucket.c. 00039 { 00040 apr_bucket *b = apr_bucket_alloc(sizeof(*b), list); 00041 00042 APR_BUCKET_INIT(b); 00043 b->free = apr_bucket_free; 00044 b->list = list; 00045 return ap_bucket_eoc_make(b); 00046 }
|
|
||||||||||||||||
|
This hook gives protocol modules an opportunity to set everything up before calling the protocol handler. All pre-connection hooks are run until one returns something other than ok or decline
|
|
|
Definition at line 108 of file http_connection.h. |