Fri, 01 Nov 2024 12:25:52 +0100
fix pgext uses a wrong field number, if the column has the same name as a resource or property column
1 | 1 | /* |
2 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. | |
3 | * | |
44
3da1f7b6847f
added some error messages
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
41
diff
changeset
|
4 | * Copyright 2013 Olaf Wintermann. All rights reserved. |
1 | 5 | * |
6 | * Redistribution and use in source and binary forms, with or without | |
7 | * modification, are permitted provided that the following conditions are met: | |
8 | * | |
9 | * 1. Redistributions of source code must retain the above copyright | |
10 | * notice, this list of conditions and the following disclaimer. | |
11 | * | |
12 | * 2. Redistributions in binary form must reproduce the above copyright | |
13 | * notice, this list of conditions and the following disclaimer in the | |
14 | * documentation and/or other materials provided with the distribution. | |
15 | * | |
16 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | |
17 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
18 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
19 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE | |
20 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
21 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
22 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
23 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
24 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
25 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
26 | * POSSIBILITY OF SUCH DAMAGE. | |
27 | */ | |
28 | ||
29 | #ifndef SESSIONHANDLER_H | |
30 | #define SESSIONHANDLER_H | |
31 | ||
14
b8bf95b39952
New source folder layout
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1
diff
changeset
|
32 | #include "../util/thrpool.h" |
b8bf95b39952
New source folder layout
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1
diff
changeset
|
33 | #include "../public/nsapi.h" |
191
391ccd490d97
moves IOStream creation to the sessionhandler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
188
diff
changeset
|
34 | #include "../util/io.h" |
35
4417619a9bbd
using non blocking IO for request input
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
35 | #include "event.h" |
1 | 36 | |
106
b122f34ddc80
added minimal ssl support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
78
diff
changeset
|
37 | #include <openssl/bio.h> |
b122f34ddc80
added minimal ssl support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
78
diff
changeset
|
38 | #include <openssl/ssl.h> |
b122f34ddc80
added minimal ssl support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
78
diff
changeset
|
39 | #include <openssl/err.h> |
b122f34ddc80
added minimal ssl support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
78
diff
changeset
|
40 | |
1 | 41 | #ifdef __cplusplus |
42 | extern "C" { | |
43 | #endif | |
44 | ||
45 | typedef struct _session_handler SessionHandler; | |
46 | typedef struct _connection Connection; | |
47 | ||
396
77d81f2bb9f7
add initial ipv6 support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
194
diff
changeset
|
48 | typedef union ConnectionAddr ConnectionAddr; |
77d81f2bb9f7
add initial ipv6 support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
194
diff
changeset
|
49 | |
77d81f2bb9f7
add initial ipv6 support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
194
diff
changeset
|
50 | union ConnectionAddr { |
77d81f2bb9f7
add initial ipv6 support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
194
diff
changeset
|
51 | struct sockaddr_in address_v4; |
77d81f2bb9f7
add initial ipv6 support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
194
diff
changeset
|
52 | struct sockaddr_in6 address_v6; |
77d81f2bb9f7
add initial ipv6 support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
194
diff
changeset
|
53 | }; |
77d81f2bb9f7
add initial ipv6 support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
194
diff
changeset
|
54 | |
77d81f2bb9f7
add initial ipv6 support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
194
diff
changeset
|
55 | enum ConnectionAddrType { |
77d81f2bb9f7
add initial ipv6 support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
194
diff
changeset
|
56 | CONN_ADDR_IPV4 = 0, |
77d81f2bb9f7
add initial ipv6 support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
194
diff
changeset
|
57 | CONN_ADDR_IPV6 |
77d81f2bb9f7
add initial ipv6 support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
194
diff
changeset
|
58 | }; |
77d81f2bb9f7
add initial ipv6 support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
194
diff
changeset
|
59 | |
77d81f2bb9f7
add initial ipv6 support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
194
diff
changeset
|
60 | typedef enum ConnectionAddrType ConnectionAddrType; |
77d81f2bb9f7
add initial ipv6 support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
194
diff
changeset
|
61 | |
1 | 62 | struct _connection { |
557
e35829a3a6d8
add sessionhandler debug logging
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
555
diff
changeset
|
63 | uint64_t id; |
19
d680536f8c2f
Added configuration manager
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
64 | int fd; |
396
77d81f2bb9f7
add initial ipv6 support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
194
diff
changeset
|
65 | ConnectionAddr address; |
77d81f2bb9f7
add initial ipv6 support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
194
diff
changeset
|
66 | ConnectionAddrType addr_type; |
19
d680536f8c2f
Added configuration manager
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
67 | HttpListener *listener; |
d680536f8c2f
Added configuration manager
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
68 | SessionHandler *session_handler; |
106
b122f34ddc80
added minimal ssl support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
78
diff
changeset
|
69 | SSL *ssl; |
194
6345f50208d5
fixes keep-alive with ssl
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
192
diff
changeset
|
70 | WSBool ssl_accepted; |
133
87b405d61f64
improves event handler and ssl error handling
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
128
diff
changeset
|
71 | int ssl_error; |
106
b122f34ddc80
added minimal ssl support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
78
diff
changeset
|
72 | int (*read)(Connection *conn, void *buf, int len); |
b122f34ddc80
added minimal ssl support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
78
diff
changeset
|
73 | int (*write)(Connection *conn, const void *buf, int len); |
b122f34ddc80
added minimal ssl support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
78
diff
changeset
|
74 | void (*close)(Connection *conn); |
1 | 75 | }; |
76 | ||
77 | typedef void(*enqueue_connection_f)(SessionHandler*, Connection*); | |
78
3578977d29a3
added keep-alive support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
47
diff
changeset
|
78 | typedef void(*keep_alive_f)(SessionHandler*, Connection*); |
1 | 79 | struct _session_handler { |
78
3578977d29a3
added keep-alive support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
47
diff
changeset
|
80 | /* |
3578977d29a3
added keep-alive support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
47
diff
changeset
|
81 | * Adds a connection. The session handler starts reading and parsing the |
3578977d29a3
added keep-alive support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
47
diff
changeset
|
82 | * http request. After that its pass the request to the request handler |
3578977d29a3
added keep-alive support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
47
diff
changeset
|
83 | * (handle_request). |
3578977d29a3
added keep-alive support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
47
diff
changeset
|
84 | */ |
3578977d29a3
added keep-alive support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
47
diff
changeset
|
85 | void(*enqueue_connection)(SessionHandler *sh, Connection *conn); |
3578977d29a3
added keep-alive support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
47
diff
changeset
|
86 | |
3578977d29a3
added keep-alive support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
47
diff
changeset
|
87 | /* |
3578977d29a3
added keep-alive support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
47
diff
changeset
|
88 | * Adds a connection to the keep-alive handler. The session handler |
3578977d29a3
added keep-alive support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
47
diff
changeset
|
89 | * waits for new data and re-enqueues the connection, if new data is |
3578977d29a3
added keep-alive support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
47
diff
changeset
|
90 | * available |
3578977d29a3
added keep-alive support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
47
diff
changeset
|
91 | */ |
3578977d29a3
added keep-alive support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
47
diff
changeset
|
92 | void(*keep_alive)(SessionHandler*, Connection *conn); |
191
391ccd490d97
moves IOStream creation to the sessionhandler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
188
diff
changeset
|
93 | |
391ccd490d97
moves IOStream creation to the sessionhandler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
188
diff
changeset
|
94 | /* |
391ccd490d97
moves IOStream creation to the sessionhandler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
188
diff
changeset
|
95 | * Creates an IOStream object for the connection |
391ccd490d97
moves IOStream creation to the sessionhandler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
188
diff
changeset
|
96 | */ |
391ccd490d97
moves IOStream creation to the sessionhandler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
188
diff
changeset
|
97 | IOStream*(*create_iostream)(SessionHandler *sh, Connection *conn, pool_handle_t *pool, WSBool *ssl); |
1 | 98 | }; |
99 | ||
100 | /* | |
101 | * BasicSessionHandler | |
102 | * | |
35
4417619a9bbd
using non blocking IO for request input
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
103 | * The BasicSessionHandler enqueues the connections to a threadpool. IO is |
4417619a9bbd
using non blocking IO for request input
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
104 | * handled by the threadpool. |
1 | 105 | */ |
106 | typedef struct _basic_session_handler { | |
107 | SessionHandler sh; | |
108 | threadpool_t *threadpool; | |
109 | ||
110 | } BasicSessionHandler; | |
111 | ||
35
4417619a9bbd
using non blocking IO for request input
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
112 | /* |
4417619a9bbd
using non blocking IO for request input
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
113 | * EventSessionHandler |
4417619a9bbd
using non blocking IO for request input
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
114 | * |
4417619a9bbd
using non blocking IO for request input
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
115 | * The EventSessionHandler uses a event handler to handle request inputs. |
4417619a9bbd
using non blocking IO for request input
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
116 | */ |
4417619a9bbd
using non blocking IO for request input
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
117 | typedef struct _event_session_handler { |
4417619a9bbd
using non blocking IO for request input
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
118 | SessionHandler sh; |
159
9ba9f8befa80
makes EventHandler public
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
133
diff
changeset
|
119 | EVHandler *eventhandler; |
35
4417619a9bbd
using non blocking IO for request input
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
120 | } EventSessionHandler; |
4417619a9bbd
using non blocking IO for request input
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
121 | |
4417619a9bbd
using non blocking IO for request input
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
122 | /* |
4417619a9bbd
using non blocking IO for request input
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
123 | * EventHttpIO |
4417619a9bbd
using non blocking IO for request input
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
124 | * |
4417619a9bbd
using non blocking IO for request input
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
125 | * defined in sesionhandler.c |
4417619a9bbd
using non blocking IO for request input
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
126 | */ |
542
1327febf99c4
refactore keep alive handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
438
diff
changeset
|
127 | typedef struct EventHttpIO EventHttpIO; |
35
4417619a9bbd
using non blocking IO for request input
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
128 | |
106
b122f34ddc80
added minimal ssl support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
78
diff
changeset
|
129 | int connection_read(Connection *conn, void *buf, int len); |
b122f34ddc80
added minimal ssl support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
78
diff
changeset
|
130 | int connection_write(Connection *conn, const void *buf, int len); |
b122f34ddc80
added minimal ssl support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
78
diff
changeset
|
131 | void connection_close(Connection *conn); |
b122f34ddc80
added minimal ssl support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
78
diff
changeset
|
132 | int connection_ssl_read(Connection *conn, void *buf, int len); |
b122f34ddc80
added minimal ssl support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
78
diff
changeset
|
133 | int connection_ssl_write(Connection *conn, const void *buf, int len); |
b122f34ddc80
added minimal ssl support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
78
diff
changeset
|
134 | void connection_ssl_close(Connection *conn); |
b122f34ddc80
added minimal ssl support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
78
diff
changeset
|
135 | |
114
c3a0f1275d71
fixed keep alive bug
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
106
diff
changeset
|
136 | void connection_destroy(Connection *conn); |
c3a0f1275d71
fixed keep alive bug
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
106
diff
changeset
|
137 | |
191
391ccd490d97
moves IOStream creation to the sessionhandler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
188
diff
changeset
|
138 | /* |
391ccd490d97
moves IOStream creation to the sessionhandler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
188
diff
changeset
|
139 | * generic create_iostream function for BasicSessionHandler |
391ccd490d97
moves IOStream creation to the sessionhandler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
188
diff
changeset
|
140 | * and EventSessionHandler |
391ccd490d97
moves IOStream creation to the sessionhandler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
188
diff
changeset
|
141 | */ |
192
6a145e13d933
replaces eventfd with pipe and closes aio branch
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
191
diff
changeset
|
142 | IOStream* create_connection_iostream( |
6a145e13d933
replaces eventfd with pipe and closes aio branch
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
191
diff
changeset
|
143 | SessionHandler *sh, |
6a145e13d933
replaces eventfd with pipe and closes aio branch
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
191
diff
changeset
|
144 | Connection *conn, |
6a145e13d933
replaces eventfd with pipe and closes aio branch
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
191
diff
changeset
|
145 | pool_handle_t *pool, |
6a145e13d933
replaces eventfd with pipe and closes aio branch
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
191
diff
changeset
|
146 | WSBool *ssl); |
191
391ccd490d97
moves IOStream creation to the sessionhandler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
188
diff
changeset
|
147 | |
1 | 148 | |
438
22eca559aded
refactore http listener creation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
396
diff
changeset
|
149 | SessionHandler* create_basic_session_handler(pool_handle_t *pool); |
1 | 150 | |
151 | void basic_enq_conn(SessionHandler *handler, Connection *conn); | |
152 | ||
153 | void* basic_run_session(void *data); | |
154 | ||
78
3578977d29a3
added keep-alive support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
47
diff
changeset
|
155 | void basic_keep_alive(SessionHandler *handler, Connection *conn); |
3578977d29a3
added keep-alive support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
47
diff
changeset
|
156 | |
1 | 157 | |
438
22eca559aded
refactore http listener creation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
396
diff
changeset
|
158 | SessionHandler* create_event_session_handler(pool_handle_t *pool); |
35
4417619a9bbd
using non blocking IO for request input
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
159 | |
554
e0a6b761ddbc
add request timeout handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
542
diff
changeset
|
160 | void evt_request_timeout(EventHandler *h, EVWatchList *item); |
e0a6b761ddbc
add request timeout handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
542
diff
changeset
|
161 | |
555
66b0accda0a8
move first request poll to the event handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
554
diff
changeset
|
162 | int evt_add_request(EventHandler *h, Event *event); |
554
e0a6b761ddbc
add request timeout handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
542
diff
changeset
|
163 | |
35
4417619a9bbd
using non blocking IO for request input
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
164 | void evt_enq_conn(SessionHandler *handler, Connection *conn); |
4417619a9bbd
using non blocking IO for request input
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
165 | |
542
1327febf99c4
refactore keep alive handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
438
diff
changeset
|
166 | EventHttpIO* evt_req_init(SessionHandler *handler, Connection *conn); |
1327febf99c4
refactore keep alive handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
438
diff
changeset
|
167 | |
188
0e6a05c779e0
using non-blocking IO for SSL_accept
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
159
diff
changeset
|
168 | int evt_request_ssl_accept(EventHandler *handler, Event *event); |
159
9ba9f8befa80
makes EventHandler public
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
133
diff
changeset
|
169 | int evt_request_input(EventHandler *h, Event *event); |
9ba9f8befa80
makes EventHandler public
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
133
diff
changeset
|
170 | int evt_request_finish(EventHandler *h, Event *event); |
9ba9f8befa80
makes EventHandler public
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
133
diff
changeset
|
171 | int evt_request_error(EventHandler *h, Event *event); |
35
4417619a9bbd
using non blocking IO for request input
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
172 | |
78
3578977d29a3
added keep-alive support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
47
diff
changeset
|
173 | void evt_keep_alive(SessionHandler *handler, Connection *conn); |
3578977d29a3
added keep-alive support
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
47
diff
changeset
|
174 | |
542
1327febf99c4
refactore keep alive handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
438
diff
changeset
|
175 | int evt_keep_alive_enqueue(EventHandler *h, Event *event); |
1327febf99c4
refactore keep alive handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
438
diff
changeset
|
176 | int evt_keep_alive_input_event(EventHandler *h, Event *event); |
1327febf99c4
refactore keep alive handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
438
diff
changeset
|
177 | |
1327febf99c4
refactore keep alive handler
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
438
diff
changeset
|
178 | void evt_keep_alive_destroy(EventHandler *h, EVWatchList *item); |
1 | 179 | |
180 | #ifdef __cplusplus | |
181 | } | |
182 | #endif | |
183 | ||
184 | #endif /* SESSIONHANDLER_H */ | |
185 |