From 7592905c78f257058a006691f30227eaf027e5b3 Mon Sep 17 00:00:00 2001 From: patacongo Date: Tue, 4 Sep 2012 16:59:24 +0000 Subject: 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 --- apps/netutils/webserver/httpd.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'apps/netutils/webserver/httpd.h') 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 */ -- cgit v1.2.3