summaryrefslogtreecommitdiff
path: root/apps/examples/uip/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/uip/main.c')
-rw-r--r--apps/examples/uip/main.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/examples/uip/main.c b/apps/examples/uip/main.c
index 9593d4d25..dcad63eaa 100644
--- a/apps/examples/uip/main.c
+++ b/apps/examples/uip/main.c
@@ -1,7 +1,7 @@
/****************************************************************************
* examples/uip/main.c
*
- * Copyright (C) 2007, 2009-2011 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2007, 2009-2012 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Based on uIP which also has a BSD style license:
@@ -78,6 +78,8 @@
#include <apps/netutils/httpd.h>
+#include "cgi.h"
+
/****************************************************************************
* Definitions
****************************************************************************/
@@ -192,6 +194,7 @@ int uip_main(int argc, char *argv[])
#ifdef CONFIG_NET_TCP
printf("Starting webserver\n");
httpd_init();
+ cgi_register();
httpd_listen();
#endif