|
Apache HTTPD
|
#include "apr.h"#include "apr_strings.h"#include "httpd.h"#include "http_config.h"#include "http_core.h"#include "http_log.h"#include "http_protocol.h"#include "util_mutex.h"#include "ap_config.h"Go to the source code of this file.
Classes | |
| struct | exipc_data |
Macros | |
| #define | HTML_HEADER |
| #define | HTML_FOOTER "</body>\n</html>\n" |
| #define | CAMPOUT 10 |
| #define | MAXCAMP 10 |
| #define | SLEEPYTIME 1000 |
Typedefs | |
| typedef struct exipc_data | exipc_data |
Functions | |
| static apr_status_t | shm_cleanup_wrapper (void *unused) |
| static int | exipc_pre_config (apr_pool_t *pconf, apr_pool_t *plog, apr_pool_t *ptemp) |
| static int | exipc_post_config (apr_pool_t *pconf, apr_pool_t *plog, apr_pool_t *ptemp, server_rec *s) |
| static void | exipc_child_init (apr_pool_t *p, server_rec *s) |
| static int | exipc_handler (request_rec *r) |
| static void | exipc_register_hooks (apr_pool_t *p) |
Variables | |
| apr_shm_t * | exipc_shm |
| char * | shmfilename |
| apr_global_mutex_t * | exipc_mutex |
| static const char * | exipc_mutex_type = "example-ipc-shm" |
| static int *const | aplog_module_index = &( example_ipc_module.module_index) |
| #define CAMPOUT 10 |
Definition at line 71 of file mod_example_ipc.c.
| #define HTML_HEADER |
Definition at line 66 of file mod_example_ipc.c.
| #define MAXCAMP 10 |
Definition at line 73 of file mod_example_ipc.c.
| #define SLEEPYTIME 1000 |
Definition at line 75 of file mod_example_ipc.c.
|
static |
Definition at line 196 of file mod_example_ipc.c.
|
static |
< Module declines to handle
< Module has handled this stage.
Definition at line 221 of file mod_example_ipc.c.
|
static |
< Module has handled this stage.
< Module has handled this stage.
Definition at line 119 of file mod_example_ipc.c.
|
static |
< Module has handled this stage.
Definition at line 107 of file mod_example_ipc.c.
|
static |
Definition at line 339 of file mod_example_ipc.c.
|
static |
< Module has handled this stage.
Definition at line 94 of file mod_example_ipc.c.
Definition at line 348 of file mod_example_ipc.c.
| apr_global_mutex_t* exipc_mutex |
Definition at line 79 of file mod_example_ipc.c.
Definition at line 80 of file mod_example_ipc.c.
| apr_shm_t* exipc_shm |
Definition at line 77 of file mod_example_ipc.c.
| char* shmfilename |
Definition at line 78 of file mod_example_ipc.c.