Apache2
|
Macros | |
#define | APACHE_ARG_MAX 512 |
#define APACHE_ARG_MAX 512 |
void ap_add_cgi_vars | ( | request_rec * | r | ) |
Add CGI environment variables required by HTTP/1.1 to the request's environment table
r | the current request |
void ap_add_common_vars | ( | request_rec * | r | ) |
Add common CGI environment variables to the requests environment table
r | The current request |
void ap_args_to_table | ( | request_rec * | r, |
apr_table_t ** | table | ||
) |
Parse query args for the request and store in a new table allocated from the request pool. For args with no value, "1" will be used instead. If no query args were specified, the table will be empty.
r | The current request |
table | A new table on output. |
char ** ap_create_environment | ( | apr_pool_t * | p, |
apr_table_t * | t | ||
) |
int ap_find_path_info | ( | const char * | uri, |
const char * | path_info | ||
) |
This "cute" little function comes about because the path info on filenames and URLs aren't always the same. So we take the two, and find as much of the two that match as possible.
uri | The uri we are currently parsing |
path_info | The current path info |
int ap_scan_script_header_err | ( | request_rec * | r, |
apr_file_t * | f, | ||
char * | buffer | ||
) |
Read headers output from a script, ensuring that the output is valid. If the output is valid, then the headers are added to the headers out of the current request. If the request method is GET or HEAD and the script's response will not meet the request's HTTP conditions, a conditional status code is returned.
r | The current request |
f | The file to read from |
buffer | Empty when calling the function. On output, if there was an error, the string that cause the error is stored here. |
int ap_scan_script_header_err_brigade | ( | request_rec * | r, |
apr_bucket_brigade * | bb, | ||
char * | buffer | ||
) |
Read headers output from a script, ensuring that the output is valid. If the output is valid, then the headers are added to the headers out of the current request. If the request method is GET or HEAD and the script's response will not meet the request's HTTP conditions, a conditional status code is returned.
r | The current request |
bb | The brigade from which to read |
buffer | Empty when calling the function. On output, if there was an error, the string that cause the error is stored here. |
int ap_scan_script_header_err_brigade_ex | ( | request_rec * | r, |
apr_bucket_brigade * | bb, | ||
char * | buffer, | ||
int | module_index | ||
) |
Read headers output from a script, ensuring that the output is valid. If the output is valid, then the headers are added to the headers out of the current request. If the request method is GET or HEAD and the script's response will not meet the request's HTTP conditions, a conditional status code is returned.
r | The current request |
bb | The brigade from which to read |
buffer | Empty when calling the function. On output, if there was an error, the string that cause the error is stored here. |
module_index | The module index to be used for logging |
int ap_scan_script_header_err_core | ( | request_rec * | r, |
char * | buffer, | ||
int(*)(char *, int, void *) | getsfunc, | ||
void * | getsfunc_data | ||
) |
Read headers output from a script, ensuring that the output is valid. If the output is valid, then the headers are added to the headers out of the current request. If the request method is GET or HEAD and the script's response will not meet the request's HTTP conditions, a conditional status code is returned.
r | The current request |
buffer | Empty when calling the function. On output, if there was an error, the string that cause the error is stored here. |
getsfunc | Function to read the headers from. This function should act like gets() |
getsfunc_data | The place to read from |
int ap_scan_script_header_err_core_ex | ( | request_rec * | r, |
char * | buffer, | ||
int(*)(char *, int, void *) | getsfunc, | ||
void * | getsfunc_data, | ||
int | module_index | ||
) |
Read headers output from a script, ensuring that the output is valid. If the output is valid, then the headers are added to the headers out of the current request. If the request method is GET or HEAD and the script's response will not meet the request's HTTP conditions, a conditional status code is returned.
r | The current request |
buffer | Empty when calling the function. On output, if there was an error, the string that cause the error is stored here. |
getsfunc | Function to read the headers from. This function should act like gets() |
getsfunc_data | The place to read from |
module_index | The module index to be used for logging |
int ap_scan_script_header_err_ex | ( | request_rec * | r, |
apr_file_t * | f, | ||
char * | buffer, | ||
int | module_index | ||
) |
Read headers output from a script, ensuring that the output is valid. If the output is valid, then the headers are added to the headers out of the current request. If the request method is GET or HEAD and the script's response will not meet the request's HTTP conditions, a conditional status code is returned.
r | The current request |
f | The file to read from |
buffer | Empty when calling the function. On output, if there was an error, the string that cause the error is stored here. |
module_index | The module index to be used for logging |
int ap_scan_script_header_err_strs | ( | request_rec * | r, |
char * | buffer, | ||
const char ** | termch, | ||
int * | termarg, | ||
... | |||
) |
Read headers strings from a script, ensuring that the output is valid. If the output is valid, then the headers are added to the headers out of the current request. If the request method is GET or HEAD and the script's response will not meet the request's HTTP conditions, a conditional status code is returned.
r | The current request |
buffer | Empty when calling the function. On output, if there was an error, the string that cause the error is stored here. |
termch | Pointer to the last character parsed. |
termarg | Pointer to an int to capture the last argument parsed. |
The varargs are string arguments to parse consecutively for headers, with a NULL argument to terminate the list.
int ap_scan_script_header_err_strs_ex | ( | request_rec * | r, |
char * | buffer, | ||
int | module_index, | ||
const char ** | termch, | ||
int * | termarg, | ||
... | |||
) |
Read headers strings from a script, ensuring that the output is valid. If the output is valid, then the headers are added to the headers out of the current request. If the request method is GET or HEAD and the script's response will not meet the request's HTTP conditions, a conditional status code is returned.
r | The current request |
buffer | Empty when calling the function. On output, if there was an error, the string that cause the error is stored here. |
module_index | The module index to be used for logging |
termch | Pointer to the last character parsed. |
termarg | Pointer to an int to capture the last argument parsed. |
The varargs are string arguments to parse consecutively for headers, with a NULL argument to terminate the list.