summaryrefslogtreecommitdiff
path: root/nuttx/examples/thttpd/main.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-07-18 22:59:44 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-07-18 22:59:44 +0000
commit3f09faeeeb7c23c496df9e3790fd3425429adddc (patch)
tree2bdc0fb58f143e7c60fec838522340f582f10b57 /nuttx/examples/thttpd/main.c
parent1e412a7c74a79a06ae1278c14015bc3f9cab978f (diff)
downloadpx4-nuttx-3f09faeeeb7c23c496df9e3790fd3425429adddc.tar.gz
px4-nuttx-3f09faeeeb7c23c496df9e3790fd3425429adddc.tar.bz2
px4-nuttx-3f09faeeeb7c23c496df9e3790fd3425429adddc.zip
Still fleshing out THTTPD example
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1994 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/examples/thttpd/main.c')
-rw-r--r--nuttx/examples/thttpd/main.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/nuttx/examples/thttpd/main.c b/nuttx/examples/thttpd/main.c
index 93596a3a1..1d3d847d2 100644
--- a/nuttx/examples/thttpd/main.c
+++ b/nuttx/examples/thttpd/main.c
@@ -73,6 +73,23 @@
****************************************************************************/
/****************************************************************************
+ * Public Data
+ ****************************************************************************/
+
+/* These values must be provided by the user before the THTTPD task daemon
+ * is started:
+ *
+ * g_thttpdsymtab: A symbol table describing all of the symbols exported
+ * from the base system. These symbols are used to bind address references
+ * in CGI programs to NuttX.
+ * g_nsymbols: The number of symbols in g_thttpdsymtab[].
+ */
+
+#warning "Not yet initialized"
+FAR const struct symtab_s *g_thttpdsymtab;
+int g_thttpdnsymbols;
+
+/****************************************************************************
* Public Functions
****************************************************************************/