diff options
author | Martin Willi <martin@revosec.ch> | 2012-10-02 15:37:36 +0200 |
---|---|---|
committer | Martin Willi <martin@revosec.ch> | 2012-10-02 15:37:36 +0200 |
commit | 565bfc08c6d8779673f6435dacb701961ddacd1d (patch) | |
tree | 2e5afcfbe83e085ff94b57f2f3566f2ea8c13cec /src/libfast/request.h | |
parent | 9564f9eb6e5567d39aa1ed9f4de89144f82f69f1 (diff) | |
download | strongswan-d6b6988b6d46ac3fd91823cc89110c8aaf5dba6b.tar.bz2 strongswan-d6b6988b6d46ac3fd91823cc89110c8aaf5dba6b.tar.xz |
Add a libfast sendfile() method to send files from disk5.0.1
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 |