summaryrefslogtreecommitdiff
path: root/FreeRTOS-Plus/Source/FreeRTOS-Plus-TCP/include/tcp_dump_packets.h
diff options
context:
space:
mode:
Diffstat (limited to 'FreeRTOS-Plus/Source/FreeRTOS-Plus-TCP/include/tcp_dump_packets.h')
-rw-r--r--FreeRTOS-Plus/Source/FreeRTOS-Plus-TCP/include/tcp_dump_packets.h89
1 files changed, 89 insertions, 0 deletions
diff --git a/FreeRTOS-Plus/Source/FreeRTOS-Plus-TCP/include/tcp_dump_packets.h b/FreeRTOS-Plus/Source/FreeRTOS-Plus-TCP/include/tcp_dump_packets.h
new file mode 100644
index 000000000..7dd369023
--- /dev/null
+++ b/FreeRTOS-Plus/Source/FreeRTOS-Plus-TCP/include/tcp_dump_packets.h
@@ -0,0 +1,89 @@
+/*
+ * FreeRTOS+TCP V2.2.1
+ * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy of
+ * this software and associated documentation files (the "Software"), to deal in
+ * the Software without restriction, including without limitation the rights to
+ * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+ * the Software, and to permit persons to whom the Software is furnished to do so,
+ * subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+ * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+ * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+ * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ *
+ * http://aws.amazon.com/freertos
+ * http://www.FreeRTOS.org
+ */
+
+/*
+ * dump_packets.c
+ * Used in the PC/Win project to dump Ethernet packets, along with some description.
+ */
+
+#ifndef DUMP_PACKETS_H
+
+
+#define DUMP_PACKETS_H
+
+#ifndef dumpMAX_DUMP_ENTRIES
+ #define dumpMAX_DUMP_ENTRIES 16
+#endif
+
+#define flag_ICMP4 0x00000001UL
+#define flag_ICMP6 0x00000002UL
+#define flag_UDP 0x00000004UL
+#define flag_TCP 0x00000008UL
+#define flag_DNS 0x00000010UL
+#define flag_REPLY 0x00000020UL
+#define flag_REQUEST 0x00000040UL
+#define flag_SYN 0x00000080UL
+#define flag_FIN 0x00000100UL
+#define flag_RST 0x00000200UL
+#define flag_ACK 0x00000400UL
+#define flag_IN 0x00000800UL
+#define flag_OUT 0x00001000UL
+#define flag_FRAME_ARP 0x00002000UL
+#define flag_ARP 0x00004000UL
+#define flag_UNKNOWN 0x00008000UL
+#define flag_FRAME_4 0x00010000UL
+#define flag_FRAME_6 0x00020000UL
+#define flag_Unknown_FRAME 0x00040000UL
+
+typedef struct xDumpEntry
+{
+ uint32_t ulMask;
+ size_t uxMax;
+ size_t uxCount;
+} DumpEntry_t;
+
+typedef struct xDumpEntries
+{
+ size_t uxEntryCount;
+ DumpEntry_t xEntries[ dumpMAX_DUMP_ENTRIES ];
+} DumpEntries_t;
+
+/*
+
+ */
+
+#if( ipconfigUSE_DUMP_PACKETS != 0 )
+
+ extern void dump_packet_init( const char *pcFileName, DumpEntries_t *pxEntries );
+ #define iptraceDUMP_INIT( pcFileName, pxEntries ) \
+ dump_packet_init( pcFileName, pxEntries )
+
+ extern void dump_packet( const uint8_t *pucBuffer, size_t uxLength, BaseType_t xIncoming );
+ #define iptraceDUMP_PACKET( pucBuffer, uxLength, xIncoming ) \
+ dump_packet( pucBuffer, uxLength, xIncoming )
+
+#endif
+
+#endif