]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS-Labs/Source/FreeRTOS-Plus-TCP/include/FreeRTOS_ARP.h
Add the Labs projects provided in the V10.2.1_191129 zip file.
[freertos] / FreeRTOS-Labs / Source / FreeRTOS-Plus-TCP / include / FreeRTOS_ARP.h
diff --git a/FreeRTOS-Labs/Source/FreeRTOS-Plus-TCP/include/FreeRTOS_ARP.h b/FreeRTOS-Labs/Source/FreeRTOS-Plus-TCP/include/FreeRTOS_ARP.h
new file mode 100644 (file)
index 0000000..13ba820
--- /dev/null
@@ -0,0 +1,141 @@
+/*\r
+ * FreeRTOS+TCP 191100 experimental\r
+ * Copyright (C) 2018 Amazon.com, Inc. or its affiliates.  All Rights Reserved.\r
+ *\r
+ * Permission is hereby granted, free of charge, to any person obtaining a copy of\r
+ * this software and associated documentation files (the "Software"), to deal in\r
+ * the Software without restriction, including without limitation the rights to\r
+ * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\r
+ * the Software, and to permit persons to whom the Software is furnished to do so,\r
+ * subject to the following conditions:\r
+ *\r
+ * The above copyright notice and this permission notice shall be included in all\r
+ * copies or substantial portions of the Software.\r
+ *\r
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\r
+ * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\r
+ * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\r
+ * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\r
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
+ *\r
+ * http://aws.amazon.com/freertos\r
+ * http://www.FreeRTOS.org\r
+ */\r
+\r
+#ifndef FREERTOS_ARP_H\r
+#define FREERTOS_ARP_H\r
+\r
+#ifdef __cplusplus\r
+extern "C" {\r
+#endif\r
+\r
+/* Application level configuration options. */\r
+#include "FreeRTOSIPConfig.h"\r
+#include "FreeRTOSIPConfigDefaults.h"\r
+#include "IPTraceMacroDefaults.h"\r
+\r
+/*-----------------------------------------------------------*/\r
+/* Miscellaneous structure and definitions. */\r
+/*-----------------------------------------------------------*/\r
+\r
+typedef struct xARP_CACHE_TABLE_ROW\r
+{\r
+       uint32_t ulIPAddress;           /* The IP address of an ARP cache entry. */\r
+       MACAddress_t xMACAddress;       /* The MAC address of an ARP cache entry. */\r
+       uint8_t ucAge;                          /* A value that is periodically decremented but can also be refreshed by active communication.  The ARP cache entry is removed if the value reaches zero. */\r
+       uint8_t ucValid;                        /* pdTRUE: xMACAddress is valid, pdFALSE: waiting for ARP reply */\r
+} ARPCacheRow_t;\r
+\r
+typedef enum\r
+{\r
+       eARPCacheMiss = 0,                      /* 0 An ARP table lookup did not find a valid entry. */\r
+       eARPCacheHit,                           /* 1 An ARP table lookup found a valid entry. */\r
+       eCantSendPacket                         /* 2 There is no IP address, or an ARP is still in progress, so the packet cannot be sent. */\r
+} eARPLookupResult_t;\r
+\r
+typedef enum\r
+{\r
+       eNotFragment = 0,                       /* The IP packet being sent is not part of a fragment. */\r
+       eFirstFragment,                         /* The IP packet being sent is the first in a set of fragmented packets. */\r
+       eFollowingFragment                      /* The IP packet being sent is part of a set of fragmented packets. */\r
+} eIPFragmentStatus_t;\r
+\r
+/*\r
+ * If ulIPAddress is already in the ARP cache table then reset the age of the\r
+ * entry back to its maximum value.  If ulIPAddress is not already in the ARP\r
+ * cache table then add it - replacing the oldest current entry if there is not\r
+ * a free space available.\r
+ */\r
+void vARPRefreshCacheEntry( const MACAddress_t * pxMACAddress, const uint32_t ulIPAddress );\r
+\r
+#if( ipconfigARP_USE_CLASH_DETECTION != 0 )\r
+       /* Becomes non-zero if another device responded to a gratuitos ARP message. */\r
+       extern BaseType_t xARPHadIPClash;\r
+       /* MAC-address of the other device containing the same IP-address. */\r
+       extern MACAddress_t xARPClashMacAddress;\r
+#endif /* ipconfigARP_USE_CLASH_DETECTION */\r
+\r
+#if( ipconfigUSE_ARP_REMOVE_ENTRY != 0 )\r
+\r
+       /*\r
+        * In some rare cases, it might be useful to remove a ARP cache entry of a\r
+        * known MAC address to make sure it gets refreshed.\r
+        */\r
+       uint32_t ulARPRemoveCacheEntryByMac( const MACAddress_t * pxMACAddress );\r
+\r
+#endif /* ipconfigUSE_ARP_REMOVE_ENTRY != 0 */\r
+\r
+/*\r
+ * Look for ulIPAddress in the ARP cache.  If the IP address exists, copy the\r
+ * associated MAC address into pxMACAddress, refresh the ARP cache entry's\r
+ * age, and return eARPCacheHit.  If the IP address does not exist in the ARP\r
+ * cache return eARPCacheMiss.  If the packet cannot be sent for any reason\r
+ * (maybe DHCP is still in process, or the addressing needs a gateway but there\r
+ * isn't a gateway defined) then return eCantSendPacket.\r
+ */\r
+eARPLookupResult_t eARPGetCacheEntry( uint32_t *pulIPAddress, MACAddress_t * const pxMACAddress );\r
+\r
+#if( ipconfigUSE_ARP_REVERSED_LOOKUP != 0 )\r
+\r
+       /* Lookup an IP-address if only the MAC-address is known */\r
+       eARPLookupResult_t eARPGetCacheEntryByMac( MACAddress_t * const pxMACAddress, uint32_t *pulIPAddress );\r
+\r
+#endif\r
+/*\r
+ * Reduce the age count in each entry within the ARP cache.  An entry is no\r
+ * longer considered valid and is deleted if its age reaches zero.\r
+ */\r
+void vARPAgeCache( void );\r
+\r
+/*\r
+ * Send out an ARP request for the IP address contained in pxNetworkBuffer, and\r
+ * add an entry into the ARP table that indicates that an ARP reply is\r
+ * outstanding so re-transmissions can be generated.\r
+ */\r
+void vARPGenerateRequestPacket( NetworkBufferDescriptor_t * const pxNetworkBuffer );\r
+\r
+/*\r
+ * After DHCP is ready and when changing IP address, force a quick send of our new IP\r
+ * address\r
+ */\r
+void vARPSendGratuitous( void );\r
+\r
+#ifdef __cplusplus\r
+} // extern "C"\r
+#endif\r
+\r
+#endif /* FREERTOS_ARP_H */\r
+\r
+\r
+\r
+\r
+\r
+\r
+\r
+\r
+\r
+\r
+\r
+\r
+\r