]> git.stg.codes - stg.git/blob - projects/rlm_stg/event.h
Merge branch 'stg-2.409'
[stg.git] / projects / rlm_stg / event.h
1 #ifndef FR_EVENT_H
2 #define FR_EVENT_H
3
4 /*
5  * event.h      Simple event queue
6  *
7  * Version:     $Id: event.h,v 1.1 2010/08/14 04:13:52 faust Exp $
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/ident.h>
28 //RCSIDH(event_h, "$Id: event.h,v 1.1 2010/08/14 04:13:52 faust Exp $")
29
30 typedef struct fr_event_list_t fr_event_list_t;
31 typedef struct fr_event_t fr_event_t;
32
33 typedef void (*fr_event_callback_t)(void *);
34 typedef void (*fr_event_status_t)(struct timeval *);
35 typedef void (*fr_event_fd_handler_t)(fr_event_list_t *el, int sock, void *ctx);
36
37 fr_event_list_t *fr_event_list_create(fr_event_status_t status);
38 void fr_event_list_free(fr_event_list_t *el);
39
40 int fr_event_list_num_elements(fr_event_list_t *el);
41
42 int fr_event_insert(fr_event_list_t *el,
43                       fr_event_callback_t callback,
44                       void *ctx, struct timeval *when, fr_event_t **ev_p);
45 int fr_event_delete(fr_event_list_t *el, fr_event_t **ev_p);
46
47 int fr_event_run(fr_event_list_t *el, struct timeval *when);
48
49 int fr_event_now(fr_event_list_t *el, struct timeval *when);
50
51 int fr_event_fd_insert(fr_event_list_t *el, int type, int fd,
52                          fr_event_fd_handler_t handler, void *ctx);
53 int fr_event_fd_delete(fr_event_list_t *el, int type, int fd);
54 int fr_event_loop(fr_event_list_t *el);
55 void fr_event_loop_exit(fr_event_list_t *el, int code);
56
57 #endif /* FR_HASH_H */