diff options
Diffstat (limited to 'src/libfast/request.h')
-rw-r--r-- | src/libfast/request.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/libfast/request.h b/src/libfast/request.h index c9c1f13e2..63a465bb8 100644 --- a/src/libfast/request.h +++ b/src/libfast/request.h @@ -185,6 +185,15 @@ struct request_t { void (*serve)(request_t *this, char *headers, chunk_t chunk); /** + * Send a file from the file system. + * + * @param path path to file to serve + * @param mime mime type of file to send, or NULL + * @return TRUE if file served successfully + */ + bool (*sendfile)(request_t *this, char *path, char *mime); + + /** * Increase the reference count to the stream. * * @return this with increased refcount |