aboutsummaryrefslogtreecommitdiff
path: root/Projects/Webserver/Lib/uIPManagement.c
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2010-02-03 11:31:59 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2010-02-03 11:31:59 +0000
commit25ef271852466fc05f7379e0b1d26c91cbd21663 (patch)
tree536170467a2ad8129ff0cbb24faabd76bbf83f4f /Projects/Webserver/Lib/uIPManagement.c
parent9515e7697eae1bd45a8649552dcbf716aca03802 (diff)
Disable uIP connection polling for now - this seems to corrupt the buffers.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1107 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Projects/Webserver/Lib/uIPManagement.c')
-rw-r--r--Projects/Webserver/Lib/uIPManagement.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Projects/Webserver/Lib/uIPManagement.c b/Projects/Webserver/Lib/uIPManagement.c
index a2cadd67..1b94e8af 100644
--- a/Projects/Webserver/Lib/uIPManagement.c
+++ b/Projects/Webserver/Lib/uIPManagement.c
@@ -175,6 +175,7 @@ static void uIPManagement_ProcessIncommingPacket(void)
/** Manages the currently open network connections, including TCP and (if enabled) UDP. */
static void uIPManagement_ManageConnections(void)
{
+#if 0
/* Poll TCP connections for more data to send back to the host */
for (uint8_t i = 0; i < UIP_CONNS; i++)
{
@@ -189,7 +190,7 @@ static void uIPManagement_ManageConnections(void)
RNDIS_Host_SendPacket(&Ethernet_RNDIS_Interface, uip_buf, uip_len);
}
}
-
+#endif
/* Manage open connections for timeouts */
if (timer_expired(&ConnectionTimer))
{