diff --git a/Documentation/NuttX.html b/Documentation/NuttX.html index f1bf734e98..0f4459c15e 100644 --- a/Documentation/NuttX.html +++ b/Documentation/NuttX.html @@ -1488,6 +1488,7 @@ nuttx-0.4.10 2009-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr> load_ and exec_module() in a more familiar manner. It is not consistent with more standard exec() functions, however, because (1) it returns and (2) it requires symbol table arguments. + * lib/: Add fileno() nuttx-0.4.10 2009-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr> diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index 9acd622cdd..5c5b49ef1b 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -12,7 +12,7 @@
Last Updated: July 11, 2009
+Last Updated: July 12, 2009
@@ -2347,6 +2347,117 @@ extern void up_ledoff(int led); +CONFIG_THTTPD_PORT
: THTTPD Server port number
+ CONFIG_THTTPD_IPADDR
: Server IP address (no host name)
+ CONFIG_THTTPD_SERVER_ADDRESS
: SERVER_ADDRESS: response
+ CONFIG_THTTPD_SERVER_SOFTWARE
: SERVER_SOFTWARE: response
+ CONFIG_THTTPD_CGI_PATH
:
+ CONFIG_THTTPD_CGI_PATTERN
: Only CGI programs matching this
+ pattern will be executed. In fact, if this value is not defined
+ then no CGI logic will be built.
+ CONFIG_THTTPD_CGI_PRIORITY
: Provides the priority of CGI child tasks
+ CONFIG_THTTPD_CGI_STACKSIZE
: Provides the initial stack size of
+ CGI child task (will be overridden by the stack size in the NXFLAT
+ header)
+ CONFIG_THTTPD_CGI_BYTECOUNT
: Byte output limit for CGI tasks.
+ CONFIG_THTTPD_CGI_TIMELIMIT
: How many seconds to allow CGI programs
+ to run before killing them.
+ CONFIG_THTTPD_CGI_OUTFD
: In NuttX, CGI cannot use stdout for output.
+ Rather, it must use this file descriptor number.
+ CONFIG_THTTPD_CHARSET- The default character set name to use with
+ text MIME types.
+
CONFIG_THTTPD_IOBUFFERSIZE
:
+ CONFIG_THTTPD_INDEX_NAMES
: A list of index filenames to check. The
+ files are searched for in this order.
+ CONFIG_AUTH_FILE
: The file to use for authentication. If this is
+ defined then thttpd checks for this file in the local directory
+ before every fetch. If the file exists then authentication is done,
+ otherwise the fetch proceeds as usual. If you leave this undefined
+ then thttpd will not implement authentication at all and will not
+ check for auth files, which saves a bit of CPU time. A typical
+ value is ".htpasswd&quout;
+ CONFIG_THTTPD_LISTEN_BACKLOG
: The listen() backlog queue length.
+ CONFIG_THTTPD_LINGER_MSEC
: How many milliseconds to leave a connection
+ open while doing a lingering close.
+ CONFIG_THTTPD_OCCASIONAL_MSEC
: How often to run the occasional
+ cleanup job.
+ CONFIG_THTTPD_IDLE_READ_LIMIT_SEC
: How many seconds to allow for
+ reading the initial request on a new connection.
+ CONFIG_THTTPD_IDLE_SEND_LIMIT_SEC
: How many seconds before an
+ idle connection gets closed.
+ CONFIG_THTTPD_TILDE_MAP1 and CONFIG_THTTPD_TILDE_MAP2
: Tilde mapping.
+ Many URLs use ~username to indicate a user's home directory. thttpd
+ provides two options for mapping this construct to an actual filename.
+ CONFIG_THTTPD_GENERATE_INDICES
+
CONFIG_THTTPD_URLPATTERN
: If defined, then it will be used to match
+ and verify referrers.
+