Mercurial > urweb
comparison include/urweb.h @ 1113:40d48a2b78a7
Memory limits
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Sun, 03 Jan 2010 15:32:11 -0500 |
parents | 7fc4e0087e50 |
children | 01b6c7144a44 |
comparison
equal
deleted
inserted
replaced
1112:7a31e0cf25e9 | 1113:40d48a2b78a7 |
---|---|
19 void *logger_data, uw_logger log_error); | 19 void *logger_data, uw_logger log_error); |
20 void uw_prune_clients(uw_context); | 20 void uw_prune_clients(uw_context); |
21 failure_kind uw_initialize(uw_context); | 21 failure_kind uw_initialize(uw_context); |
22 | 22 |
23 uw_context uw_init(void); | 23 uw_context uw_init(void); |
24 void uw_set_app(uw_context, uw_app*); | 24 int uw_set_app(uw_context, uw_app*); |
25 void uw_set_db(uw_context, void*); | 25 void uw_set_db(uw_context, void*); |
26 void *uw_get_db(uw_context); | 26 void *uw_get_db(uw_context); |
27 void uw_free(uw_context); | 27 void uw_free(uw_context); |
28 void uw_reset(uw_context); | 28 void uw_reset(uw_context); |
29 void uw_reset_keep_request(uw_context); | 29 void uw_reset_keep_request(uw_context); |
255 uw_Basis_char uw_Basis_toupper(uw_context, uw_Basis_char); | 255 uw_Basis_char uw_Basis_toupper(uw_context, uw_Basis_char); |
256 | 256 |
257 uw_Basis_string uw_Basis_currentUrl(uw_context); | 257 uw_Basis_string uw_Basis_currentUrl(uw_context); |
258 void uw_set_currentUrl(uw_context, char *); | 258 void uw_set_currentUrl(uw_context, char *); |
259 | 259 |
260 extern size_t uw_messages_max, uw_clients_max, uw_headers_max, uw_page_max, uw_heap_max, uw_script_max; | |
261 extern size_t uw_inputs_max, uw_cleanup_max, uw_subinputs_max, uw_deltas_max, uw_transactionals_max, uw_globals_max; | |
262 | |
260 #endif | 263 #endif |