php-src/ext/session/modules.c
Sascha Schumann 49824ee8cb - fix potential buffer problem in send_cookie
- fix gc probability algorithm
- don't access mod_data directly
- initial version of mm support for session data storage

  This works pretty good, but we need to create the initial mm pool
  from the parent process/thread. Still looking for a clean way to do that.
1999-08-27 21:03:22 +00:00

14 lines
217 B
C

/*
* To add a PHP session module, #include its header file and
* add a ps_xxx_ptr in the struct...
*/
#include "mod_files.h"
#include "mod_mm.h"
static ps_module *ps_modules[] = {
ps_files_ptr,
ps_mm_ptr,
};