diff options
author | Adam Chlipala <adam@chlipala.net> | 2013-12-11 14:57:54 -0500 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2013-12-11 14:57:54 -0500 |
commit | 001407495e8ce63fcff702515db38b882d425da8 (patch) | |
tree | 00c51911af9b45c7c29ef1ba89f02a3d49f0fd69 /include/urweb | |
parent | 56c340c258a706fec1186297649c5cedf64d2e3e (diff) |
Fix regression in http.c for long-polling connections; add lazy initialization of database connections, to avoid the overhead in handlers that don't use SQL
Diffstat (limited to 'include/urweb')
-rw-r--r-- | include/urweb/urweb_cpp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/urweb/urweb_cpp.h b/include/urweb/urweb_cpp.h index 4779b95a..fb3c83a2 100644 --- a/include/urweb/urweb_cpp.h +++ b/include/urweb/urweb_cpp.h @@ -37,6 +37,7 @@ void uw_set_on_success(char *); void uw_set_headers(struct uw_context *, char *(*get_header)(void *, const char *), void *get_header_data); void uw_set_env(struct uw_context *, char *(*get_env)(void *, const char *), void *get_env_data); failure_kind uw_begin(struct uw_context *, char *path); +void uw_ensure_transaction(struct uw_context *); failure_kind uw_begin_onError(struct uw_context *, char *msg); void uw_login(struct uw_context *); void uw_commit(struct uw_context *); |