Several bugfixes, mostly from Darcy Gong
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5217 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
38c5f11690
commit
f90c8836c0
@ -364,3 +364,7 @@
|
|||||||
There are still a LOT of empty, stub Kconfig files.
|
There are still a LOT of empty, stub Kconfig files.
|
||||||
* Kconfig: Fleshed out apps/examples/buttons/Kconfig. There are still a LOT
|
* Kconfig: Fleshed out apps/examples/buttons/Kconfig. There are still a LOT
|
||||||
of empty, stub Kconfig files.
|
of empty, stub Kconfig files.
|
||||||
|
* apps/netutils/webserver/httpd.c: Fix a bug that I introduced in
|
||||||
|
recent check-ins (Darcy Gong).
|
||||||
|
* apps/netutils/webclient/webclient.c: Fix another but that I introduced
|
||||||
|
when I was trying to add correct handling for loss of connection (Darcy Gong)
|
||||||
|
@ -524,7 +524,7 @@ int wget(FAR const char *url, FAR char *buffer, int buflen,
|
|||||||
ret = ws.datend;
|
ret = ws.datend;
|
||||||
goto errout_with_errno;
|
goto errout_with_errno;
|
||||||
}
|
}
|
||||||
else if (ret == 0)
|
else if (ws.datend == 0)
|
||||||
{
|
{
|
||||||
nvdbg("Connection lost\n");
|
nvdbg("Connection lost\n");
|
||||||
close(sockfd);
|
close(sockfd);
|
||||||
|
@ -694,7 +694,7 @@ static inline int httpd_parse(struct httpd_state *pstate)
|
|||||||
while (state != STATE_BODY);
|
while (state != STATE_BODY);
|
||||||
|
|
||||||
#if !defined(CONFIG_NETUTILS_HTTPD_SENDFILE) && !defined(CONFIG_NETUTILS_HTTPD_MMAP)
|
#if !defined(CONFIG_NETUTILS_HTTPD_SENDFILE) && !defined(CONFIG_NETUTILS_HTTPD_MMAP)
|
||||||
if (0 == strcmp(pstate->ht_filename, "/")
|
if (0 == strcmp(pstate->ht_filename, "/"))
|
||||||
{
|
{
|
||||||
strncpy(pstate->ht_filename, "/" CONFIG_NETUTILS_HTTPD_INDEX, strlen("/" CONFIG_NETUTILS_HTTPD_INDEX));
|
strncpy(pstate->ht_filename, "/" CONFIG_NETUTILS_HTTPD_INDEX, strlen("/" CONFIG_NETUTILS_HTTPD_INDEX));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user