summaryrefslogtreecommitdiff
path: root/apps/netutils/webserver/httpd.h
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-09-04 16:59:24 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-09-04 16:59:24 +0000
commit7592905c78f257058a006691f30227eaf027e5b3 (patch)
treed0e4b868b325893a025878c2b6b10762ca96b60e /apps/netutils/webserver/httpd.h
parent81fd1693a08fb50ca1ef42c9569397612d7ff098 (diff)
downloadnuttx-7592905c78f257058a006691f30227eaf027e5b3.tar.gz
nuttx-7592905c78f257058a006691f30227eaf027e5b3.tar.bz2
nuttx-7592905c78f257058a006691f30227eaf027e5b3.zip
Enhancements to the uIP web server from Kate
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5088 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/netutils/webserver/httpd.h')
-rw-r--r--apps/netutils/webserver/httpd.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/netutils/webserver/httpd.h b/apps/netutils/webserver/httpd.h
index 346159fb2..42a1e13f7 100644
--- a/apps/netutils/webserver/httpd.h
+++ b/apps/netutils/webserver/httpd.h
@@ -56,9 +56,14 @@
* Public Function Prototypes
****************************************************************************/
-/* file must be allocated by caller and will be filled in by the function. */
+/* 'file' must be allocated by caller and will be filled in by the function. */
int httpd_fs_open(const char *name, struct httpd_fs_file *file);
void httpd_fs_init(void);
+#ifdef CONFIG_NETUTILS_HTTPD_MMAP
+int httpd_mmap_open(const char *name, struct httpd_fs_file *file);
+int httpd_mmap_close(struct httpd_fs_file *file);
+#endif
+
#endif /* _NETUTILS_WEBSERVER_HTTPD_H */