diff options
Diffstat (limited to 'http.h')
-rw-r--r-- | http.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -36,6 +36,14 @@ #include "file.h" /* + * Return structure for HTTP action methods + */ +struct http_ret { + enum khttp code; + char *message; +}; + +/* * Initialize headers and start the document body with the provided http code. * All parameters are required. */ |