--- ../snapgear-master-3.1.1/user/Makefile 2004-04-07 17:27:54.000000000 -0700 +++ user/Makefile 2004-06-23 14:18:12.000000000 -0700 @@ -35,6 +35,7 @@ dir_$(CONFIG_JFFS2_FS) += mtd-utils dir_$(CONFIG_USER_AGETTY_AGETTY) += agetty +dir_$(CONFIG_USER_APPWEB_APPWEB) += appWeb dir_$(CONFIG_USER_AT_AT) += at dir_$(CONFIG_USER_AT_ATD) += at dir_$(CONFIG_USER_AT_ATRUN) += at --- ../snapgear-master-3.1.1/config/config.in 2004-04-07 17:27:54.000000000 -0700 +++ config/config.in 2004-06-29 12:09:59.000000000 -0700 @@ -233,6 +233,19 @@ mainmenu_option next_comment comment 'Network Applications' +bool 'appWeb' CONFIG_USER_APPWEB_APPWEB +if [ "$CONFIG_USER_APPWEB_APPWEB" = "y" ]; then + if [ "$CONFIG_USER_APPWEB_MULTITHREAD" = "y" ]; then + define_bool CONFIG_LIB_PTHREAD y + fi + bool ' AppWeb supports CGI' CONFIG_USER_APPWEB_CGI + bool ' AppWeb supports SSL' CONFIG_USER_APPWEB_SSL + if [ "$CONFIG_USER_APPWEB_SSL" = "y" ]; then + define_bool CONFIG_LIB_LIBSSL y + fi + bool ' AppWeb is multithreaded' CONFIG_USER_APPWEB_MULTITHREAD + bool ' AppWeb can dynamically load AppWeb modules' CONFIG_USER_APPWEB_DYNAMIC +fi bool 'arp' CONFIG_USER_ROUTE_ARP bool 'fnord web server' CONFIG_USER_FNORD_HTTPD if [ "$CONFIG_USER_FNORD_HTTPD" != "y" ]; then --- ../snapgear-master-3.1.1/config/Configure.help 2004-04-07 17:13:57.000000000 -0700 +++ config/Configure.help 2004-06-29 12:45:53.000000000 -0700 @@ -147,6 +147,27 @@ CONFIG_USER_OTHER_SH You will select a shell from somewhere else in the configuration. +CONFIG_USER_APPWEB_APPWEB + Secure, fast, modular embedded web server supporting Embedded Server Pages. + Approx. binary size: 110-400k + +CONFIG_USER_APPWEB_CGI + Fast Common Gateway Interface (CGI). AppWeb also has better alternatives + such as Embedded Server Pages. + +CONFIG_USER_APPWEB_SSL + Do you want AppWeb to support SSL. AppWeb can support both standard HTTP + and secure HTTPS/SSL at the same time on different virtual hosts. + +CONFIG_USER_APPWEB_MULTITHREAD + Build AppWeb as a multithreaded application. This allows multiple + requests to be served concurrently. + +CONFIG_USER_APPWEB_DYNAMIC + Build AppWeb with the ability to dynamically load AppWeb modules. + AppWeb modules are a convenient way to add your application code + to AppWeb. + CONFIG_USER_AGETTY_AGETTY Install "agetty" in /bin Approx. binary size: 19k