#include "apr.h"
#include "apr_user.h"
#include "apr_pools.h"
#include "apr_tables.h"
#include "apr_time.h"
#include "apr_errno.h"
#include <sys/uio.h>
Go to the source code of this file.
Defines | |
#define | APR_UREAD 0x0400 /**< Read by user */ |
#define | APR_UWRITE 0x0200 /**< Write by user */ |
#define | APR_UEXECUTE 0x0100 /**< Execute by user */ |
#define | APR_GREAD 0x0040 /**< Read by group */ |
#define | APR_GWRITE 0x0020 /**< Write by group */ |
#define | APR_GEXECUTE 0x0010 /**< Execute by group */ |
#define | APR_WREAD 0x0004 /**< Read by others */ |
#define | APR_WWRITE 0x0002 /**< Write by others */ |
#define | APR_WEXECUTE 0x0001 /**< Execute by others */ |
Enumerations | |
enum | apr_filetype_e { APR_NOFILE = 0, APR_REG, APR_DIR, APR_CHR, APR_BLK, APR_PIPE, APR_LNK, APR_SOCK, APR_UNKFILE = 127 } |