2 * Copyright (c) 1995, Index Data
3 * See the file LICENSE for details.
4 * Sebastian Hammer, Adam Dickmeiss
7 * Revision 1.15 1995-09-15 14:44:15 quinn
8 * *** empty log message ***
10 * Revision 1.14 1995/08/29 14:44:50 quinn
13 * Revision 1.13 1995/08/29 11:17:56 quinn
14 * Added code to receive close
16 * Revision 1.12 1995/08/29 10:41:18 quinn
19 * Revision 1.11 1995/06/19 12:39:09 quinn
20 * Fixed bug in timeout code. Added BER dumper.
22 * Revision 1.10 1995/06/16 10:31:33 quinn
23 * Added session timeout.
25 * Revision 1.9 1995/06/05 10:53:31 quinn
26 * Added a better SCAN.
28 * Revision 1.8 1995/05/16 08:51:01 quinn
29 * License, documentation, and memory fixes
31 * Revision 1.7 1995/03/27 15:02:01 quinn
32 * Added some includes for better portability
34 * Revision 1.6 1995/03/27 08:34:21 quinn
35 * Added dynamic server functionality.
36 * Released bindings to session.c (is now redundant)
38 * Revision 1.5 1995/03/15 08:37:41 quinn
39 * Now we're pretty much set for nonblocking I/O.
41 * Revision 1.4 1995/03/14 16:59:48 quinn
44 * Revision 1.3 1995/03/14 11:30:14 quinn
47 * Revision 1.2 1995/03/14 10:27:59 quinn
48 * More work on demo server.
50 * Revision 1.1 1995/03/10 18:22:44 quinn
51 * The rudiments of an asynchronous server.
58 #include <sys/types.h>
64 #include <sys/select.h>
71 static IOCHAN iochans = 0;
73 IOCHAN iochan_getchan(void)
78 IOCHAN iochan_create(int fd, IOC_CALLBACK cb, int flags)
82 if (!(new = malloc(sizeof(*new))))
90 new->last_event = new->max_idle = 0;
100 fd_set in, out, except;
102 static struct timeval nullto = {0, 0}, to;
103 struct timeval *timeout;
108 timeout = &to; /* hang on select */
112 for (p = iochans; p; p = p->next)
115 timeout = &nullto; /* polling select */
116 if (p->flags & EVENT_INPUT)
118 if (p->flags & EVENT_OUTPUT)
120 if (p->flags & EVENT_EXCEPT)
121 FD_SET(p->fd, &except);
125 if ((res = select(max + 1, &in, &out, &except, timeout)) < 0)
131 for (p = iochans; p; p = p->next)
133 int force_event = p->force_event;
134 time_t now = time(0);
137 if (FD_ISSET(p->fd, &in) || force_event == EVENT_INPUT)
140 (*p->fun)(p, EVENT_INPUT);
142 if (!p->destroyed && (FD_ISSET(p->fd, &out) ||
143 force_event == EVENT_OUTPUT))
146 (*p->fun)(p, EVENT_OUTPUT);
148 if (!p->destroyed && (FD_ISSET(p->fd, &except) ||
149 force_event == EVENT_EXCEPT))
152 (*p->fun)(p, EVENT_EXCEPT);
154 if (!p->destroyed && p->max_idle && now - p->last_event >
158 (*p->fun)(p, EVENT_TIMEOUT);
161 for (p = iochans; p; p = nextp)
173 for (pr = iochans; pr; pr = pr->next)
176 assert(pr); /* grave error if it weren't there */