+ /* Poll TCP connections for more data to send back to the host */\r
+ for (uint8_t i = 0; i < UIP_CONNS; i++)\r
+ {\r
+ uip_poll_conn(&uip_conns[i]);\r
+\r
+ /* If a response was generated, send it */\r
+ if (uip_len > 0)\r
+ {\r
+ /* Add destination MAC to outgoing packet */\r
+ uip_arp_out();\r
+\r
+ RNDIS_Host_SendPacket(&Ethernet_RNDIS_Interface, uip_buf, uip_len);\r
+ }\r
+ }\r
+\r