]> git.sur5r.net Git - freertos/commitdiff
Add definitions for the different types of event that need processing by the TCP...
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Sat, 23 Apr 2011 15:34:37 +0000 (15:34 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Sat, 23 Apr 2011 15:34:37 +0000 (15:34 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1382 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

Demo/Common/ethernet/FreeTCPIP/net/uip.h

index 88d8645a4a8006b7eeab874413a8d752785f5eb8..00ae035a64f8cc4c324bb67861a2fe4219be563c 100644 (file)
@@ -2165,6 +2165,16 @@ u16_t    uip_udpchksum( void );
  * \return The ICMP checksum of the ICMP packet in uip_buf\r
  */\r
 u16_t  uip_icmp6chksum( void );\r
+\r
+/* Events that can get posted to the uIP event queue.  These are events\r
+originating from the Ethernet interface or from a timer. */\r
+#define uipETHERNET_RX_EVENT           0x01UL\r
+#define        uipETHERNET_TX_EVENT            0x02UL\r
+#define uipARP_TIMER_EVENT                     0x04UL\r
+#define uipPERIODIC_TIMER_EVENT                0x08UL\r
+#define uipAPPLICATION_SEND_EVENT      0x10UL\r
+\r
+\r
 #endif /* __UIP_H__ */\r
 \r
 /** @} */\r