|
System | : | Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686 |
Software | : | Apache. PHP/5.3.6-13ubuntu3.10 |
ID | : | uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
|
|
Safe Mode | : | OFF |
Open_Basedir | : | OFF |
Freespace | : | 27.14 GB of 70.42 GB (38.55%) |
|
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON |
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
|
[ System Info ]
[ Processes ]
[ SQL Manager ]
[ Eval ]
[ Encoder ]
[ Mailer ]
[ Back Connection ]
[ Backdoor Server ]
[ Kernel Exploit Search ]
[ MD5 Decrypter ]
[ Reverse IP ]
[ Kill Shell ]
[ FTP Brute-Force ]
|
|
/
usr/
share/
doc/
libaprutil1-dev/
html/
- drwxr-xr-x
|
Viewing file: apr__dbm_8h.html (12.01 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
Apache Portable Runtime Utility Library: include/apr_dbm.h File Reference
Apache Portable Runtime Utility Library
|
APR-UTIL DBM library.
More...
#include "apu.h"
#include "apr.h"
#include "apr_errno.h"
#include "apr_pools.h"
#include "apr_file_info.h"
Go to the source code of this file.
Data Structures |
struct | apr_datum_t |
Defines |
#define | APR_DBM_READONLY 1 |
#define | APR_DBM_READWRITE 2 |
#define | APR_DBM_RWCREATE 3 |
#define | APR_DBM_RWTRUNC 4 |
Typedefs |
typedef struct apr_dbm_t | apr_dbm_t |
Functions |
apr_status_t | apr_dbm_open_ex (apr_dbm_t **dbm, const char *type, const char *name, apr_int32_t mode, apr_fileperms_t perm, apr_pool_t *cntxt) |
apr_status_t | apr_dbm_open (apr_dbm_t **dbm, const char *name, apr_int32_t mode, apr_fileperms_t perm, apr_pool_t *cntxt) |
void | apr_dbm_close (apr_dbm_t *dbm) |
apr_status_t | apr_dbm_fetch (apr_dbm_t *dbm, apr_datum_t key, apr_datum_t *pvalue) |
apr_status_t | apr_dbm_store (apr_dbm_t *dbm, apr_datum_t key, apr_datum_t value) |
apr_status_t | apr_dbm_delete (apr_dbm_t *dbm, apr_datum_t key) |
int | apr_dbm_exists (apr_dbm_t *dbm, apr_datum_t key) |
apr_status_t | apr_dbm_firstkey (apr_dbm_t *dbm, apr_datum_t *pkey) |
apr_status_t | apr_dbm_nextkey (apr_dbm_t *dbm, apr_datum_t *pkey) |
void | apr_dbm_freedatum (apr_dbm_t *dbm, apr_datum_t data) |
char * | apr_dbm_geterror (apr_dbm_t *dbm, int *errcode, char *errbuf, apr_size_t errbufsize) |
apr_status_t | apr_dbm_get_usednames_ex (apr_pool_t *pool, const char *type, const char *pathname, const char **used1, const char **used2) |
void | apr_dbm_get_usednames (apr_pool_t *pool, const char *pathname, const char **used1, const char **used2) |
Detailed Description
|