#include "apr_strings.h"#include "ap_config.h"#include "httpd.h"#include "http_config.h"#include "http_core.h"#include "http_request.h"#include "http_protocol.h"#include "http_log.h"#include "http_main.h"#include "util_script.h"Include dependency graph for mod_dir.c:

Go to the source code of this file.
Defines | |
| #define | DIR_CMD_PERMS OR_INDEXES |
Typedefs | |
| typedef dir_config_struct | dir_config_rec |
Enumerations | |
| enum | slash_cfg { SLASH_OFF = 0, SLASH_ON, SLASH_UNSET } |
Functions | |
| static const char * | add_index (cmd_parms *cmd, void *dummy, const char *arg) |
| static const char * | configure_slash (cmd_parms *cmd, void *d_, int arg) |
| static void * | create_dir_config (apr_pool_t *p, char *dummy) |
| static void * | merge_dir_configs (apr_pool_t *p, void *basev, void *addv) |
| static int | fixup_dir (request_rec *r) |
| static void | register_hooks (apr_pool_t *p) |
Variables | |
| module AP_MODULE_DECLARE_DATA | dir_module |
| static const command_rec | dir_cmds [] |
|
|
|
|
|
|
|
|
|
|
||||||||||||||||
|
Definition at line 47 of file mod_dir.c. References dir_config_struct::index_names, NULL, and cmd_parms_struct::pool. |
|
||||||||||||||||
|
Definition at line 58 of file mod_dir.c. References dir_config_struct::do_slash, NULL, SLASH_OFF, and SLASH_ON. |
|
||||||||||||
|
Definition at line 75 of file mod_dir.c. References apr_pcalloc, NULL, and SLASH_UNSET. |
|
|
||||||||||||||||
|
Definition at line 84 of file mod_dir.c. References apr_pcalloc, base, dir_config_struct::do_slash, dir_config_struct::index_names, and SLASH_UNSET. |
|
|
Definition at line 234 of file mod_dir.c. References APR_HOOK_LAST, fixup_dir(), and NULL. Here is the call graph for this function: ![]() |
|
|
Initial value:
{
AP_INIT_ITERATE("DirectoryIndex", add_index, NULL, DIR_CMD_PERMS,
"a list of file names"),
AP_INIT_FLAG("DirectorySlash", configure_slash, NULL, DIR_CMD_PERMS,
"On or Off"),
{NULL}
}
|
|
|
Initial value: {
STANDARD20_MODULE_STUFF,
create_dir_config,
merge_dir_configs,
NULL,
NULL,
dir_cmds,
register_hooks
}
Definition at line 239 of file mod_dir.c. Referenced by fixup_dir(). |