Mercurial > urweb
diff include/urweb.h @ 856:86ec89baee01
cgi protocol
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Tue, 23 Jun 2009 17:59:23 -0400 |
parents | 158d980889ac |
children | a738002d5b4d |
line wrap: on
line diff
--- a/include/urweb.h Tue Jun 23 15:56:04 2009 -0400 +++ b/include/urweb.h Tue Jun 23 17:59:23 2009 -0400 @@ -24,6 +24,7 @@ void uw_reset_keep_error_message(uw_context); failure_kind uw_begin_init(uw_context); +void uw_set_on_success(char *); void uw_set_headers(uw_context, char *(*get_header)(void *, const char *), void *get_header_data); failure_kind uw_begin(uw_context, char *path); void uw_login(uw_context); @@ -41,6 +42,7 @@ void uw_memstats(uw_context); int uw_send(uw_context, int sock); +int uw_print(uw_context, int fd); int uw_set_input(uw_context, const char *name, char *value); int uw_set_file_input(uw_context, char *name, uw_Basis_file);