diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-06-27 14:44:00 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-06-27 14:44:00 -0400 |
commit | 688973e51e94d2c24185f0899227dfe7dd3dd93b (patch) | |
tree | 29f02cb11e27dc4394b44909fbaf79bda111f322 /include | |
parent | 74103b6a0ede67d270bb6850ae12578df62032fd (diff) |
Serving Hello via FastCGI
Diffstat (limited to 'include')
-rw-r--r-- | include/urweb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/urweb.h b/include/urweb.h index 93dbd0b7..6adc8969 100644 --- a/include/urweb.h +++ b/include/urweb.h @@ -43,6 +43,7 @@ void uw_memstats(uw_context); int uw_send(uw_context, int sock); int uw_print(uw_context, int fd); +int uw_output(uw_context ctx, int (*output)(void *data, char *buf, size_t len), void *data); int uw_set_input(uw_context, const char *name, char *value); int uw_set_file_input(uw_context, char *name, uw_Basis_file); |