Go to the source code of this file.
Classes |
struct | sock_userdata_t |
struct | apr_socket_t |
Defines |
#define | POLLIN 1 |
#define | POLLPRI 2 |
#define | POLLOUT 4 |
#define | POLLERR 8 |
#define | POLLHUP 16 |
#define | POLLNVAL 32 |
#define | apr_is_option_set(skt, option) (((skt)->options & (option)) == (option)) |
#define | apr_set_option(skt, option, on) |
Typedefs |
typedef struct sock_userdata_t | sock_userdata_t |
Functions |
const char * | apr_inet_ntop (int af, const void *src, char *dst, apr_size_t size) |
int | apr_inet_pton (int af, const char *src, void *dst) |
void | apr_sockaddr_vars_set (apr_sockaddr_t *, int, apr_port_t) |
Define Documentation
Value:do { \
if (on) \
(skt)->options |= (option); \
else \
(skt)->options &= ~(option); \
} while (0)
Definition at line 133 of file unix/apr_arch_networkio.h.
Typedef Documentation
Function Documentation
const char* apr_inet_ntop |
( |
int |
af, |
|
|
const void * |
src, |
|
|
char * |
dst, |
|
|
apr_size_t |
size |
|
) |
| |