Added status function to be called just before select()
[freeradius.git] / src / include / event.h
1 #ifndef LRAD_EVENT_H
2 #define LRAD_EVENT_H
3
4 /*
5  * event.h      Simple event queue
6  *
7  * Version:     $Id$
8  *
9  *   This program is free software; you can redistribute it and/or modify
10  *   it under the terms of the GNU General Public License as published by
11  *   the Free Software Foundation; either version 2 of the License, or
12  *   (at your option) any later version.
13  *
14  *   This program is distributed in the hope that it will be useful,
15  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *   GNU General Public License for more details.
18  *
19  *   You should have received a copy of the GNU General Public License
20  *   along with this program; if not, write to the Free Software
21  *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22  *
23  * Copyright 2007 The FreeRADIUS server project
24  * Copyright 2007 Alan DeKok <aland@deployingradius.com>
25  */
26
27 #include <freeradius-devel/ident.h>
28 RCSIDH(event_h, "$Id$")
29
30 typedef struct lrad_event_list_t lrad_event_list_t;
31 typedef struct lrad_event_t lrad_event_t;
32
33 typedef void (*lrad_event_callback_t)(void *);
34 typedef void (*lrad_event_status_t)(struct timeval *);
35 typedef void (*lrad_event_fd_handler_t)(lrad_event_list_t *el, int sock, void *ctx);
36
37 lrad_event_list_t *lrad_event_list_create(lrad_event_status_t status);
38 void lrad_event_list_free(lrad_event_list_t *el);
39
40 int lrad_event_list_num_elements(lrad_event_list_t *el);
41
42 int lrad_event_insert(lrad_event_list_t *el,
43                       lrad_event_callback_t callback,
44                       void *ctx, struct timeval *when, lrad_event_t **ev_p);
45 int lrad_event_delete(lrad_event_list_t *el, lrad_event_t **ev_p);
46
47 int lrad_event_run(lrad_event_list_t *el, struct timeval *when);
48
49 int lrad_event_now(lrad_event_list_t *el, struct timeval *when);
50
51 int lrad_event_fd_insert(lrad_event_list_t *el, int type, int fd,
52                          lrad_event_fd_handler_t handler, void *ctx);
53 int lrad_event_fd_delete(lrad_event_list_t *el, int type, int fd);
54 int lrad_event_loop(lrad_event_list_t *el);
55 void lrad_event_loop_exit(lrad_event_list_t *el);
56
57 #endif /* LRAD_HASH_H */