|
Apache HTTPD
|
Structure to store things which are per connection. More...
#include <httpd.h>
| server_rec* conn_rec::base_server |
| struct apr_bucket_alloc_t* conn_rec::bucket_alloc |
| apr_sockaddr_t* conn_rec::client_addr |
remote address; this is the end-point of the next hop, for the address of the request creator, see useragent_addr in request_rec
| char* conn_rec::client_ip |
Client's IP address; this is the end-point of the next hop, for the IP of the request creator, see useragent_ip in request_rec
| struct ap_conf_vector_t* conn_rec::conn_config |
| conn_state_t* conn_rec::cs |
| int conn_rec::data_in_input_filters |
| int conn_rec::data_in_output_filters |
| long conn_rec::id |
| struct ap_filter_t* conn_rec::input_filters |
| ap_conn_keepalive_e conn_rec::keepalive |
Are we going to keep the connection alive for another request?
| apr_sockaddr_t* conn_rec::local_addr |
| char* conn_rec::local_host |
| const struct ap_logconf* conn_rec::log |
| conn_rec* conn_rec::master |
This points to the current thread being used to process this request, over the lifetime of a request, the value may change. Users of the connection record should not rely upon it staying the same between calls that involve the MPM. The "real" master connection. NULL if I am the master.
| apr_table_t* conn_rec::notes |
| struct ap_filter_t* conn_rec::output_filters |
| apr_pool_t* conn_rec::pool |
| char* conn_rec::remote_host |
| char* conn_rec::remote_logname |
Only ever set if doing rfc1413 lookups. N.B. Only access this through get_remote_logname()
| void* conn_rec::sbh |