9
0
Fork 0

Fix TCP list managment bug

git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@392 7fd9a85b-ad96-42d3-883c-3090e2eb8679
This commit is contained in:
patacongo 2007-11-20 21:55:06 +00:00
parent cb241d68c3
commit fd48a582ed
5 changed files with 20 additions and 5 deletions

View File

@ -232,4 +232,5 @@
* Add strcat() and strncat()
* Integrated uIP micro webserver
* Corrected a serious bug in TCP queue management

View File

@ -8,7 +8,7 @@
<tr align="center" bgcolor="#e4e4e4">
<td>
<h1><big><font color="#3c34ec"><i>NuttX RTOS</i></font></big></h1>
<p>Last Updated: November 19, 2007</p>
<p>Last Updated: November 20, 2007</p>
</td>
</tr>
</table>
@ -693,6 +693,7 @@ Other memory:
* Add strcat() and strncat()
* Integrated uIP micro webserver
* Corrected a serious bug in TCP queue management
</pre></ul>
<table width ="100%">

View File

@ -304,7 +304,7 @@ void uip_tcpfree(struct uip_conn *conn)
{
/* Remove the connection from the active list */
dq_rem(&conn->node, &g_free_tcp_connections);
dq_rem(&conn->node, &g_active_tcp_connections);
}
/* Release any read-ahead buffers attached to the connection */

View File

@ -469,7 +469,7 @@ static void *httpd_handler(void *arg)
if (pstate)
{
/* Loop processing each HTTP command */
do
// do
{
/* Re-initialize the thread state structure */
@ -480,7 +480,7 @@ static void *httpd_handler(void *arg)
ret = httpd_cmd(pstate);
}
while (ret == OK);
// while (ret == OK);
/* End of command processing -- Clean up and exit */

View File

@ -54,9 +54,22 @@
****************************************************************************/
#define HTTPD_FS_STATISTICS 1
#define HTTPD_IOBUFFER_SIZE UIP_TCP_MSS
/* For efficiency reasons, the size of the IO buffer should be a multiple
* of the TCP MSS value. Also, the current design requires that the IO
* buffer be sufficiently large to contain the entire GET request.
*/
#define HTTPD_IOBUFFER_SIZE (3*UIP_TCP_MSS)
/* this is the maximum size of a file path */
#define HTTPD_MAX_FILENAME 20
/* As threads are created to handle each request, a stack must be allocated
* for the thread. Use a default if the user provided no stacksize.
*/
#ifndef CONFIG_EXAMPLES_UIP_HTTPDSTACKSIZE
# define CONFIG_EXAMPLES_UIP_HTTPDSTACKSIZE 4096
#endif