Kannel: Open Source WAP and SMS gateway
svn-r5336
|
#include "gw-config.h"
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include "gwlib/gwlib.h"
Go to the source code of this file.
Data Structures | |
struct | FDSet |
struct | action |
Functions | |
static struct action * | action_create (int type) |
static void | action_destroy (struct action *action) |
static void | action_destroy_item (void *action) |
static void | submit_action (FDSet *set, struct action *action) |
static void | submit_action_nosync (FDSet *set, struct action *action) |
static int | handle_action (FDSet *set, struct action *action) |
static int | find_entry (FDSet *set, int fd) |
static void | remove_entry (FDSet *set, int entry) |
static void | remove_deleted_entries (FDSet *set) |
static void | poller (void *arg) |
FDSet * | fdset_create_real (long timeout) |
void | fdset_destroy (FDSet *set) |
void | fdset_register (FDSet *set, int fd, int events, fdset_callback_t callback, void *data) |
void | fdset_listen (FDSet *set, int fd, int mask, int events) |
void | fdset_unregister (FDSet *set, int fd) |
void | fdset_set_timeout (FDSet *set, long timeout) |
|
static |
Definition at line 155 of file fdset.c.
References type.
Referenced by fdset_destroy(), fdset_listen(), fdset_register(), fdset_set_timeout(), and fdset_unregister().
|
static |
Definition at line 171 of file fdset.c.
References action::done, and gwlist_destroy().
Referenced by action_destroy_item(), handle_action(), and submit_action().
|
static |
Definition at line 181 of file fdset.c.
References action_destroy().
Referenced by fdset_destroy().
FDSet* fdset_create_real | ( | long | timeout | ) |
Definition at line 368 of file fdset.c.
References error(), fdset_destroy(), gwlist_create, gwthread_create, poller(), and action::timeout.
Referenced by port_add(), and start_client_threads().
void fdset_destroy | ( | FDSet * | set | ) |
Definition at line 398 of file fdset.c.
References action_create(), action_destroy_item(), action::DESTROY, error(), gwlist_destroy(), gwlist_len(), gwthread_join(), gwthread_self(), submit_action(), and warning().
Referenced by client_shutdown(), fdset_create_real(), handle_action(), port_remove(), and start_client_threads().
void fdset_listen | ( | FDSet * | set, |
int | fd, | ||
int | mask, | ||
int | events | ||
) |
Definition at line 470 of file fdset.c.
References action(), action_create(), action::events, action::fd, find_entry(), gw_assert(), gwthread_self(), action::LISTEN, action::mask, submit_action(), and warning().
Referenced by handle_action(), unlocked_register_pollin(), and unlocked_register_pollout().
void fdset_register | ( | FDSet * | set, |
int | fd, | ||
int | events, | ||
fdset_callback_t | callback, | ||
void * | data | ||
) |
Definition at line 425 of file fdset.c.
References action(), action_create(), action::callback, action::data, action::events, action::fd, gw_assert(), gwthread_self(), action::REGISTER, and submit_action_nosync().
Referenced by conn_register_real(), and handle_action().
void fdset_set_timeout | ( | FDSet * | set, |
long | timeout | ||
) |
Set timeout in seconds for this FDSet.
Definition at line 547 of file fdset.c.
References action(), action_create(), gw_assert(), gwthread_self(), action::SET_TIMEOUT, submit_action(), and action::timeout.
Referenced by http_set_client_timeout(), and port_set_timeout().
void fdset_unregister | ( | FDSet * | set, |
int | fd | ||
) |
Definition at line 510 of file fdset.c.
References action(), action_create(), action::fd, find_entry(), gw_assert(), gwthread_self(), remove_entry(), submit_action(), action::UNREGISTER, and warning().
Referenced by conn_destroy(), conn_unregister(), and handle_action().
|
static |
Definition at line 269 of file fdset.c.
References action::fd, gw_assert(), and gwthread_self().
Referenced by fdset_listen(), and fdset_unregister().
Definition at line 226 of file fdset.c.
References action_destroy(), action::callback, action::data, action::DESTROY, action::done, action::events, action::fd, fdset_destroy(), fdset_listen(), fdset_register(), fdset_unregister(), gw_assert(), gwlist_produce(), gwthread_self(), action::LISTEN, action::mask, panic, action::REGISTER, action::SET_TIMEOUT, action::timeout, action::type, and action::UNREGISTER.
Referenced by poller().
|
static |
Definition at line 318 of file fdset.c.
References action(), debug(), error(), gw_assert(), gwlist_extract_first(), gwthread_poll(), gwthread_sleep(), handle_action(), POLLERR, and remove_deleted_entries().
Referenced by fdset_create_real().
|
static |
|
static |
Definition at line 284 of file fdset.c.
Referenced by fdset_unregister(), and remove_deleted_entries().
Definition at line 191 of file fdset.c.
References action_destroy(), action::done, gw_assert(), gwlist_add_producer(), gwlist_append(), gwlist_consume(), gwlist_create, and gwthread_wakeup().
Referenced by fdset_destroy(), fdset_listen(), fdset_set_timeout(), and fdset_unregister().
Definition at line 216 of file fdset.c.
References gwlist_append(), and gwthread_wakeup().
Referenced by fdset_register().