|
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 | : | 24.53 GB of 70.42 GB (34.84%) |
|
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/
libapr1-dev/
html/
- drwxr-xr-x
|
Viewing file: apr__poll_8h.html (19.44 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
Apache Portable Runtime: apr_poll.h File Reference
APR Poll interface.
More...
#include "apr.h"
#include "apr_pools.h"
#include "apr_errno.h"
#include "apr_inherit.h"
#include "apr_file_io.h"
#include "apr_network_io.h"
Go to the source code of this file.
Data Structures |
union | apr_descriptor |
struct | apr_pollfd_t |
Defines |
#define | APR_POLLIN 0x001 |
#define | APR_POLLPRI 0x002 |
#define | APR_POLLOUT 0x004 |
#define | APR_POLLERR 0x010 |
#define | APR_POLLHUP 0x020 |
#define | APR_POLLNVAL 0x040 |
#define | APR_POLLSET_THREADSAFE 0x001 |
#define | APR_POLLSET_NOCOPY 0x002 |
#define | APR_POLLSET_WAKEABLE 0x004 |
#define | APR_POLLSET_NODEFAULT 0x010 |
Typedefs |
typedef struct apr_pollfd_t | apr_pollfd_t |
typedef struct apr_pollset_t | apr_pollset_t |
typedef struct apr_pollcb_t | apr_pollcb_t |
typedef apr_status_t(* | apr_pollcb_cb_t )(void *baton, apr_pollfd_t *descriptor) |
Enumerations |
enum | apr_pollset_method_e {
APR_POLLSET_DEFAULT,
APR_POLLSET_SELECT,
APR_POLLSET_KQUEUE,
APR_POLLSET_PORT,
APR_POLLSET_EPOLL,
APR_POLLSET_POLL
} |
enum | apr_datatype_e { APR_NO_DESC,
APR_POLL_SOCKET,
APR_POLL_FILE,
APR_POLL_LASTDESC
} |
Functions |
apr_status_t | apr_pollset_create (apr_pollset_t **pollset, apr_uint32_t size, apr_pool_t *p, apr_uint32_t flags) |
apr_status_t | apr_pollset_create_ex (apr_pollset_t **pollset, apr_uint32_t size, apr_pool_t *p, apr_uint32_t flags, apr_pollset_method_e method) |
apr_status_t | apr_pollset_destroy (apr_pollset_t *pollset) |
apr_status_t | apr_pollset_add (apr_pollset_t *pollset, const apr_pollfd_t *descriptor) |
apr_status_t | apr_pollset_remove (apr_pollset_t *pollset, const apr_pollfd_t *descriptor) |
apr_status_t | apr_pollset_poll (apr_pollset_t *pollset, apr_interval_time_t timeout, apr_int32_t *num, const apr_pollfd_t **descriptors) |
apr_status_t | apr_pollset_wakeup (apr_pollset_t *pollset) |
apr_status_t | apr_poll (apr_pollfd_t *aprset, apr_int32_t numsock, apr_int32_t *nsds, apr_interval_time_t timeout) |
const char * | apr_pollset_method_name (apr_pollset_t *pollset) |
const char * | apr_poll_method_defname (void) |
apr_status_t | apr_pollcb_create (apr_pollcb_t **pollcb, apr_uint32_t size, apr_pool_t *p, apr_uint32_t flags) |
apr_status_t | apr_pollcb_create_ex (apr_pollcb_t **pollcb, apr_uint32_t size, apr_pool_t *p, apr_uint32_t flags, apr_pollset_method_e method) |
apr_status_t | apr_pollcb_add (apr_pollcb_t *pollcb, apr_pollfd_t *descriptor) |
apr_status_t | apr_pollcb_remove (apr_pollcb_t *pollcb, apr_pollfd_t *descriptor) |
apr_status_t | apr_pollcb_poll (apr_pollcb_t *pollcb, apr_interval_time_t timeout, apr_pollcb_cb_t func, void *baton) |
Detailed Description
|