timer_set(&ARPTimer, CLOCK_SECOND * 10); \r
\r
/* uIP Stack Initialization */\r
timer_set(&ARPTimer, CLOCK_SECOND * 10); \r
\r
/* uIP Stack Initialization */\r
-/** Processes incomming packets to the server from the connected RNDIS device, creating responses as needed. */\r
-static void uIPManagement_ProcessIncommingPacket(void)\r
+/** Processes Incoming packets to the server from the connected RNDIS device, creating responses as needed. */\r
+static void uIPManagement_ProcessIncomingPacket(void)\r
{\r
/* If no packet received, exit processing routine */\r
if (!(RNDIS_Host_IsPacketReceived(&Ethernet_RNDIS_Interface)))\r
{\r
/* If no packet received, exit processing routine */\r
if (!(RNDIS_Host_IsPacketReceived(&Ethernet_RNDIS_Interface)))\r
RNDIS_Host_ReadPacket(&Ethernet_RNDIS_Interface, uip_buf, &uip_len);\r
\r
/* If the packet contains an Ethernet frame, process it */\r
RNDIS_Host_ReadPacket(&Ethernet_RNDIS_Interface, uip_buf, &uip_len);\r
\r
/* If the packet contains an Ethernet frame, process it */\r
/** Manages the currently open network connections, including TCP and (if enabled) UDP. */\r
static void uIPManagement_ManageConnections(void)\r
{\r
/** Manages the currently open network connections, including TCP and (if enabled) UDP. */\r
static void uIPManagement_ManageConnections(void)\r
{\r
/* Poll TCP connections for more data to send back to the host */\r
for (uint8_t i = 0; i < UIP_CONNS; i++)\r
{\r
/* Poll TCP connections for more data to send back to the host */\r
for (uint8_t i = 0; i < UIP_CONNS; i++)\r
{\r
for (uint8_t i = 0; i < UIP_UDP_CONNS; i++)\r
{\r
/* Run periodic connection management for each UDP connection */\r
for (uint8_t i = 0; i < UIP_UDP_CONNS; i++)\r
{\r
/* Run periodic connection management for each UDP connection */\r