From 98105851b6a66531f0ed722a76c251828819e635 Mon Sep 17 00:00:00 2001 From: Aniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com> Date: Thu, 26 May 2022 13:02:10 -0700 Subject: [PATCH 01/22] Update source location for coverity --- test/Coverity/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/Coverity/CMakeLists.txt b/test/Coverity/CMakeLists.txt index e423334534..b328655e88 100644 --- a/test/Coverity/CMakeLists.txt +++ b/test/Coverity/CMakeLists.txt @@ -39,7 +39,7 @@ file( GLOB KERNEL_SOURCES # Add TCP sources to a list file( GLOB TCP_SOURCES - ${MODULE_ROOT_DIR}/*.c ) + ${MODULE_ROOT_DIR}/source/*.c ) # A better way would be to create a library such that all other dependencies are # ignored by the static analysis tool. But, since +TCP is very closely linked @@ -49,13 +49,13 @@ file( GLOB TCP_SOURCES add_executable( StaticAnalysis ${TCP_SOURCES} ${KERNEL_SOURCES} ${CMAKE_CURRENT_LIST_DIR}/Portable.c - ${MODULE_ROOT_DIR}/portable/BufferManagement/BufferAllocation_2.c ) + ${MODULE_ROOT_DIR}/source/portable/BufferManagement/BufferAllocation_2.c ) # Link the include directories with the target target_include_directories( StaticAnalysis PUBLIC "${KERNEL_DIRECTORY}/include" PUBLIC "${MODULE_ROOT_DIR}/test/Coverity/ConfigFiles" - PUBLIC "${MODULE_ROOT_DIR}/include" ) + PUBLIC "${MODULE_ROOT_DIR}/source/include" ) # Uncomment the below line if the desired platform is 32-bit # set_target_properties( StaticAnalysis PROPERTIES COMPILE_FLAGS "-m32" LINK_FLAGS "-m32" ) From dfd1eb3f2bcee47cf50d876eed26b21876daee43 Mon Sep 17 00:00:00 2001 From: Aniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com> Date: Wed, 1 Jun 2022 12:53:31 -0700 Subject: [PATCH 02/22] Add coverage checker --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f6eab0d0d7..1beffa8167 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,6 +34,10 @@ jobs: run: | make -C test/unit-test/build/ coverage lcov --list --rc lcov_branch_coverage=1 test/unit-test/build/coverage.info + - name: Check Coverage + uses: FreeRTOS/CI-CD-Github-Actions/coverage-cop@main + with: + path: ./test/unit-test/build/coverage.info spell-check: runs-on: ubuntu-latest From ed0a1992b3116ca50ea4f234f681076f397b17dd Mon Sep 17 00:00:00 2001 From: Aniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com> Date: Wed, 1 Jun 2022 13:01:12 -0700 Subject: [PATCH 03/22] Add build check with default configuration --- .github/workflows/ci.yml | 5 +++ test/build-combination/CMakeLists.txt | 7 ++-- .../DefaultConf/FreeRTOSIPConfig.h | 39 +++++++++++++++++++ 3 files changed, 48 insertions(+), 3 deletions(-) create mode 100644 test/build-combination/DefaultConf/FreeRTOSIPConfig.h diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1beffa8167..3f8ecdc683 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -123,6 +123,11 @@ jobs: cmake -S test/build-combination -B test/build-combination/build/ \ -DTEST_CONFIGURATION=DISABLE_ALL make -C test/build-combination/build/ + - name: Build checks (Default configuration) + run: | + cmake -S test/build-combination -B test/build-combination/build/ \ + -DTEST_CONFIGURATION=DEFAULT_CONF + make -C test/build-combination/build/ complexity: runs-on: ubuntu-latest diff --git a/test/build-combination/CMakeLists.txt b/test/build-combination/CMakeLists.txt index 1d976eca86..0ecdbe3d9d 100644 --- a/test/build-combination/CMakeLists.txt +++ b/test/build-combination/CMakeLists.txt @@ -25,7 +25,7 @@ option( BUILD_CLONE_SUBMODULES ON ) -option(TEST_CONFIGURATION "Configuration All Enable/Disable" ENABLE_ALL) +option(TEST_CONFIGURATION "Configuration All Enable/Disable or default" ENABLE_ALL) message( STATUS "Argument: ${TEST_CONFIGURATION}") @@ -47,8 +47,10 @@ include_directories( ${TEST_DIR}/Common ) if( ${TEST_CONFIGURATION} STREQUAL "ENABLE_ALL" ) include_directories( ${TEST_DIR}/AllEnable ) -else() +elif( ${TEST_CONFIGURATION} STREQUAL "DISABLE_ALL" ) include_directories( ${TEST_DIR}/AllDisable ) +else() + include_directories( ${TEST_DIR}/DefaultConf ) endif() @@ -60,7 +62,6 @@ file(GLOB TCP_SOURCES "${MODULE_ROOT_DIR}/source/*.c" message(STATUS "${KERNEL_SOURCES}") message(STATUS "${TCP_SOURCES}") - add_executable(project ${KERNEL_SOURCES} ${TCP_SOURCES} ${FREERTOS_KERNEL_DIR}/portable/MemMang/heap_4.c diff --git a/test/build-combination/DefaultConf/FreeRTOSIPConfig.h b/test/build-combination/DefaultConf/FreeRTOSIPConfig.h new file mode 100644 index 0000000000..ad135660ed --- /dev/null +++ b/test/build-combination/DefaultConf/FreeRTOSIPConfig.h @@ -0,0 +1,39 @@ +/* + * FreeRTOS Kernel V10.4.1 + * Copyright (C) 2017 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 + */ + + +/***************************************************************************** +* +* See the following URL for configuration information. +* http://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_TCP/TCP_IP_Configuration.html +* +*****************************************************************************/ + +#ifndef FREERTOS_IP_CONFIG_H +#define FREERTOS_IP_CONFIG_H + +/* Empty configuration file to check the build with default configuration. */ + +#endif From 690f42ec8ad5a8aeb003fd58ade86abeec4f1b09 Mon Sep 17 00:00:00 2001 From: Aniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com> Date: Wed, 1 Jun 2022 20:17:24 +0000 Subject: [PATCH 04/22] Fix build combination and DNS error --- source/FreeRTOS_DNS.c | 6 +++++- source/include/FreeRTOS_DNS_Globals.h | 3 +++ test/build-combination/Common/main.c | 2 +- test/build-combination/DefaultConf/FreeRTOSIPConfig.h | 4 ++++ 4 files changed, 13 insertions(+), 2 deletions(-) diff --git a/source/FreeRTOS_DNS.c b/source/FreeRTOS_DNS.c index 86b4479586..53f60d5e93 100644 --- a/source/FreeRTOS_DNS.c +++ b/source/FreeRTOS_DNS.c @@ -221,7 +221,11 @@ { size_t xLength = strlen( pcHostName ) + 1U; - if( xLength <= ipconfigDNS_CACHE_NAME_LENGTH ) + #if ( ipconfigUSE_DNS_CACHE != 0 ) + if( xLength <= ipconfigDNS_CACHE_NAME_LENGTH ) + #else + if( xLength <= dnsMAX_HOSTNAME_LENGTH ) + #endif { /* The name is not too long. */ xLengthOk = pdTRUE; diff --git a/source/include/FreeRTOS_DNS_Globals.h b/source/include/FreeRTOS_DNS_Globals.h index bc02a413cb..762fa14bd9 100644 --- a/source/include/FreeRTOS_DNS_Globals.h +++ b/source/include/FreeRTOS_DNS_Globals.h @@ -76,6 +76,9 @@ #define dnsTYPE_A_HOST 0x01U /**< DNS type A host. */ #define dnsCLASS_IN 0x01U /**< DNS class IN (Internet). */ +/* Maximum hostname length as defined in RFC 1035 section 3.1. */ + #define dnsMAX_HOSTNAME_LENGTH 0xFFU + #ifndef _lint /* LLMNR constants. */ #define dnsLLMNR_TTL_VALUE 300U /**< LLMNR time to live value of 5 minutes. */ diff --git a/test/build-combination/Common/main.c b/test/build-combination/Common/main.c index 11e4aca341..76b0dc1e68 100644 --- a/test/build-combination/Common/main.c +++ b/test/build-combination/Common/main.c @@ -342,7 +342,7 @@ BaseType_t xNetworkInterfaceInitialise( void ) /* Provide a stub for this function. */ } -#if ( ipconfigUSE_TCP == 1 ) +#if( ( ipconfigUSE_TCP == 1 ) && ( ipconfigUSE_DHCP_HOOK != 0 ) ) eDHCPCallbackAnswer_t xApplicationDHCPHook( eDHCPCallbackPhase_t eDHCPPhase, uint32_t ulIPAddress ) { diff --git a/test/build-combination/DefaultConf/FreeRTOSIPConfig.h b/test/build-combination/DefaultConf/FreeRTOSIPConfig.h index ad135660ed..81db9fe78b 100644 --- a/test/build-combination/DefaultConf/FreeRTOSIPConfig.h +++ b/test/build-combination/DefaultConf/FreeRTOSIPConfig.h @@ -36,4 +36,8 @@ /* Empty configuration file to check the build with default configuration. */ +/* It is not sensible for this macro to have a default value as it is hardware + * dependent. */ +#define ipconfigBYTE_ORDER pdFREERTOS_LITTLE_ENDIAN + #endif From 9d051fdc75161b1a30e139e74b31f5babd3ac556 Mon Sep 17 00:00:00 2001 From: Aniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com> Date: Wed, 1 Jun 2022 20:24:08 +0000 Subject: [PATCH 05/22] uncrustified and fixed cmakelists --- source/include/FreeRTOS_DNS_Globals.h | 4 ++-- test/build-combination/CMakeLists.txt | 2 +- test/build-combination/Common/main.c | 2 +- test/build-combination/DefaultConf/FreeRTOSIPConfig.h | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/source/include/FreeRTOS_DNS_Globals.h b/source/include/FreeRTOS_DNS_Globals.h index 762fa14bd9..73400d1eda 100644 --- a/source/include/FreeRTOS_DNS_Globals.h +++ b/source/include/FreeRTOS_DNS_Globals.h @@ -73,8 +73,8 @@ #endif /* ( ipconfigUSE_NBNS == 1 ) */ /* Host types. */ - #define dnsTYPE_A_HOST 0x01U /**< DNS type A host. */ - #define dnsCLASS_IN 0x01U /**< DNS class IN (Internet). */ + #define dnsTYPE_A_HOST 0x01U /**< DNS type A host. */ + #define dnsCLASS_IN 0x01U /**< DNS class IN (Internet). */ /* Maximum hostname length as defined in RFC 1035 section 3.1. */ #define dnsMAX_HOSTNAME_LENGTH 0xFFU diff --git a/test/build-combination/CMakeLists.txt b/test/build-combination/CMakeLists.txt index 0ecdbe3d9d..170e0c2875 100644 --- a/test/build-combination/CMakeLists.txt +++ b/test/build-combination/CMakeLists.txt @@ -47,7 +47,7 @@ include_directories( ${TEST_DIR}/Common ) if( ${TEST_CONFIGURATION} STREQUAL "ENABLE_ALL" ) include_directories( ${TEST_DIR}/AllEnable ) -elif( ${TEST_CONFIGURATION} STREQUAL "DISABLE_ALL" ) +elseif( ${TEST_CONFIGURATION} STREQUAL "DISABLE_ALL" ) include_directories( ${TEST_DIR}/AllDisable ) else() include_directories( ${TEST_DIR}/DefaultConf ) diff --git a/test/build-combination/Common/main.c b/test/build-combination/Common/main.c index 76b0dc1e68..186d55e004 100644 --- a/test/build-combination/Common/main.c +++ b/test/build-combination/Common/main.c @@ -342,7 +342,7 @@ BaseType_t xNetworkInterfaceInitialise( void ) /* Provide a stub for this function. */ } -#if( ( ipconfigUSE_TCP == 1 ) && ( ipconfigUSE_DHCP_HOOK != 0 ) ) +#if ( ( ipconfigUSE_TCP == 1 ) && ( ipconfigUSE_DHCP_HOOK != 0 ) ) eDHCPCallbackAnswer_t xApplicationDHCPHook( eDHCPCallbackPhase_t eDHCPPhase, uint32_t ulIPAddress ) { diff --git a/test/build-combination/DefaultConf/FreeRTOSIPConfig.h b/test/build-combination/DefaultConf/FreeRTOSIPConfig.h index 81db9fe78b..417779b272 100644 --- a/test/build-combination/DefaultConf/FreeRTOSIPConfig.h +++ b/test/build-combination/DefaultConf/FreeRTOSIPConfig.h @@ -38,6 +38,6 @@ /* It is not sensible for this macro to have a default value as it is hardware * dependent. */ -#define ipconfigBYTE_ORDER pdFREERTOS_LITTLE_ENDIAN +#define ipconfigBYTE_ORDER pdFREERTOS_LITTLE_ENDIAN #endif From 17984869093559f1b647c679b44f493d5edc41a3 Mon Sep 17 00:00:00 2001 From: Aniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com> Date: Fri, 1 Jul 2022 13:05:52 -0700 Subject: [PATCH 06/22] This commit updates version number in all files to Development-Branch --- source/FreeRTOS_ARP.c | 2 +- source/FreeRTOS_DHCP.c | 2 +- source/FreeRTOS_DNS.c | 2 +- source/FreeRTOS_DNS_Cache.c | 2 +- source/FreeRTOS_DNS_Callback.c | 2 +- source/FreeRTOS_DNS_Networking.c | 2 +- source/FreeRTOS_DNS_Parser.c | 2 +- source/FreeRTOS_ICMP.c | 2 +- source/FreeRTOS_IP.c | 2 +- source/FreeRTOS_IP_Timers.c | 2 +- source/FreeRTOS_IP_Utils.c | 2 +- source/FreeRTOS_Sockets.c | 2 +- source/FreeRTOS_Stream_Buffer.c | 2 +- source/FreeRTOS_TCP_IP.c | 2 +- source/FreeRTOS_TCP_Reception.c | 2 +- source/FreeRTOS_TCP_State_Handling.c | 2 +- source/FreeRTOS_TCP_Transmission.c | 2 +- source/FreeRTOS_TCP_Utils.c | 2 +- source/FreeRTOS_TCP_WIN.c | 2 +- source/FreeRTOS_Tiny_TCP.c | 2 +- source/FreeRTOS_UDP_IP.c | 2 +- source/include/FreeRTOSIPConfigDefaults.h | 2 +- source/include/FreeRTOS_ARP.h | 2 +- source/include/FreeRTOS_DHCP.h | 2 +- source/include/FreeRTOS_DNS.h | 2 +- source/include/FreeRTOS_DNS_Cache.h | 2 +- source/include/FreeRTOS_DNS_Callback.h | 2 +- source/include/FreeRTOS_DNS_Globals.h | 2 +- source/include/FreeRTOS_DNS_Networking.h | 2 +- source/include/FreeRTOS_DNS_Parser.h | 2 +- source/include/FreeRTOS_ICMP.h | 2 +- source/include/FreeRTOS_IP.h | 4 ++-- source/include/FreeRTOS_IP_Private.h | 2 +- source/include/FreeRTOS_IP_Timers.h | 2 +- source/include/FreeRTOS_IP_Utils.h | 2 +- source/include/FreeRTOS_Sockets.h | 2 +- source/include/FreeRTOS_Stream_Buffer.h | 2 +- source/include/FreeRTOS_TCP_IP.h | 2 +- source/include/FreeRTOS_TCP_Reception.h | 2 +- source/include/FreeRTOS_TCP_State_Handling.h | 2 +- source/include/FreeRTOS_TCP_Transmission.h | 2 +- source/include/FreeRTOS_TCP_Utils.h | 2 +- source/include/FreeRTOS_TCP_WIN.h | 2 +- source/include/FreeRTOS_UDP_IP.h | 2 +- source/include/FreeRTOS_errno_TCP.h | 2 +- source/include/IPTraceMacroDefaults.h | 2 +- source/include/NetworkBufferManagement.h | 2 +- source/include/NetworkInterface.h | 2 +- source/portable/BufferManagement/BufferAllocation_1.c | 2 +- source/portable/BufferManagement/BufferAllocation_2.c | 2 +- source/portable/Compiler/CompilerName/pack_struct_end.h | 2 +- source/portable/Compiler/CompilerName/pack_struct_start.h | 2 +- source/portable/Compiler/GCC/pack_struct_end.h | 2 +- source/portable/Compiler/GCC/pack_struct_start.h | 2 +- source/portable/Compiler/IAR/pack_struct_end.h | 2 +- source/portable/Compiler/IAR/pack_struct_start.h | 2 +- source/portable/Compiler/Keil/pack_struct_end.h | 2 +- source/portable/Compiler/Keil/pack_struct_start.h | 2 +- source/portable/Compiler/MSVC/pack_struct_end.h | 2 +- source/portable/Compiler/MSVC/pack_struct_start.h | 2 +- source/portable/Compiler/Renesas/pack_struct_end.h | 2 +- source/portable/Compiler/Renesas/pack_struct_start.h | 2 +- source/portable/NetworkInterface/ATSAM4E/NetworkInterface.c | 2 +- source/portable/NetworkInterface/ATSAME5x/NetworkInterface.c | 2 +- source/portable/NetworkInterface/Common/phyHandling.c | 2 +- source/portable/NetworkInterface/DriverSAM/NetworkInterface.c | 2 +- source/portable/NetworkInterface/LPC17xx/NetworkInterface.c | 2 +- source/portable/NetworkInterface/LPC18xx/NetworkInterface.c | 2 +- source/portable/NetworkInterface/LPC54018/NetworkInterface.c | 2 +- source/portable/NetworkInterface/M487/NetworkInterface.c | 2 +- .../portable/NetworkInterface/MPS2_AN385/NetworkInterface.c | 2 +- source/portable/NetworkInterface/SH2A/NetworkInterface.c | 2 +- source/portable/NetworkInterface/STM32Fxx/NetworkInterface.c | 2 +- source/portable/NetworkInterface/STM32Hxx/NetworkInterface.c | 2 +- .../NetworkInterface/ThirdParty/MSP432/NetworkInterface.c | 2 +- .../NetworkInterface/ThirdParty/MSP432/NetworkInterface.h | 2 +- .../NetworkInterface/ThirdParty/MSP432/NetworkMiddleware.c | 2 +- .../NetworkInterface/ThirdParty/MSP432/NetworkMiddleware.h | 2 +- source/portable/NetworkInterface/WinPCap/NetworkInterface.c | 2 +- source/portable/NetworkInterface/Zynq/NetworkInterface.c | 2 +- source/portable/NetworkInterface/Zynq/uncached_memory.c | 2 +- source/portable/NetworkInterface/Zynq/x_emacpsif_dma.c | 2 +- .../portable/NetworkInterface/board_family/NetworkInterface.c | 2 +- source/portable/NetworkInterface/include/phyHandling.h | 2 +- .../portable/NetworkInterface/ksz8851snl/NetworkInterface.c | 2 +- source/portable/NetworkInterface/linux/NetworkInterface.c | 2 +- source/portable/NetworkInterface/mw300_rd/NetworkInterface.c | 2 +- .../portable/NetworkInterface/pic32mzef/BufferAllocation_2.c | 2 +- .../NetworkInterface/xilinx_ultrascale/NetworkInterface.c | 2 +- .../NetworkInterface/xilinx_ultrascale/uncached_memory.c | 2 +- .../NetworkInterface/xilinx_ultrascale/x_emacpsif_dma.c | 2 +- test/Coverity/ConfigFiles/pack_struct_end.h | 2 +- test/Coverity/ConfigFiles/pack_struct_start.h | 2 +- test/build-combination/Common/main.c | 2 +- test/unit-test/ConfigFiles/FreeRTOS_errno_TCP.h | 2 +- test/unit-test/ConfigFiles/IPTraceMacroDefaults.h | 2 +- test/unit-test/ConfigFiles/NetworkBufferManagement.h | 2 +- test/unit-test/ConfigFiles/NetworkInterface.h | 2 +- test/unit-test/ConfigFiles/pack_struct_end.h | 2 +- test/unit-test/ConfigFiles/pack_struct_start.h | 2 +- test/unit-test/ConfigFiles/portmacro.h | 2 +- test/unit-test/FreeRTOS_DNS/FreeRTOS_DNS_utest.c | 2 +- test/unit-test/FreeRTOS_DNS/FreeRTOS_UDP_IP_stubs.c | 2 +- test/unit-test/FreeRTOS_DNS_Cache/FreeRTOS_DNS_Cache_utest.c | 2 +- test/unit-test/FreeRTOS_DNS_Cache/FreeRTOS_UDP_IP_stubs.c | 2 +- .../FreeRTOS_DNS_Callback/FreeRTOS_DNS_Callback_utest.c | 2 +- test/unit-test/FreeRTOS_DNS_Callback/FreeRTOS_UDP_IP_stubs.c | 2 +- .../FreeRTOS_DNS_Networking/FreeRTOS_DNS_Networking_utest.c | 2 +- .../unit-test/FreeRTOS_DNS_Networking/FreeRTOS_UDP_IP_stubs.c | 2 +- .../unit-test/FreeRTOS_DNS_Parser/FreeRTOS_DNS_Parser_stubs.c | 2 +- .../unit-test/FreeRTOS_DNS_Parser/FreeRTOS_DNS_Parser_utest.c | 2 +- test/unit-test/FreeRTOS_ICMP/FreeRTOS_ICMP_stubs.c | 2 +- test/unit-test/FreeRTOS_ICMP/FreeRTOS_ICMP_utest.c | 2 +- test/unit-test/FreeRTOS_ICMP/ICMP_list_macros.h | 2 +- .../FreeRTOS_ICMP_wo_assert/FreeRTOS_ICMP_wo_assert_stubs.c | 2 +- .../FreeRTOS_ICMP_wo_assert/FreeRTOS_ICMP_wo_assert_utest.c | 2 +- test/unit-test/FreeRTOS_IP/FreeRTOS_IP_stubs.c | 2 +- test/unit-test/FreeRTOS_IP/FreeRTOS_IP_utest.c | 2 +- test/unit-test/FreeRTOS_IP/IP_list_macros.h | 2 +- .../FreeRTOS_IP_DiffConfig/FreeRTOS_IP_DiffConfig_stubs.c | 2 +- .../FreeRTOS_IP_DiffConfig/FreeRTOS_IP_DiffConfig_utest.c | 2 +- .../FreeRTOS_IP_DiffConfig/IP_DiffConfig_list_macros.h | 2 +- test/unit-test/FreeRTOS_IP_Timers/FreeRTOS_IP_Timers_stubs.c | 2 +- test/unit-test/FreeRTOS_IP_Timers/FreeRTOS_IP_Timers_utest.c | 2 +- test/unit-test/FreeRTOS_IP_Timers/IP_Timers_list_macros.h | 2 +- test/unit-test/FreeRTOS_IP_Utils/FreeRTOS_IP_Utils_stubs.c | 2 +- test/unit-test/FreeRTOS_IP_Utils/FreeRTOS_IP_Utils_utest.c | 2 +- test/unit-test/FreeRTOS_IP_Utils/IP_Utils_list_macros.h | 2 +- .../FreeRTOS_IP_Utils_DiffConfig_stubs.c | 2 +- .../FreeRTOS_IP_Utils_DiffConfig_utest.c | 2 +- .../IP_Utils_DiffConfig_list_macros.h | 2 +- .../FreeRTOS_Sockets/FreeRTOS_Sockets_GenericAPI_utest.c | 2 +- .../FreeRTOS_Sockets/FreeRTOS_Sockets_TCP_API_utest.c | 2 +- .../FreeRTOS_Sockets/FreeRTOS_Sockets_UDP_API_utest.c | 2 +- .../FreeRTOS_Sockets/FreeRTOS_Sockets_privates_utest.c | 2 +- test/unit-test/FreeRTOS_Sockets/FreeRTOS_Sockets_stubs.c | 2 +- test/unit-test/FreeRTOS_Sockets/Sockets_list_macros.h | 2 +- .../FreeRTOS_Sockets_DiffConfig_privates_utest.c | 2 +- .../FreeRTOS_Sockets_DiffConfig_stubs.c | 2 +- .../Sockets_DiffConfig_list_macros.h | 2 +- .../FreeRTOS_Sockets_DiffConfig1_privates_utest.c | 2 +- .../FreeRTOS_Sockets_DiffConfig1_stubs.c | 2 +- .../Sockets_DiffConfig1_list_macros.h | 2 +- .../FreeRTOS_Stream_Buffer/FreeRTOS_Stream_Buffer_utest.c | 2 +- test/unit-test/FreeRTOS_Stream_Buffer/list_macros.h | 2 +- test/unit-test/FreeRTOS_TCP_IP/FreeRTOS_TCP_IP_stubs.c | 2 +- test/unit-test/FreeRTOS_TCP_IP/FreeRTOS_TCP_IP_utest.c | 2 +- test/unit-test/FreeRTOS_TCP_IP/TCP_IP_list_macros.h | 2 +- .../FreeRTOS_TCP_IP_DiffConfig_stubs.c | 2 +- .../FreeRTOS_TCP_IP_DiffConfig_utest.c | 2 +- .../TCP_IP_DiffConfig_list_macros.h | 2 +- .../FreeRTOS_TCP_Reception/FreeRTOS_TCP_Reception_stubs.c | 2 +- .../FreeRTOS_TCP_Reception/FreeRTOS_TCP_Reception_utest.c | 2 +- .../FreeRTOS_TCP_State_Handling_stubs.c | 2 +- .../FreeRTOS_TCP_State_Handling_utest.c | 2 +- .../FreeRTOS_TCP_Transmission_stubs.c | 2 +- .../FreeRTOS_TCP_Transmission_utest.c | 2 +- test/unit-test/FreeRTOS_TCP_Utils/FreeRTOS_TCP_Utils_stubs.c | 2 +- test/unit-test/FreeRTOS_TCP_Utils/FreeRTOS_TCP_Utils_utest.c | 2 +- .../unit-test/FreeRTOS_TCP_WIN/FreeRTOS_TCP_WIN_list_macros.h | 2 +- test/unit-test/FreeRTOS_TCP_WIN/FreeRTOS_TCP_WIN_utest.c | 2 +- test/unit-test/FreeRTOS_Tiny_TCP/FreeRTOS_Tiny_TCP_utest.c | 2 +- test/unit-test/FreeRTOS_UDP_IP/FreeRTOS_UDP_IP_stubs.c | 2 +- test/unit-test/FreeRTOS_UDP_IP/FreeRTOS_UDP_IP_utest.c | 2 +- test/unit-test/FreeRTOS_UDP_IP/list_macros.h | 2 +- tools/tcp_utilities/include/tcp_dump_packets.h | 2 +- tools/tcp_utilities/include/tcp_mem_stats.h | 2 +- tools/tcp_utilities/include/tcp_netstat.h | 2 +- tools/tcp_utilities/tcp_dump_packets.c | 2 +- tools/tcp_utilities/tcp_mem_stats.c | 2 +- tools/tcp_utilities/tcp_netstat.c | 2 +- 171 files changed, 172 insertions(+), 172 deletions(-) diff --git a/source/FreeRTOS_ARP.c b/source/FreeRTOS_ARP.c index 1ea1d398d0..eee3a5c7ef 100644 --- a/source/FreeRTOS_ARP.c +++ b/source/FreeRTOS_ARP.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/FreeRTOS_DHCP.c b/source/FreeRTOS_DHCP.c index 2fdcd09767..8a1f70eb3e 100644 --- a/source/FreeRTOS_DHCP.c +++ b/source/FreeRTOS_DHCP.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/FreeRTOS_DNS.c b/source/FreeRTOS_DNS.c index 1da6d20c43..a17faacc40 100644 --- a/source/FreeRTOS_DNS.c +++ b/source/FreeRTOS_DNS.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/FreeRTOS_DNS_Cache.c b/source/FreeRTOS_DNS_Cache.c index b5b13ada7b..9956fc8fa6 100644 --- a/source/FreeRTOS_DNS_Cache.c +++ b/source/FreeRTOS_DNS_Cache.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/FreeRTOS_DNS_Callback.c b/source/FreeRTOS_DNS_Callback.c index b84c0a93c1..3ef671065f 100644 --- a/source/FreeRTOS_DNS_Callback.c +++ b/source/FreeRTOS_DNS_Callback.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/FreeRTOS_DNS_Networking.c b/source/FreeRTOS_DNS_Networking.c index a18ae7ee2b..17f809ccd5 100644 --- a/source/FreeRTOS_DNS_Networking.c +++ b/source/FreeRTOS_DNS_Networking.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/FreeRTOS_DNS_Parser.c b/source/FreeRTOS_DNS_Parser.c index 6707915a1c..37f6bfbf37 100644 --- a/source/FreeRTOS_DNS_Parser.c +++ b/source/FreeRTOS_DNS_Parser.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/FreeRTOS_ICMP.c b/source/FreeRTOS_ICMP.c index 1272914003..70dd55a51a 100644 --- a/source/FreeRTOS_ICMP.c +++ b/source/FreeRTOS_ICMP.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/FreeRTOS_IP.c b/source/FreeRTOS_IP.c index 723f796740..cc4f51c2d8 100644 --- a/source/FreeRTOS_IP.c +++ b/source/FreeRTOS_IP.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/FreeRTOS_IP_Timers.c b/source/FreeRTOS_IP_Timers.c index 2e2e16b925..c8a14a8155 100644 --- a/source/FreeRTOS_IP_Timers.c +++ b/source/FreeRTOS_IP_Timers.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/FreeRTOS_IP_Utils.c b/source/FreeRTOS_IP_Utils.c index 9cb4324dd8..65df779bb3 100644 --- a/source/FreeRTOS_IP_Utils.c +++ b/source/FreeRTOS_IP_Utils.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/FreeRTOS_Sockets.c b/source/FreeRTOS_Sockets.c index 1467a02644..e1279b5c6c 100644 --- a/source/FreeRTOS_Sockets.c +++ b/source/FreeRTOS_Sockets.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/FreeRTOS_Stream_Buffer.c b/source/FreeRTOS_Stream_Buffer.c index 16594d47df..41b59032c5 100644 --- a/source/FreeRTOS_Stream_Buffer.c +++ b/source/FreeRTOS_Stream_Buffer.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/FreeRTOS_TCP_IP.c b/source/FreeRTOS_TCP_IP.c index 0d96dd44ce..9cd3be340d 100644 --- a/source/FreeRTOS_TCP_IP.c +++ b/source/FreeRTOS_TCP_IP.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/FreeRTOS_TCP_Reception.c b/source/FreeRTOS_TCP_Reception.c index 8a69e7e441..fb016bd237 100644 --- a/source/FreeRTOS_TCP_Reception.c +++ b/source/FreeRTOS_TCP_Reception.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/FreeRTOS_TCP_State_Handling.c b/source/FreeRTOS_TCP_State_Handling.c index 711f4eb1fb..ef0226bbcf 100644 --- a/source/FreeRTOS_TCP_State_Handling.c +++ b/source/FreeRTOS_TCP_State_Handling.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/FreeRTOS_TCP_Transmission.c b/source/FreeRTOS_TCP_Transmission.c index aad0ff144b..c8ad6128e2 100644 --- a/source/FreeRTOS_TCP_Transmission.c +++ b/source/FreeRTOS_TCP_Transmission.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/FreeRTOS_TCP_Utils.c b/source/FreeRTOS_TCP_Utils.c index 027f1b18ed..04daaa84a2 100644 --- a/source/FreeRTOS_TCP_Utils.c +++ b/source/FreeRTOS_TCP_Utils.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/FreeRTOS_TCP_WIN.c b/source/FreeRTOS_TCP_WIN.c index 7f6be59cdf..9203a50e63 100644 --- a/source/FreeRTOS_TCP_WIN.c +++ b/source/FreeRTOS_TCP_WIN.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/FreeRTOS_Tiny_TCP.c b/source/FreeRTOS_Tiny_TCP.c index ba65365aac..6a5c6b8c51 100644 --- a/source/FreeRTOS_Tiny_TCP.c +++ b/source/FreeRTOS_Tiny_TCP.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/FreeRTOS_UDP_IP.c b/source/FreeRTOS_UDP_IP.c index d07dbe6a31..1e88d9cf34 100644 --- a/source/FreeRTOS_UDP_IP.c +++ b/source/FreeRTOS_UDP_IP.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/FreeRTOSIPConfigDefaults.h b/source/include/FreeRTOSIPConfigDefaults.h index 63453c132e..d4286e39c0 100644 --- a/source/include/FreeRTOSIPConfigDefaults.h +++ b/source/include/FreeRTOSIPConfigDefaults.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/FreeRTOS_ARP.h b/source/include/FreeRTOS_ARP.h index 8224dfe1f0..2a717e0314 100644 --- a/source/include/FreeRTOS_ARP.h +++ b/source/include/FreeRTOS_ARP.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/FreeRTOS_DHCP.h b/source/include/FreeRTOS_DHCP.h index 712d4ad8a0..18c47cce7e 100644 --- a/source/include/FreeRTOS_DHCP.h +++ b/source/include/FreeRTOS_DHCP.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/FreeRTOS_DNS.h b/source/include/FreeRTOS_DNS.h index e6a30fbd03..315646bd1d 100644 --- a/source/include/FreeRTOS_DNS.h +++ b/source/include/FreeRTOS_DNS.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/FreeRTOS_DNS_Cache.h b/source/include/FreeRTOS_DNS_Cache.h index 44a273c8e9..8e418afa11 100644 --- a/source/include/FreeRTOS_DNS_Cache.h +++ b/source/include/FreeRTOS_DNS_Cache.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/FreeRTOS_DNS_Callback.h b/source/include/FreeRTOS_DNS_Callback.h index 557beee41a..4d29092d42 100644 --- a/source/include/FreeRTOS_DNS_Callback.h +++ b/source/include/FreeRTOS_DNS_Callback.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/FreeRTOS_DNS_Globals.h b/source/include/FreeRTOS_DNS_Globals.h index 73400d1eda..f721a58f65 100644 --- a/source/include/FreeRTOS_DNS_Globals.h +++ b/source/include/FreeRTOS_DNS_Globals.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/FreeRTOS_DNS_Networking.h b/source/include/FreeRTOS_DNS_Networking.h index 2313497b52..848d06251c 100644 --- a/source/include/FreeRTOS_DNS_Networking.h +++ b/source/include/FreeRTOS_DNS_Networking.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/FreeRTOS_DNS_Parser.h b/source/include/FreeRTOS_DNS_Parser.h index ff98adf36c..3f179340c9 100644 --- a/source/include/FreeRTOS_DNS_Parser.h +++ b/source/include/FreeRTOS_DNS_Parser.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/FreeRTOS_ICMP.h b/source/include/FreeRTOS_ICMP.h index d986c6540f..8d415beea7 100644 --- a/source/include/FreeRTOS_ICMP.h +++ b/source/include/FreeRTOS_ICMP.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/FreeRTOS_IP.h b/source/include/FreeRTOS_IP.h index f45d224492..a093656c14 100644 --- a/source/include/FreeRTOS_IP.h +++ b/source/include/FreeRTOS_IP.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT @@ -42,7 +42,7 @@ /* Constants defining the current version of the FreeRTOS+TCP * network stack. */ - #define ipFR_TCP_VERSION_NUMBER "V2.3.4" + #define ipFR_TCP_VERSION_NUMBER "" #define ipFR_TCP_VERSION_MAJOR 2 #define ipFR_TCP_VERSION_MINOR 3 #define ipFR_TCP_VERSION_BUILD 4 diff --git a/source/include/FreeRTOS_IP_Private.h b/source/include/FreeRTOS_IP_Private.h index 26896c3c83..10c4a8b37c 100644 --- a/source/include/FreeRTOS_IP_Private.h +++ b/source/include/FreeRTOS_IP_Private.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/FreeRTOS_IP_Timers.h b/source/include/FreeRTOS_IP_Timers.h index 5c1c6d1564..283c39f5d2 100644 --- a/source/include/FreeRTOS_IP_Timers.h +++ b/source/include/FreeRTOS_IP_Timers.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/FreeRTOS_IP_Utils.h b/source/include/FreeRTOS_IP_Utils.h index f636147dfa..849e4eaff9 100644 --- a/source/include/FreeRTOS_IP_Utils.h +++ b/source/include/FreeRTOS_IP_Utils.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/FreeRTOS_Sockets.h b/source/include/FreeRTOS_Sockets.h index 280b348d73..8673b89b08 100644 --- a/source/include/FreeRTOS_Sockets.h +++ b/source/include/FreeRTOS_Sockets.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/FreeRTOS_Stream_Buffer.h b/source/include/FreeRTOS_Stream_Buffer.h index aed59d6d83..0c0da9792c 100644 --- a/source/include/FreeRTOS_Stream_Buffer.h +++ b/source/include/FreeRTOS_Stream_Buffer.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/FreeRTOS_TCP_IP.h b/source/include/FreeRTOS_TCP_IP.h index 3b9ff1ce36..e18c9b5fa4 100644 --- a/source/include/FreeRTOS_TCP_IP.h +++ b/source/include/FreeRTOS_TCP_IP.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/FreeRTOS_TCP_Reception.h b/source/include/FreeRTOS_TCP_Reception.h index 8238b7b851..4d67aaed8d 100644 --- a/source/include/FreeRTOS_TCP_Reception.h +++ b/source/include/FreeRTOS_TCP_Reception.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/FreeRTOS_TCP_State_Handling.h b/source/include/FreeRTOS_TCP_State_Handling.h index bd7247fa52..da2673caac 100644 --- a/source/include/FreeRTOS_TCP_State_Handling.h +++ b/source/include/FreeRTOS_TCP_State_Handling.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/FreeRTOS_TCP_Transmission.h b/source/include/FreeRTOS_TCP_Transmission.h index 6c307e9ab9..d5c38632c1 100644 --- a/source/include/FreeRTOS_TCP_Transmission.h +++ b/source/include/FreeRTOS_TCP_Transmission.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/FreeRTOS_TCP_Utils.h b/source/include/FreeRTOS_TCP_Utils.h index cb99e9f463..43a4b27b71 100644 --- a/source/include/FreeRTOS_TCP_Utils.h +++ b/source/include/FreeRTOS_TCP_Utils.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/FreeRTOS_TCP_WIN.h b/source/include/FreeRTOS_TCP_WIN.h index a23a4d0d2c..d750553791 100644 --- a/source/include/FreeRTOS_TCP_WIN.h +++ b/source/include/FreeRTOS_TCP_WIN.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/FreeRTOS_UDP_IP.h b/source/include/FreeRTOS_UDP_IP.h index 02a98e8adb..98299f3583 100644 --- a/source/include/FreeRTOS_UDP_IP.h +++ b/source/include/FreeRTOS_UDP_IP.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/FreeRTOS_errno_TCP.h b/source/include/FreeRTOS_errno_TCP.h index 7aa7058374..4edb136373 100644 --- a/source/include/FreeRTOS_errno_TCP.h +++ b/source/include/FreeRTOS_errno_TCP.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/IPTraceMacroDefaults.h b/source/include/IPTraceMacroDefaults.h index d5186f3de2..03aec52ca6 100644 --- a/source/include/IPTraceMacroDefaults.h +++ b/source/include/IPTraceMacroDefaults.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/NetworkBufferManagement.h b/source/include/NetworkBufferManagement.h index 2f6abaca7e..7633a31f75 100644 --- a/source/include/NetworkBufferManagement.h +++ b/source/include/NetworkBufferManagement.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/include/NetworkInterface.h b/source/include/NetworkInterface.h index 055f5dca3a..e4e5d4721e 100644 --- a/source/include/NetworkInterface.h +++ b/source/include/NetworkInterface.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/BufferManagement/BufferAllocation_1.c b/source/portable/BufferManagement/BufferAllocation_1.c index e17317a504..64a5f07314 100644 --- a/source/portable/BufferManagement/BufferAllocation_1.c +++ b/source/portable/BufferManagement/BufferAllocation_1.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/BufferManagement/BufferAllocation_2.c b/source/portable/BufferManagement/BufferAllocation_2.c index 999372f637..9676ae2bef 100644 --- a/source/portable/BufferManagement/BufferAllocation_2.c +++ b/source/portable/BufferManagement/BufferAllocation_2.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/Compiler/CompilerName/pack_struct_end.h b/source/portable/Compiler/CompilerName/pack_struct_end.h index 0661c45320..88712275b8 100644 --- a/source/portable/Compiler/CompilerName/pack_struct_end.h +++ b/source/portable/Compiler/CompilerName/pack_struct_end.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/Compiler/CompilerName/pack_struct_start.h b/source/portable/Compiler/CompilerName/pack_struct_start.h index ad9ac6ac92..89949909e2 100644 --- a/source/portable/Compiler/CompilerName/pack_struct_start.h +++ b/source/portable/Compiler/CompilerName/pack_struct_start.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/Compiler/GCC/pack_struct_end.h b/source/portable/Compiler/GCC/pack_struct_end.h index 88dcf8713a..df53ac45fa 100644 --- a/source/portable/Compiler/GCC/pack_struct_end.h +++ b/source/portable/Compiler/GCC/pack_struct_end.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/Compiler/GCC/pack_struct_start.h b/source/portable/Compiler/GCC/pack_struct_start.h index e946c26cd8..583a273d42 100644 --- a/source/portable/Compiler/GCC/pack_struct_start.h +++ b/source/portable/Compiler/GCC/pack_struct_start.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/Compiler/IAR/pack_struct_end.h b/source/portable/Compiler/IAR/pack_struct_end.h index a291d87f2f..fa4cb7093d 100644 --- a/source/portable/Compiler/IAR/pack_struct_end.h +++ b/source/portable/Compiler/IAR/pack_struct_end.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/Compiler/IAR/pack_struct_start.h b/source/portable/Compiler/IAR/pack_struct_start.h index 4f3301b5b6..39a403d70f 100644 --- a/source/portable/Compiler/IAR/pack_struct_start.h +++ b/source/portable/Compiler/IAR/pack_struct_start.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/Compiler/Keil/pack_struct_end.h b/source/portable/Compiler/Keil/pack_struct_end.h index c2d1367ddd..435ddaf2a9 100644 --- a/source/portable/Compiler/Keil/pack_struct_end.h +++ b/source/portable/Compiler/Keil/pack_struct_end.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/Compiler/Keil/pack_struct_start.h b/source/portable/Compiler/Keil/pack_struct_start.h index f9fc4bea01..595735ed33 100644 --- a/source/portable/Compiler/Keil/pack_struct_start.h +++ b/source/portable/Compiler/Keil/pack_struct_start.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/Compiler/MSVC/pack_struct_end.h b/source/portable/Compiler/MSVC/pack_struct_end.h index bdd2649842..b2485be8a2 100644 --- a/source/portable/Compiler/MSVC/pack_struct_end.h +++ b/source/portable/Compiler/MSVC/pack_struct_end.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/Compiler/MSVC/pack_struct_start.h b/source/portable/Compiler/MSVC/pack_struct_start.h index 8445b677fd..6dccdbd277 100644 --- a/source/portable/Compiler/MSVC/pack_struct_start.h +++ b/source/portable/Compiler/MSVC/pack_struct_start.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/Compiler/Renesas/pack_struct_end.h b/source/portable/Compiler/Renesas/pack_struct_end.h index e243c5bb71..2f598007d0 100644 --- a/source/portable/Compiler/Renesas/pack_struct_end.h +++ b/source/portable/Compiler/Renesas/pack_struct_end.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/Compiler/Renesas/pack_struct_start.h b/source/portable/Compiler/Renesas/pack_struct_start.h index 79e3b5813e..6a7073ce95 100644 --- a/source/portable/Compiler/Renesas/pack_struct_start.h +++ b/source/portable/Compiler/Renesas/pack_struct_start.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/NetworkInterface/ATSAM4E/NetworkInterface.c b/source/portable/NetworkInterface/ATSAM4E/NetworkInterface.c index e38b13cd05..31c34b36bb 100644 --- a/source/portable/NetworkInterface/ATSAM4E/NetworkInterface.c +++ b/source/portable/NetworkInterface/ATSAM4E/NetworkInterface.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/NetworkInterface/ATSAME5x/NetworkInterface.c b/source/portable/NetworkInterface/ATSAME5x/NetworkInterface.c index 1f8e25dd5c..ac0151c837 100644 --- a/source/portable/NetworkInterface/ATSAME5x/NetworkInterface.c +++ b/source/portable/NetworkInterface/ATSAME5x/NetworkInterface.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/NetworkInterface/Common/phyHandling.c b/source/portable/NetworkInterface/Common/phyHandling.c index 13ea3b4a14..e591da38fd 100644 --- a/source/portable/NetworkInterface/Common/phyHandling.c +++ b/source/portable/NetworkInterface/Common/phyHandling.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/NetworkInterface/DriverSAM/NetworkInterface.c b/source/portable/NetworkInterface/DriverSAM/NetworkInterface.c index f24725eb1e..5b64820387 100644 --- a/source/portable/NetworkInterface/DriverSAM/NetworkInterface.c +++ b/source/portable/NetworkInterface/DriverSAM/NetworkInterface.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/NetworkInterface/LPC17xx/NetworkInterface.c b/source/portable/NetworkInterface/LPC17xx/NetworkInterface.c index 4c9ccab7fc..f036d8ef50 100644 --- a/source/portable/NetworkInterface/LPC17xx/NetworkInterface.c +++ b/source/portable/NetworkInterface/LPC17xx/NetworkInterface.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/NetworkInterface/LPC18xx/NetworkInterface.c b/source/portable/NetworkInterface/LPC18xx/NetworkInterface.c index 8e688c175f..f5a409bb3d 100644 --- a/source/portable/NetworkInterface/LPC18xx/NetworkInterface.c +++ b/source/portable/NetworkInterface/LPC18xx/NetworkInterface.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/NetworkInterface/LPC54018/NetworkInterface.c b/source/portable/NetworkInterface/LPC54018/NetworkInterface.c index f2e693a470..ff75ec9e07 100644 --- a/source/portable/NetworkInterface/LPC54018/NetworkInterface.c +++ b/source/portable/NetworkInterface/LPC54018/NetworkInterface.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/NetworkInterface/M487/NetworkInterface.c b/source/portable/NetworkInterface/M487/NetworkInterface.c index 3ae8873be7..1d1c87985e 100644 --- a/source/portable/NetworkInterface/M487/NetworkInterface.c +++ b/source/portable/NetworkInterface/M487/NetworkInterface.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/NetworkInterface/MPS2_AN385/NetworkInterface.c b/source/portable/NetworkInterface/MPS2_AN385/NetworkInterface.c index b485472943..958d7578a7 100644 --- a/source/portable/NetworkInterface/MPS2_AN385/NetworkInterface.c +++ b/source/portable/NetworkInterface/MPS2_AN385/NetworkInterface.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/NetworkInterface/SH2A/NetworkInterface.c b/source/portable/NetworkInterface/SH2A/NetworkInterface.c index 75dcbc239d..af8c797cd0 100644 --- a/source/portable/NetworkInterface/SH2A/NetworkInterface.c +++ b/source/portable/NetworkInterface/SH2A/NetworkInterface.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/NetworkInterface/STM32Fxx/NetworkInterface.c b/source/portable/NetworkInterface/STM32Fxx/NetworkInterface.c index aac9cb9876..ed002cba5b 100644 --- a/source/portable/NetworkInterface/STM32Fxx/NetworkInterface.c +++ b/source/portable/NetworkInterface/STM32Fxx/NetworkInterface.c @@ -4,7 +4,7 @@ */ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/NetworkInterface/STM32Hxx/NetworkInterface.c b/source/portable/NetworkInterface/STM32Hxx/NetworkInterface.c index 52e1669dc8..d60fbf2290 100644 --- a/source/portable/NetworkInterface/STM32Hxx/NetworkInterface.c +++ b/source/portable/NetworkInterface/STM32Hxx/NetworkInterface.c @@ -4,7 +4,7 @@ */ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/NetworkInterface/ThirdParty/MSP432/NetworkInterface.c b/source/portable/NetworkInterface/ThirdParty/MSP432/NetworkInterface.c index 7f003d49f5..758db72e32 100644 --- a/source/portable/NetworkInterface/ThirdParty/MSP432/NetworkInterface.c +++ b/source/portable/NetworkInterface/ThirdParty/MSP432/NetworkInterface.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/NetworkInterface/ThirdParty/MSP432/NetworkInterface.h b/source/portable/NetworkInterface/ThirdParty/MSP432/NetworkInterface.h index b82dff9149..5951657154 100644 --- a/source/portable/NetworkInterface/ThirdParty/MSP432/NetworkInterface.h +++ b/source/portable/NetworkInterface/ThirdParty/MSP432/NetworkInterface.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/NetworkInterface/ThirdParty/MSP432/NetworkMiddleware.c b/source/portable/NetworkInterface/ThirdParty/MSP432/NetworkMiddleware.c index fed2a5b768..1b7552fe02 100644 --- a/source/portable/NetworkInterface/ThirdParty/MSP432/NetworkMiddleware.c +++ b/source/portable/NetworkInterface/ThirdParty/MSP432/NetworkMiddleware.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/NetworkInterface/ThirdParty/MSP432/NetworkMiddleware.h b/source/portable/NetworkInterface/ThirdParty/MSP432/NetworkMiddleware.h index b9ce6a6159..c31250db9e 100644 --- a/source/portable/NetworkInterface/ThirdParty/MSP432/NetworkMiddleware.h +++ b/source/portable/NetworkInterface/ThirdParty/MSP432/NetworkMiddleware.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/NetworkInterface/WinPCap/NetworkInterface.c b/source/portable/NetworkInterface/WinPCap/NetworkInterface.c index f59d3d5e7b..23b4a9cf17 100644 --- a/source/portable/NetworkInterface/WinPCap/NetworkInterface.c +++ b/source/portable/NetworkInterface/WinPCap/NetworkInterface.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/NetworkInterface/Zynq/NetworkInterface.c b/source/portable/NetworkInterface/Zynq/NetworkInterface.c index b2bf287530..a88d2ced97 100644 --- a/source/portable/NetworkInterface/Zynq/NetworkInterface.c +++ b/source/portable/NetworkInterface/Zynq/NetworkInterface.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/NetworkInterface/Zynq/uncached_memory.c b/source/portable/NetworkInterface/Zynq/uncached_memory.c index ddf4c1d475..b7e6fc8d02 100644 --- a/source/portable/NetworkInterface/Zynq/uncached_memory.c +++ b/source/portable/NetworkInterface/Zynq/uncached_memory.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/NetworkInterface/Zynq/x_emacpsif_dma.c b/source/portable/NetworkInterface/Zynq/x_emacpsif_dma.c index 6ec77ab456..fac5cbedef 100644 --- a/source/portable/NetworkInterface/Zynq/x_emacpsif_dma.c +++ b/source/portable/NetworkInterface/Zynq/x_emacpsif_dma.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/NetworkInterface/board_family/NetworkInterface.c b/source/portable/NetworkInterface/board_family/NetworkInterface.c index f467d831a6..950e794a63 100644 --- a/source/portable/NetworkInterface/board_family/NetworkInterface.c +++ b/source/portable/NetworkInterface/board_family/NetworkInterface.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/NetworkInterface/include/phyHandling.h b/source/portable/NetworkInterface/include/phyHandling.h index fc9722f23e..8c31634db0 100644 --- a/source/portable/NetworkInterface/include/phyHandling.h +++ b/source/portable/NetworkInterface/include/phyHandling.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/NetworkInterface/ksz8851snl/NetworkInterface.c b/source/portable/NetworkInterface/ksz8851snl/NetworkInterface.c index 03fc5b9622..7682aa305e 100644 --- a/source/portable/NetworkInterface/ksz8851snl/NetworkInterface.c +++ b/source/portable/NetworkInterface/ksz8851snl/NetworkInterface.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/NetworkInterface/linux/NetworkInterface.c b/source/portable/NetworkInterface/linux/NetworkInterface.c index 45ea6defca..859266a31d 100644 --- a/source/portable/NetworkInterface/linux/NetworkInterface.c +++ b/source/portable/NetworkInterface/linux/NetworkInterface.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/NetworkInterface/mw300_rd/NetworkInterface.c b/source/portable/NetworkInterface/mw300_rd/NetworkInterface.c index a7121f9b34..14bcd36c94 100644 --- a/source/portable/NetworkInterface/mw300_rd/NetworkInterface.c +++ b/source/portable/NetworkInterface/mw300_rd/NetworkInterface.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/NetworkInterface/pic32mzef/BufferAllocation_2.c b/source/portable/NetworkInterface/pic32mzef/BufferAllocation_2.c index f44977d756..114ea0ce16 100644 --- a/source/portable/NetworkInterface/pic32mzef/BufferAllocation_2.c +++ b/source/portable/NetworkInterface/pic32mzef/BufferAllocation_2.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/NetworkInterface/xilinx_ultrascale/NetworkInterface.c b/source/portable/NetworkInterface/xilinx_ultrascale/NetworkInterface.c index 82bb613a14..75a6dc6796 100644 --- a/source/portable/NetworkInterface/xilinx_ultrascale/NetworkInterface.c +++ b/source/portable/NetworkInterface/xilinx_ultrascale/NetworkInterface.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/NetworkInterface/xilinx_ultrascale/uncached_memory.c b/source/portable/NetworkInterface/xilinx_ultrascale/uncached_memory.c index 3cc4979079..0f6f707604 100644 --- a/source/portable/NetworkInterface/xilinx_ultrascale/uncached_memory.c +++ b/source/portable/NetworkInterface/xilinx_ultrascale/uncached_memory.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/source/portable/NetworkInterface/xilinx_ultrascale/x_emacpsif_dma.c b/source/portable/NetworkInterface/xilinx_ultrascale/x_emacpsif_dma.c index c3518f9430..1b13359ea5 100644 --- a/source/portable/NetworkInterface/xilinx_ultrascale/x_emacpsif_dma.c +++ b/source/portable/NetworkInterface/xilinx_ultrascale/x_emacpsif_dma.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/Coverity/ConfigFiles/pack_struct_end.h b/test/Coverity/ConfigFiles/pack_struct_end.h index a15f60efea..b9609c56eb 100644 --- a/test/Coverity/ConfigFiles/pack_struct_end.h +++ b/test/Coverity/ConfigFiles/pack_struct_end.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/Coverity/ConfigFiles/pack_struct_start.h b/test/Coverity/ConfigFiles/pack_struct_start.h index e946c26cd8..583a273d42 100644 --- a/test/Coverity/ConfigFiles/pack_struct_start.h +++ b/test/Coverity/ConfigFiles/pack_struct_start.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/build-combination/Common/main.c b/test/build-combination/Common/main.c index 186d55e004..4c68bb21c3 100644 --- a/test/build-combination/Common/main.c +++ b/test/build-combination/Common/main.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/ConfigFiles/FreeRTOS_errno_TCP.h b/test/unit-test/ConfigFiles/FreeRTOS_errno_TCP.h index e8dbfea915..8d3f1b865f 100644 --- a/test/unit-test/ConfigFiles/FreeRTOS_errno_TCP.h +++ b/test/unit-test/ConfigFiles/FreeRTOS_errno_TCP.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/ConfigFiles/IPTraceMacroDefaults.h b/test/unit-test/ConfigFiles/IPTraceMacroDefaults.h index ef19a804f5..240289ea93 100644 --- a/test/unit-test/ConfigFiles/IPTraceMacroDefaults.h +++ b/test/unit-test/ConfigFiles/IPTraceMacroDefaults.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/ConfigFiles/NetworkBufferManagement.h b/test/unit-test/ConfigFiles/NetworkBufferManagement.h index bcd55f11c4..d54c77fd8f 100644 --- a/test/unit-test/ConfigFiles/NetworkBufferManagement.h +++ b/test/unit-test/ConfigFiles/NetworkBufferManagement.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/ConfigFiles/NetworkInterface.h b/test/unit-test/ConfigFiles/NetworkInterface.h index 96ee2b6215..3b563f3d98 100644 --- a/test/unit-test/ConfigFiles/NetworkInterface.h +++ b/test/unit-test/ConfigFiles/NetworkInterface.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/ConfigFiles/pack_struct_end.h b/test/unit-test/ConfigFiles/pack_struct_end.h index 88dcf8713a..df53ac45fa 100644 --- a/test/unit-test/ConfigFiles/pack_struct_end.h +++ b/test/unit-test/ConfigFiles/pack_struct_end.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/ConfigFiles/pack_struct_start.h b/test/unit-test/ConfigFiles/pack_struct_start.h index e946c26cd8..583a273d42 100644 --- a/test/unit-test/ConfigFiles/pack_struct_start.h +++ b/test/unit-test/ConfigFiles/pack_struct_start.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/ConfigFiles/portmacro.h b/test/unit-test/ConfigFiles/portmacro.h index 960eb59936..6d62331800 100644 --- a/test/unit-test/ConfigFiles/portmacro.h +++ b/test/unit-test/ConfigFiles/portmacro.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_DNS/FreeRTOS_DNS_utest.c b/test/unit-test/FreeRTOS_DNS/FreeRTOS_DNS_utest.c index aad65a9681..310951f596 100644 --- a/test/unit-test/FreeRTOS_DNS/FreeRTOS_DNS_utest.c +++ b/test/unit-test/FreeRTOS_DNS/FreeRTOS_DNS_utest.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_DNS/FreeRTOS_UDP_IP_stubs.c b/test/unit-test/FreeRTOS_DNS/FreeRTOS_UDP_IP_stubs.c index 5f3c73af5d..836cd5e327 100644 --- a/test/unit-test/FreeRTOS_DNS/FreeRTOS_UDP_IP_stubs.c +++ b/test/unit-test/FreeRTOS_DNS/FreeRTOS_UDP_IP_stubs.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_DNS_Cache/FreeRTOS_DNS_Cache_utest.c b/test/unit-test/FreeRTOS_DNS_Cache/FreeRTOS_DNS_Cache_utest.c index 64026daafe..bd319337ae 100644 --- a/test/unit-test/FreeRTOS_DNS_Cache/FreeRTOS_DNS_Cache_utest.c +++ b/test/unit-test/FreeRTOS_DNS_Cache/FreeRTOS_DNS_Cache_utest.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_DNS_Cache/FreeRTOS_UDP_IP_stubs.c b/test/unit-test/FreeRTOS_DNS_Cache/FreeRTOS_UDP_IP_stubs.c index 707eaed7fd..d7196c3f04 100644 --- a/test/unit-test/FreeRTOS_DNS_Cache/FreeRTOS_UDP_IP_stubs.c +++ b/test/unit-test/FreeRTOS_DNS_Cache/FreeRTOS_UDP_IP_stubs.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_DNS_Callback/FreeRTOS_DNS_Callback_utest.c b/test/unit-test/FreeRTOS_DNS_Callback/FreeRTOS_DNS_Callback_utest.c index ff788516b7..aac5f88d2d 100644 --- a/test/unit-test/FreeRTOS_DNS_Callback/FreeRTOS_DNS_Callback_utest.c +++ b/test/unit-test/FreeRTOS_DNS_Callback/FreeRTOS_DNS_Callback_utest.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_DNS_Callback/FreeRTOS_UDP_IP_stubs.c b/test/unit-test/FreeRTOS_DNS_Callback/FreeRTOS_UDP_IP_stubs.c index 935db45929..4c4afe463a 100644 --- a/test/unit-test/FreeRTOS_DNS_Callback/FreeRTOS_UDP_IP_stubs.c +++ b/test/unit-test/FreeRTOS_DNS_Callback/FreeRTOS_UDP_IP_stubs.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_DNS_Networking/FreeRTOS_DNS_Networking_utest.c b/test/unit-test/FreeRTOS_DNS_Networking/FreeRTOS_DNS_Networking_utest.c index 88300a2b9b..65db52d922 100644 --- a/test/unit-test/FreeRTOS_DNS_Networking/FreeRTOS_DNS_Networking_utest.c +++ b/test/unit-test/FreeRTOS_DNS_Networking/FreeRTOS_DNS_Networking_utest.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_DNS_Networking/FreeRTOS_UDP_IP_stubs.c b/test/unit-test/FreeRTOS_DNS_Networking/FreeRTOS_UDP_IP_stubs.c index c2c765d80b..401e0aba8d 100644 --- a/test/unit-test/FreeRTOS_DNS_Networking/FreeRTOS_UDP_IP_stubs.c +++ b/test/unit-test/FreeRTOS_DNS_Networking/FreeRTOS_UDP_IP_stubs.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_DNS_Parser/FreeRTOS_DNS_Parser_stubs.c b/test/unit-test/FreeRTOS_DNS_Parser/FreeRTOS_DNS_Parser_stubs.c index a3d589429d..ed33342f0e 100644 --- a/test/unit-test/FreeRTOS_DNS_Parser/FreeRTOS_DNS_Parser_stubs.c +++ b/test/unit-test/FreeRTOS_DNS_Parser/FreeRTOS_DNS_Parser_stubs.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_DNS_Parser/FreeRTOS_DNS_Parser_utest.c b/test/unit-test/FreeRTOS_DNS_Parser/FreeRTOS_DNS_Parser_utest.c index b449b5329c..d14c138119 100644 --- a/test/unit-test/FreeRTOS_DNS_Parser/FreeRTOS_DNS_Parser_utest.c +++ b/test/unit-test/FreeRTOS_DNS_Parser/FreeRTOS_DNS_Parser_utest.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_ICMP/FreeRTOS_ICMP_stubs.c b/test/unit-test/FreeRTOS_ICMP/FreeRTOS_ICMP_stubs.c index 499bf4caed..e77cc25a3c 100644 --- a/test/unit-test/FreeRTOS_ICMP/FreeRTOS_ICMP_stubs.c +++ b/test/unit-test/FreeRTOS_ICMP/FreeRTOS_ICMP_stubs.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_ICMP/FreeRTOS_ICMP_utest.c b/test/unit-test/FreeRTOS_ICMP/FreeRTOS_ICMP_utest.c index 3631e8a9b5..e40866c415 100644 --- a/test/unit-test/FreeRTOS_ICMP/FreeRTOS_ICMP_utest.c +++ b/test/unit-test/FreeRTOS_ICMP/FreeRTOS_ICMP_utest.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_ICMP/ICMP_list_macros.h b/test/unit-test/FreeRTOS_ICMP/ICMP_list_macros.h index b33c2cdcf4..584f013a2e 100644 --- a/test/unit-test/FreeRTOS_ICMP/ICMP_list_macros.h +++ b/test/unit-test/FreeRTOS_ICMP/ICMP_list_macros.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_ICMP_wo_assert/FreeRTOS_ICMP_wo_assert_stubs.c b/test/unit-test/FreeRTOS_ICMP_wo_assert/FreeRTOS_ICMP_wo_assert_stubs.c index 499bf4caed..e77cc25a3c 100644 --- a/test/unit-test/FreeRTOS_ICMP_wo_assert/FreeRTOS_ICMP_wo_assert_stubs.c +++ b/test/unit-test/FreeRTOS_ICMP_wo_assert/FreeRTOS_ICMP_wo_assert_stubs.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_ICMP_wo_assert/FreeRTOS_ICMP_wo_assert_utest.c b/test/unit-test/FreeRTOS_ICMP_wo_assert/FreeRTOS_ICMP_wo_assert_utest.c index b269e1dfda..21f45765e0 100644 --- a/test/unit-test/FreeRTOS_ICMP_wo_assert/FreeRTOS_ICMP_wo_assert_utest.c +++ b/test/unit-test/FreeRTOS_ICMP_wo_assert/FreeRTOS_ICMP_wo_assert_utest.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_IP/FreeRTOS_IP_stubs.c b/test/unit-test/FreeRTOS_IP/FreeRTOS_IP_stubs.c index f6f58eb95e..414edb2cf3 100644 --- a/test/unit-test/FreeRTOS_IP/FreeRTOS_IP_stubs.c +++ b/test/unit-test/FreeRTOS_IP/FreeRTOS_IP_stubs.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_IP/FreeRTOS_IP_utest.c b/test/unit-test/FreeRTOS_IP/FreeRTOS_IP_utest.c index 43e73317d3..542aac4137 100644 --- a/test/unit-test/FreeRTOS_IP/FreeRTOS_IP_utest.c +++ b/test/unit-test/FreeRTOS_IP/FreeRTOS_IP_utest.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_IP/IP_list_macros.h b/test/unit-test/FreeRTOS_IP/IP_list_macros.h index 12abe20a5e..339861c80b 100644 --- a/test/unit-test/FreeRTOS_IP/IP_list_macros.h +++ b/test/unit-test/FreeRTOS_IP/IP_list_macros.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_IP_DiffConfig/FreeRTOS_IP_DiffConfig_stubs.c b/test/unit-test/FreeRTOS_IP_DiffConfig/FreeRTOS_IP_DiffConfig_stubs.c index f6f58eb95e..414edb2cf3 100644 --- a/test/unit-test/FreeRTOS_IP_DiffConfig/FreeRTOS_IP_DiffConfig_stubs.c +++ b/test/unit-test/FreeRTOS_IP_DiffConfig/FreeRTOS_IP_DiffConfig_stubs.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_IP_DiffConfig/FreeRTOS_IP_DiffConfig_utest.c b/test/unit-test/FreeRTOS_IP_DiffConfig/FreeRTOS_IP_DiffConfig_utest.c index 8d71fe3e9b..15186e8857 100644 --- a/test/unit-test/FreeRTOS_IP_DiffConfig/FreeRTOS_IP_DiffConfig_utest.c +++ b/test/unit-test/FreeRTOS_IP_DiffConfig/FreeRTOS_IP_DiffConfig_utest.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_IP_DiffConfig/IP_DiffConfig_list_macros.h b/test/unit-test/FreeRTOS_IP_DiffConfig/IP_DiffConfig_list_macros.h index 12abe20a5e..339861c80b 100644 --- a/test/unit-test/FreeRTOS_IP_DiffConfig/IP_DiffConfig_list_macros.h +++ b/test/unit-test/FreeRTOS_IP_DiffConfig/IP_DiffConfig_list_macros.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_IP_Timers/FreeRTOS_IP_Timers_stubs.c b/test/unit-test/FreeRTOS_IP_Timers/FreeRTOS_IP_Timers_stubs.c index 81666b3fe7..bc7ea6fb72 100644 --- a/test/unit-test/FreeRTOS_IP_Timers/FreeRTOS_IP_Timers_stubs.c +++ b/test/unit-test/FreeRTOS_IP_Timers/FreeRTOS_IP_Timers_stubs.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_IP_Timers/FreeRTOS_IP_Timers_utest.c b/test/unit-test/FreeRTOS_IP_Timers/FreeRTOS_IP_Timers_utest.c index 948093707e..6c33e84789 100644 --- a/test/unit-test/FreeRTOS_IP_Timers/FreeRTOS_IP_Timers_utest.c +++ b/test/unit-test/FreeRTOS_IP_Timers/FreeRTOS_IP_Timers_utest.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_IP_Timers/IP_Timers_list_macros.h b/test/unit-test/FreeRTOS_IP_Timers/IP_Timers_list_macros.h index be1f852aae..dff766f778 100644 --- a/test/unit-test/FreeRTOS_IP_Timers/IP_Timers_list_macros.h +++ b/test/unit-test/FreeRTOS_IP_Timers/IP_Timers_list_macros.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_IP_Utils/FreeRTOS_IP_Utils_stubs.c b/test/unit-test/FreeRTOS_IP_Utils/FreeRTOS_IP_Utils_stubs.c index 3bc3ef48a7..3c4ff0f3d8 100644 --- a/test/unit-test/FreeRTOS_IP_Utils/FreeRTOS_IP_Utils_stubs.c +++ b/test/unit-test/FreeRTOS_IP_Utils/FreeRTOS_IP_Utils_stubs.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_IP_Utils/FreeRTOS_IP_Utils_utest.c b/test/unit-test/FreeRTOS_IP_Utils/FreeRTOS_IP_Utils_utest.c index 15787450a3..b61f0070cd 100644 --- a/test/unit-test/FreeRTOS_IP_Utils/FreeRTOS_IP_Utils_utest.c +++ b/test/unit-test/FreeRTOS_IP_Utils/FreeRTOS_IP_Utils_utest.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_IP_Utils/IP_Utils_list_macros.h b/test/unit-test/FreeRTOS_IP_Utils/IP_Utils_list_macros.h index be1f852aae..dff766f778 100644 --- a/test/unit-test/FreeRTOS_IP_Utils/IP_Utils_list_macros.h +++ b/test/unit-test/FreeRTOS_IP_Utils/IP_Utils_list_macros.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_IP_Utils_DiffConfig/FreeRTOS_IP_Utils_DiffConfig_stubs.c b/test/unit-test/FreeRTOS_IP_Utils_DiffConfig/FreeRTOS_IP_Utils_DiffConfig_stubs.c index 3bc3ef48a7..3c4ff0f3d8 100644 --- a/test/unit-test/FreeRTOS_IP_Utils_DiffConfig/FreeRTOS_IP_Utils_DiffConfig_stubs.c +++ b/test/unit-test/FreeRTOS_IP_Utils_DiffConfig/FreeRTOS_IP_Utils_DiffConfig_stubs.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_IP_Utils_DiffConfig/FreeRTOS_IP_Utils_DiffConfig_utest.c b/test/unit-test/FreeRTOS_IP_Utils_DiffConfig/FreeRTOS_IP_Utils_DiffConfig_utest.c index 335c5921c8..3f9e38c7e4 100644 --- a/test/unit-test/FreeRTOS_IP_Utils_DiffConfig/FreeRTOS_IP_Utils_DiffConfig_utest.c +++ b/test/unit-test/FreeRTOS_IP_Utils_DiffConfig/FreeRTOS_IP_Utils_DiffConfig_utest.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_IP_Utils_DiffConfig/IP_Utils_DiffConfig_list_macros.h b/test/unit-test/FreeRTOS_IP_Utils_DiffConfig/IP_Utils_DiffConfig_list_macros.h index b0d05d5253..3999ff57a6 100644 --- a/test/unit-test/FreeRTOS_IP_Utils_DiffConfig/IP_Utils_DiffConfig_list_macros.h +++ b/test/unit-test/FreeRTOS_IP_Utils_DiffConfig/IP_Utils_DiffConfig_list_macros.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_Sockets/FreeRTOS_Sockets_GenericAPI_utest.c b/test/unit-test/FreeRTOS_Sockets/FreeRTOS_Sockets_GenericAPI_utest.c index 53f0f3eaff..0361d2f546 100644 --- a/test/unit-test/FreeRTOS_Sockets/FreeRTOS_Sockets_GenericAPI_utest.c +++ b/test/unit-test/FreeRTOS_Sockets/FreeRTOS_Sockets_GenericAPI_utest.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_Sockets/FreeRTOS_Sockets_TCP_API_utest.c b/test/unit-test/FreeRTOS_Sockets/FreeRTOS_Sockets_TCP_API_utest.c index 48650c19b1..9927da23f8 100644 --- a/test/unit-test/FreeRTOS_Sockets/FreeRTOS_Sockets_TCP_API_utest.c +++ b/test/unit-test/FreeRTOS_Sockets/FreeRTOS_Sockets_TCP_API_utest.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_Sockets/FreeRTOS_Sockets_UDP_API_utest.c b/test/unit-test/FreeRTOS_Sockets/FreeRTOS_Sockets_UDP_API_utest.c index f7a59a479d..4539b35d42 100644 --- a/test/unit-test/FreeRTOS_Sockets/FreeRTOS_Sockets_UDP_API_utest.c +++ b/test/unit-test/FreeRTOS_Sockets/FreeRTOS_Sockets_UDP_API_utest.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_Sockets/FreeRTOS_Sockets_privates_utest.c b/test/unit-test/FreeRTOS_Sockets/FreeRTOS_Sockets_privates_utest.c index 2f0c7ffe3c..90714d0f04 100644 --- a/test/unit-test/FreeRTOS_Sockets/FreeRTOS_Sockets_privates_utest.c +++ b/test/unit-test/FreeRTOS_Sockets/FreeRTOS_Sockets_privates_utest.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_Sockets/FreeRTOS_Sockets_stubs.c b/test/unit-test/FreeRTOS_Sockets/FreeRTOS_Sockets_stubs.c index 9006548e78..4da70b5d99 100644 --- a/test/unit-test/FreeRTOS_Sockets/FreeRTOS_Sockets_stubs.c +++ b/test/unit-test/FreeRTOS_Sockets/FreeRTOS_Sockets_stubs.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_Sockets/Sockets_list_macros.h b/test/unit-test/FreeRTOS_Sockets/Sockets_list_macros.h index a7deb74bdd..af1ca1a847 100644 --- a/test/unit-test/FreeRTOS_Sockets/Sockets_list_macros.h +++ b/test/unit-test/FreeRTOS_Sockets/Sockets_list_macros.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_Sockets_DiffConfig/FreeRTOS_Sockets_DiffConfig_privates_utest.c b/test/unit-test/FreeRTOS_Sockets_DiffConfig/FreeRTOS_Sockets_DiffConfig_privates_utest.c index bb5d78bfa5..3602a87885 100644 --- a/test/unit-test/FreeRTOS_Sockets_DiffConfig/FreeRTOS_Sockets_DiffConfig_privates_utest.c +++ b/test/unit-test/FreeRTOS_Sockets_DiffConfig/FreeRTOS_Sockets_DiffConfig_privates_utest.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_Sockets_DiffConfig/FreeRTOS_Sockets_DiffConfig_stubs.c b/test/unit-test/FreeRTOS_Sockets_DiffConfig/FreeRTOS_Sockets_DiffConfig_stubs.c index 9006548e78..4da70b5d99 100644 --- a/test/unit-test/FreeRTOS_Sockets_DiffConfig/FreeRTOS_Sockets_DiffConfig_stubs.c +++ b/test/unit-test/FreeRTOS_Sockets_DiffConfig/FreeRTOS_Sockets_DiffConfig_stubs.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_Sockets_DiffConfig/Sockets_DiffConfig_list_macros.h b/test/unit-test/FreeRTOS_Sockets_DiffConfig/Sockets_DiffConfig_list_macros.h index 3725f7a21a..3865eee47c 100644 --- a/test/unit-test/FreeRTOS_Sockets_DiffConfig/Sockets_DiffConfig_list_macros.h +++ b/test/unit-test/FreeRTOS_Sockets_DiffConfig/Sockets_DiffConfig_list_macros.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_Sockets_DiffConfig1/FreeRTOS_Sockets_DiffConfig1_privates_utest.c b/test/unit-test/FreeRTOS_Sockets_DiffConfig1/FreeRTOS_Sockets_DiffConfig1_privates_utest.c index 8dea999dd4..4948d7e6dd 100644 --- a/test/unit-test/FreeRTOS_Sockets_DiffConfig1/FreeRTOS_Sockets_DiffConfig1_privates_utest.c +++ b/test/unit-test/FreeRTOS_Sockets_DiffConfig1/FreeRTOS_Sockets_DiffConfig1_privates_utest.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_Sockets_DiffConfig1/FreeRTOS_Sockets_DiffConfig1_stubs.c b/test/unit-test/FreeRTOS_Sockets_DiffConfig1/FreeRTOS_Sockets_DiffConfig1_stubs.c index 9006548e78..4da70b5d99 100644 --- a/test/unit-test/FreeRTOS_Sockets_DiffConfig1/FreeRTOS_Sockets_DiffConfig1_stubs.c +++ b/test/unit-test/FreeRTOS_Sockets_DiffConfig1/FreeRTOS_Sockets_DiffConfig1_stubs.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_Sockets_DiffConfig1/Sockets_DiffConfig1_list_macros.h b/test/unit-test/FreeRTOS_Sockets_DiffConfig1/Sockets_DiffConfig1_list_macros.h index 3725f7a21a..3865eee47c 100644 --- a/test/unit-test/FreeRTOS_Sockets_DiffConfig1/Sockets_DiffConfig1_list_macros.h +++ b/test/unit-test/FreeRTOS_Sockets_DiffConfig1/Sockets_DiffConfig1_list_macros.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_Stream_Buffer/FreeRTOS_Stream_Buffer_utest.c b/test/unit-test/FreeRTOS_Stream_Buffer/FreeRTOS_Stream_Buffer_utest.c index d6cd585434..b7d0e54c71 100644 --- a/test/unit-test/FreeRTOS_Stream_Buffer/FreeRTOS_Stream_Buffer_utest.c +++ b/test/unit-test/FreeRTOS_Stream_Buffer/FreeRTOS_Stream_Buffer_utest.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_Stream_Buffer/list_macros.h b/test/unit-test/FreeRTOS_Stream_Buffer/list_macros.h index b33c2cdcf4..584f013a2e 100644 --- a/test/unit-test/FreeRTOS_Stream_Buffer/list_macros.h +++ b/test/unit-test/FreeRTOS_Stream_Buffer/list_macros.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_TCP_IP/FreeRTOS_TCP_IP_stubs.c b/test/unit-test/FreeRTOS_TCP_IP/FreeRTOS_TCP_IP_stubs.c index 78a5cdc3fc..ede4723aec 100644 --- a/test/unit-test/FreeRTOS_TCP_IP/FreeRTOS_TCP_IP_stubs.c +++ b/test/unit-test/FreeRTOS_TCP_IP/FreeRTOS_TCP_IP_stubs.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_TCP_IP/FreeRTOS_TCP_IP_utest.c b/test/unit-test/FreeRTOS_TCP_IP/FreeRTOS_TCP_IP_utest.c index 75ca596861..567afe725a 100644 --- a/test/unit-test/FreeRTOS_TCP_IP/FreeRTOS_TCP_IP_utest.c +++ b/test/unit-test/FreeRTOS_TCP_IP/FreeRTOS_TCP_IP_utest.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_TCP_IP/TCP_IP_list_macros.h b/test/unit-test/FreeRTOS_TCP_IP/TCP_IP_list_macros.h index 51ea6a0b8a..08b40c26ad 100644 --- a/test/unit-test/FreeRTOS_TCP_IP/TCP_IP_list_macros.h +++ b/test/unit-test/FreeRTOS_TCP_IP/TCP_IP_list_macros.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_TCP_IP_DiffConfig/FreeRTOS_TCP_IP_DiffConfig_stubs.c b/test/unit-test/FreeRTOS_TCP_IP_DiffConfig/FreeRTOS_TCP_IP_DiffConfig_stubs.c index 78a5cdc3fc..ede4723aec 100644 --- a/test/unit-test/FreeRTOS_TCP_IP_DiffConfig/FreeRTOS_TCP_IP_DiffConfig_stubs.c +++ b/test/unit-test/FreeRTOS_TCP_IP_DiffConfig/FreeRTOS_TCP_IP_DiffConfig_stubs.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_TCP_IP_DiffConfig/FreeRTOS_TCP_IP_DiffConfig_utest.c b/test/unit-test/FreeRTOS_TCP_IP_DiffConfig/FreeRTOS_TCP_IP_DiffConfig_utest.c index ac0f8359f1..8a9ae62d20 100644 --- a/test/unit-test/FreeRTOS_TCP_IP_DiffConfig/FreeRTOS_TCP_IP_DiffConfig_utest.c +++ b/test/unit-test/FreeRTOS_TCP_IP_DiffConfig/FreeRTOS_TCP_IP_DiffConfig_utest.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_TCP_IP_DiffConfig/TCP_IP_DiffConfig_list_macros.h b/test/unit-test/FreeRTOS_TCP_IP_DiffConfig/TCP_IP_DiffConfig_list_macros.h index 51ea6a0b8a..08b40c26ad 100644 --- a/test/unit-test/FreeRTOS_TCP_IP_DiffConfig/TCP_IP_DiffConfig_list_macros.h +++ b/test/unit-test/FreeRTOS_TCP_IP_DiffConfig/TCP_IP_DiffConfig_list_macros.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_TCP_Reception/FreeRTOS_TCP_Reception_stubs.c b/test/unit-test/FreeRTOS_TCP_Reception/FreeRTOS_TCP_Reception_stubs.c index 1553ba010b..742a9ae2fa 100644 --- a/test/unit-test/FreeRTOS_TCP_Reception/FreeRTOS_TCP_Reception_stubs.c +++ b/test/unit-test/FreeRTOS_TCP_Reception/FreeRTOS_TCP_Reception_stubs.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_TCP_Reception/FreeRTOS_TCP_Reception_utest.c b/test/unit-test/FreeRTOS_TCP_Reception/FreeRTOS_TCP_Reception_utest.c index be7d21017a..9af729a13f 100644 --- a/test/unit-test/FreeRTOS_TCP_Reception/FreeRTOS_TCP_Reception_utest.c +++ b/test/unit-test/FreeRTOS_TCP_Reception/FreeRTOS_TCP_Reception_utest.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_TCP_State_Handling/FreeRTOS_TCP_State_Handling_stubs.c b/test/unit-test/FreeRTOS_TCP_State_Handling/FreeRTOS_TCP_State_Handling_stubs.c index e29cf83fd7..48416087b9 100644 --- a/test/unit-test/FreeRTOS_TCP_State_Handling/FreeRTOS_TCP_State_Handling_stubs.c +++ b/test/unit-test/FreeRTOS_TCP_State_Handling/FreeRTOS_TCP_State_Handling_stubs.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_TCP_State_Handling/FreeRTOS_TCP_State_Handling_utest.c b/test/unit-test/FreeRTOS_TCP_State_Handling/FreeRTOS_TCP_State_Handling_utest.c index 651cae6cec..1c0692c4b5 100644 --- a/test/unit-test/FreeRTOS_TCP_State_Handling/FreeRTOS_TCP_State_Handling_utest.c +++ b/test/unit-test/FreeRTOS_TCP_State_Handling/FreeRTOS_TCP_State_Handling_utest.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_TCP_Transmission/FreeRTOS_TCP_Transmission_stubs.c b/test/unit-test/FreeRTOS_TCP_Transmission/FreeRTOS_TCP_Transmission_stubs.c index 5269133b8f..c328d93511 100644 --- a/test/unit-test/FreeRTOS_TCP_Transmission/FreeRTOS_TCP_Transmission_stubs.c +++ b/test/unit-test/FreeRTOS_TCP_Transmission/FreeRTOS_TCP_Transmission_stubs.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_TCP_Transmission/FreeRTOS_TCP_Transmission_utest.c b/test/unit-test/FreeRTOS_TCP_Transmission/FreeRTOS_TCP_Transmission_utest.c index 3962ef3815..ab16b788b0 100644 --- a/test/unit-test/FreeRTOS_TCP_Transmission/FreeRTOS_TCP_Transmission_utest.c +++ b/test/unit-test/FreeRTOS_TCP_Transmission/FreeRTOS_TCP_Transmission_utest.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_TCP_Utils/FreeRTOS_TCP_Utils_stubs.c b/test/unit-test/FreeRTOS_TCP_Utils/FreeRTOS_TCP_Utils_stubs.c index 74b0b2558b..aa47d695a7 100644 --- a/test/unit-test/FreeRTOS_TCP_Utils/FreeRTOS_TCP_Utils_stubs.c +++ b/test/unit-test/FreeRTOS_TCP_Utils/FreeRTOS_TCP_Utils_stubs.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_TCP_Utils/FreeRTOS_TCP_Utils_utest.c b/test/unit-test/FreeRTOS_TCP_Utils/FreeRTOS_TCP_Utils_utest.c index 9d29ffc065..d4f7d75aca 100644 --- a/test/unit-test/FreeRTOS_TCP_Utils/FreeRTOS_TCP_Utils_utest.c +++ b/test/unit-test/FreeRTOS_TCP_Utils/FreeRTOS_TCP_Utils_utest.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_TCP_WIN/FreeRTOS_TCP_WIN_list_macros.h b/test/unit-test/FreeRTOS_TCP_WIN/FreeRTOS_TCP_WIN_list_macros.h index b7e552b9c9..84d1807667 100644 --- a/test/unit-test/FreeRTOS_TCP_WIN/FreeRTOS_TCP_WIN_list_macros.h +++ b/test/unit-test/FreeRTOS_TCP_WIN/FreeRTOS_TCP_WIN_list_macros.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_TCP_WIN/FreeRTOS_TCP_WIN_utest.c b/test/unit-test/FreeRTOS_TCP_WIN/FreeRTOS_TCP_WIN_utest.c index 4e6e0d6c60..f0a10de789 100644 --- a/test/unit-test/FreeRTOS_TCP_WIN/FreeRTOS_TCP_WIN_utest.c +++ b/test/unit-test/FreeRTOS_TCP_WIN/FreeRTOS_TCP_WIN_utest.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_Tiny_TCP/FreeRTOS_Tiny_TCP_utest.c b/test/unit-test/FreeRTOS_Tiny_TCP/FreeRTOS_Tiny_TCP_utest.c index d699852429..cd44774055 100644 --- a/test/unit-test/FreeRTOS_Tiny_TCP/FreeRTOS_Tiny_TCP_utest.c +++ b/test/unit-test/FreeRTOS_Tiny_TCP/FreeRTOS_Tiny_TCP_utest.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_UDP_IP/FreeRTOS_UDP_IP_stubs.c b/test/unit-test/FreeRTOS_UDP_IP/FreeRTOS_UDP_IP_stubs.c index 33d183228c..a33749700a 100644 --- a/test/unit-test/FreeRTOS_UDP_IP/FreeRTOS_UDP_IP_stubs.c +++ b/test/unit-test/FreeRTOS_UDP_IP/FreeRTOS_UDP_IP_stubs.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_UDP_IP/FreeRTOS_UDP_IP_utest.c b/test/unit-test/FreeRTOS_UDP_IP/FreeRTOS_UDP_IP_utest.c index 32f802c889..e0bc4f31a4 100644 --- a/test/unit-test/FreeRTOS_UDP_IP/FreeRTOS_UDP_IP_utest.c +++ b/test/unit-test/FreeRTOS_UDP_IP/FreeRTOS_UDP_IP_utest.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/test/unit-test/FreeRTOS_UDP_IP/list_macros.h b/test/unit-test/FreeRTOS_UDP_IP/list_macros.h index b33c2cdcf4..584f013a2e 100644 --- a/test/unit-test/FreeRTOS_UDP_IP/list_macros.h +++ b/test/unit-test/FreeRTOS_UDP_IP/list_macros.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/tools/tcp_utilities/include/tcp_dump_packets.h b/tools/tcp_utilities/include/tcp_dump_packets.h index f1b26dd7fe..232352f591 100644 --- a/tools/tcp_utilities/include/tcp_dump_packets.h +++ b/tools/tcp_utilities/include/tcp_dump_packets.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/tools/tcp_utilities/include/tcp_mem_stats.h b/tools/tcp_utilities/include/tcp_mem_stats.h index c4e340be53..d439caa262 100644 --- a/tools/tcp_utilities/include/tcp_mem_stats.h +++ b/tools/tcp_utilities/include/tcp_mem_stats.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/tools/tcp_utilities/include/tcp_netstat.h b/tools/tcp_utilities/include/tcp_netstat.h index 602c156ccb..68052b6403 100644 --- a/tools/tcp_utilities/include/tcp_netstat.h +++ b/tools/tcp_utilities/include/tcp_netstat.h @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/tools/tcp_utilities/tcp_dump_packets.c b/tools/tcp_utilities/tcp_dump_packets.c index 52764b2d14..3902ad0727 100644 --- a/tools/tcp_utilities/tcp_dump_packets.c +++ b/tools/tcp_utilities/tcp_dump_packets.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/tools/tcp_utilities/tcp_mem_stats.c b/tools/tcp_utilities/tcp_mem_stats.c index dd382eedac..78e27d0038 100644 --- a/tools/tcp_utilities/tcp_mem_stats.c +++ b/tools/tcp_utilities/tcp_mem_stats.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT diff --git a/tools/tcp_utilities/tcp_netstat.c b/tools/tcp_utilities/tcp_netstat.c index 2e09009a0c..41e20b4cea 100644 --- a/tools/tcp_utilities/tcp_netstat.c +++ b/tools/tcp_utilities/tcp_netstat.c @@ -1,5 +1,5 @@ /* - * FreeRTOS+TCP V2.3.4 + * FreeRTOS+TCP * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * SPDX-License-Identifier: MIT From 29f2c2781361f640646864667a4bf7be838be393 Mon Sep 17 00:00:00 2001 From: Aniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com> Date: Wed, 6 Jul 2022 10:05:51 -0700 Subject: [PATCH 07/22] Update version number macros --- source/include/FreeRTOS_IP.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/include/FreeRTOS_IP.h b/source/include/FreeRTOS_IP.h index a093656c14..ce5c9ae983 100644 --- a/source/include/FreeRTOS_IP.h +++ b/source/include/FreeRTOS_IP.h @@ -42,10 +42,11 @@ /* Constants defining the current version of the FreeRTOS+TCP * network stack. */ - #define ipFR_TCP_VERSION_NUMBER "" + #define ipFR_TCP_VERSION_NUMBER "2.3.999" #define ipFR_TCP_VERSION_MAJOR 2 #define ipFR_TCP_VERSION_MINOR 3 - #define ipFR_TCP_VERSION_BUILD 4 +/* Development builds are always version 999. */ + #define ipFR_TCP_VERSION_BUILD 999 /* Some constants defining the sizes of several parts of a packet. * These defines come before including the configuration header files. */ From 8ef5462761e67977843819be9da4662c8b284207 Mon Sep 17 00:00:00 2001 From: Aniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com> Date: Wed, 6 Jul 2022 10:08:43 -0700 Subject: [PATCH 08/22] This commit fixes a typo in version number macro --- source/include/FreeRTOS_IP.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/include/FreeRTOS_IP.h b/source/include/FreeRTOS_IP.h index ce5c9ae983..b07723fd78 100644 --- a/source/include/FreeRTOS_IP.h +++ b/source/include/FreeRTOS_IP.h @@ -42,7 +42,7 @@ /* Constants defining the current version of the FreeRTOS+TCP * network stack. */ - #define ipFR_TCP_VERSION_NUMBER "2.3.999" + #define ipFR_TCP_VERSION_NUMBER "V2.3.999" #define ipFR_TCP_VERSION_MAJOR 2 #define ipFR_TCP_VERSION_MINOR 3 /* Development builds are always version 999. */ From 7c4f65330f34e87876d9e5adb9983aac1f2da8e5 Mon Sep 17 00:00:00 2001 From: Aniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com> Date: Wed, 6 Jul 2022 10:32:53 -0700 Subject: [PATCH 09/22] Added a 'critical section' to prevent a race condition in stream buffers --- source/FreeRTOS_Stream_Buffer.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/source/FreeRTOS_Stream_Buffer.c b/source/FreeRTOS_Stream_Buffer.c index 41b59032c5..a9f528c1e5 100644 --- a/source/FreeRTOS_Stream_Buffer.c +++ b/source/FreeRTOS_Stream_Buffer.c @@ -318,10 +318,14 @@ size_t uxStreamBufferAdd( StreamBuffer_t * pxBuffer, } } - if( uxOffset == 0U ) + /* The below update to the stream buffer members must happen + * atomically. */ + vTaskSuspendAll(); { - /* ( uxOffset == 0 ) means: write at uxHead position */ - uxNextHead += uxCount; + if( uxOffset == 0U ) + { + /* ( uxOffset == 0 ) means: write at uxHead position */ + uxNextHead += uxCount; if( uxNextHead >= pxBuffer->LENGTH ) { @@ -336,6 +340,8 @@ size_t uxStreamBufferAdd( StreamBuffer_t * pxBuffer, /* Advance the front pointer */ pxBuffer->uxFront = uxNextHead; } + } + xTaskResumeAll(); } return uxCount; From d000125a043ab2aebac66e6d717510ae144f8efe Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 6 Jul 2022 17:41:17 +0000 Subject: [PATCH 10/22] Uncrustify: triggered by comment. --- source/FreeRTOS_Stream_Buffer.c | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/source/FreeRTOS_Stream_Buffer.c b/source/FreeRTOS_Stream_Buffer.c index a9f528c1e5..97dcaf3db7 100644 --- a/source/FreeRTOS_Stream_Buffer.c +++ b/source/FreeRTOS_Stream_Buffer.c @@ -327,19 +327,19 @@ size_t uxStreamBufferAdd( StreamBuffer_t * pxBuffer, /* ( uxOffset == 0 ) means: write at uxHead position */ uxNextHead += uxCount; - if( uxNextHead >= pxBuffer->LENGTH ) - { - uxNextHead -= pxBuffer->LENGTH; - } + if( uxNextHead >= pxBuffer->LENGTH ) + { + uxNextHead -= pxBuffer->LENGTH; + } - pxBuffer->uxHead = uxNextHead; - } + pxBuffer->uxHead = uxNextHead; + } - if( xStreamBufferLessThenEqual( pxBuffer, pxBuffer->uxFront, uxNextHead ) != pdFALSE ) - { - /* Advance the front pointer */ - pxBuffer->uxFront = uxNextHead; - } + if( xStreamBufferLessThenEqual( pxBuffer, pxBuffer->uxFront, uxNextHead ) != pdFALSE ) + { + /* Advance the front pointer */ + pxBuffer->uxFront = uxNextHead; + } } xTaskResumeAll(); } From 0d132e9da5dd5dd7ca0e5de129c9c131e681026e Mon Sep 17 00:00:00 2001 From: Aniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com> Date: Wed, 6 Jul 2022 11:02:28 -0700 Subject: [PATCH 11/22] Fixed unit-tests by adding mocked functions --- .../FreeRTOS_Stream_Buffer_utest.c | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/test/unit-test/FreeRTOS_Stream_Buffer/FreeRTOS_Stream_Buffer_utest.c b/test/unit-test/FreeRTOS_Stream_Buffer/FreeRTOS_Stream_Buffer_utest.c index b7d0e54c71..ec9b1428d8 100644 --- a/test/unit-test/FreeRTOS_Stream_Buffer/FreeRTOS_Stream_Buffer_utest.c +++ b/test/unit-test/FreeRTOS_Stream_Buffer/FreeRTOS_Stream_Buffer_utest.c @@ -602,6 +602,9 @@ void test_uxStreamBufferAdd_BufferHasMoreSpaceThanData_ZeroOffset_DataWriteCause FreeRTOS_min_size_t_Stub( FreeRTOS_min_stub ); + vTaskSuspendAll_Expect(); + xTaskResumeAll_ExpectAndReturn( pdTRUE ); + uxReturn = uxStreamBufferAdd( pxLocalBuffer, uxOffset, pucData, uxByteCount ); /* Only these many bytes should be written. */ @@ -654,6 +657,9 @@ void test_uxStreamBufferAdd_BufferHasLessSpaceThanData_ZeroOffset( void ) FreeRTOS_min_size_t_Stub( FreeRTOS_min_stub ); + vTaskSuspendAll_Expect(); + xTaskResumeAll_ExpectAndReturn( pdTRUE ); + uxReturn = uxStreamBufferAdd( pxLocalBuffer, uxOffset, pucData, uxByteCount ); /* Only 500 bytes should be written. */ @@ -697,6 +703,9 @@ void test_uxStreamBufferAdd_BufferHasLessSpaceThanData_NonZeroOffset( void ) FreeRTOS_min_size_t_Stub( FreeRTOS_min_stub ); + vTaskSuspendAll_Expect(); + xTaskResumeAll_ExpectAndReturn( pdTRUE ); + uxReturn = uxStreamBufferAdd( pxLocalBuffer, uxOffset, pucData, uxByteCount ); /* Only these many bytes should be written. */ @@ -749,6 +758,9 @@ void test_uxStreamBufferAdd_BufferHasLessSpaceThanData_NonZeroOffsetCausesRollov FreeRTOS_min_size_t_Stub( FreeRTOS_min_stub ); + vTaskSuspendAll_Expect(); + xTaskResumeAll_ExpectAndReturn( pdTRUE ); + uxReturn = uxStreamBufferAdd( pxLocalBuffer, uxOffset, pucData, uxByteCount ); /* Only these many bytes should be written. */ @@ -802,6 +814,9 @@ void test_uxStreamBufferAdd_BufferHasLessSpaceThanData_ZeroOffset_DataWriteCause FreeRTOS_min_size_t_Stub( FreeRTOS_min_stub ); + vTaskSuspendAll_Expect(); + xTaskResumeAll_ExpectAndReturn( pdTRUE ); + uxReturn = uxStreamBufferAdd( pxLocalBuffer, uxOffset, pucData, uxByteCount ); /* Only these many bytes should be written. */ @@ -859,6 +874,9 @@ void test_uxStreamBufferAdd_NULLData_BufferHasLessSpaceThanData_ZeroOffset_DataW FreeRTOS_min_size_t_Stub( FreeRTOS_min_stub ); + vTaskSuspendAll_Expect(); + xTaskResumeAll_ExpectAndReturn( pdTRUE ); + uxReturn = uxStreamBufferAdd( pxLocalBuffer, uxOffset, NULL, uxByteCount ); /* Nothing should be written but tail will be updated. */ @@ -912,6 +930,9 @@ void test_uxStreamBufferAdd_NULLData_BufferHasLessSpaceThanData_ZeroOffset_DataW FreeRTOS_min_size_t_Stub( FreeRTOS_min_stub ); + vTaskSuspendAll_Expect(); + xTaskResumeAll_ExpectAndReturn( pdTRUE ); + uxReturn = uxStreamBufferAdd( pxLocalBuffer, uxOffset, NULL, uxByteCount ); /* Nothing should be written but tail should be updated. */ From 581b83af8e3ca9ff14245fd785f3ac77b907990d Mon Sep 17 00:00:00 2001 From: Aniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com> Date: Tue, 2 Aug 2022 13:20:59 -0700 Subject: [PATCH 12/22] Initial commit of file README.md --- test/Coverity/README.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 test/Coverity/README.md diff --git a/test/Coverity/README.md b/test/Coverity/README.md new file mode 100644 index 0000000000..ca2278f2e6 --- /dev/null +++ b/test/Coverity/README.md @@ -0,0 +1 @@ + From 56be8f13316afb478b8b7dfc1e2a72ccac67b1ec Mon Sep 17 00:00:00 2001 From: Aniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com> Date: Tue, 2 Aug 2022 13:54:10 -0700 Subject: [PATCH 13/22] Update README.md --- test/Coverity/README.md | 58 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 57 insertions(+), 1 deletion(-) diff --git a/test/Coverity/README.md b/test/Coverity/README.md index ca2278f2e6..33783b879a 100644 --- a/test/Coverity/README.md +++ b/test/Coverity/README.md @@ -1 +1,57 @@ - +# Static code for FreeRTOS-Plus-TCP library using Coverity +This directory is made for the purpose of statically testing the MISRA c-2012 compliance of FreeRTOS+TCP using [Synopsys Coverity](https://www.synopsys.com/software-integrity/security-testing/static-analysis-sast.html) static analysis tool. To that end, this directory provides a [CMake](https://github.com/FreeRTOS/FreeRTOS-Plus-TCP/blob/main/test/Coverity/CMakeLists.txt) file and [configuration files](https://github.com/FreeRTOS/FreeRTOS-Plus-TCP/tree/main/test/Coverity/ConfigFiles) required to build an application for the tool to analyze. + +For details regarding the suppressed violations in the report (which can be generated using the following instructions), please see the [MISRA.md](https://github.com/FreeRTOS/FreeRTOS-Plus-TCP/blob/main/MISRA.md) file. + +## Getting Started +### Prerequisites +You can run this on any platform which is supported by Coverity. The list and other details can be found [here](https://sig-docs.synopsys.com/polaris/topics/c_coverity-compatible-platforms.html). +To compile and run this project successfully, you must have the following: + +1. CMake version > 3.13.0 (You can check whether you have this by typing `cmake --version`) + - Not found? Try `apt-get install cmake` + - Try the `cmake --version` command. If the version number is >= 3.13.0, skip to (4.) or else, continue. + - You will need to get the latest CMake version using curl or wget (or similar command). + - Uninstall the current version of CMake using `sudo apt remove --purge --auto-remove cmake`. + - Download the 3.13.0 version using `wget https://cmake.org/files/v3.13/cmake-3.13.0.tar.gz`. + - Extract the cmake download using `tar -xzvf cmake-3.13.0.tar.gz`. + - Go to the extracted folder (`cd cmake-3.13.0`) and run `./bootstrap`. + - Run `make -j$(nproc)' and then run `sudo make install`. + - Check the version using `cmake --version` command. +2. GCC compiler + - You can see the downloading and installation instructions [here](https://gcc.gnu.org/install/). +3. Download the repo and include the submodules using the following commands. + - `git clone --recurse-submodules https://github.com/FreeRTOS/FreeRTOS-Plus-TCP.git ./FreeRTOS_TCP` + - `cd ./FreeRTOS_TCP` + - `git submodule update --checkout --init --recursive` + +### To build and run coverity: +Go to the root directory of the FreeRTOS+TCP repo and run the following commands in terminal: +1. Update the compiler configuration in Coverity + ~~~ + cov-configure --force --compiler cc --comptype gcc + ~~~ +2. Create the build files using CMake in a `build` directory + ~~~ + cmake -B build -S test/Coverity + ~~~ +3. Go to the build directory and copy the coverity configuration file + ~~~ + cd build/ + cp ../tools/coverity_misra.config . + ~~~ +4. Build the (pseudo) application + ~~~ + cov-build --emit-complementary-info --dir cov-out make + ~~~ +5. Go to the Coverity output directory (`cov-out`) and begin Coverity static analysis + ~~~ + cd cov-out/ + cov-analyze --dir . --coding-standard-config ../coverity_misra.config --tu-pattern "file('.*/FreeRTOS-Plus-TCP/source/.*')" + ~~~ +6. (Optional) Format the errors in HTML format so that it is more readable + ~~~ + cov-format-errors --dir . --html-output html-output + ~~~ + +You should now have the HTML formatted violations list (ideally not reporting any violations) in a directory named `html-output`. From 53f95cf1719cc945b777cc54b799501dd1f082bc Mon Sep 17 00:00:00 2001 From: Aniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com> Date: Tue, 2 Aug 2022 13:55:05 -0700 Subject: [PATCH 14/22] Fix the title of README file in coverity --- test/Coverity/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Coverity/README.md b/test/Coverity/README.md index 33783b879a..3e7fbd32d7 100644 --- a/test/Coverity/README.md +++ b/test/Coverity/README.md @@ -1,4 +1,4 @@ -# Static code for FreeRTOS-Plus-TCP library using Coverity +# Static code analysis for FreeRTOS-Plus-TCP library This directory is made for the purpose of statically testing the MISRA c-2012 compliance of FreeRTOS+TCP using [Synopsys Coverity](https://www.synopsys.com/software-integrity/security-testing/static-analysis-sast.html) static analysis tool. To that end, this directory provides a [CMake](https://github.com/FreeRTOS/FreeRTOS-Plus-TCP/blob/main/test/Coverity/CMakeLists.txt) file and [configuration files](https://github.com/FreeRTOS/FreeRTOS-Plus-TCP/tree/main/test/Coverity/ConfigFiles) required to build an application for the tool to analyze. For details regarding the suppressed violations in the report (which can be generated using the following instructions), please see the [MISRA.md](https://github.com/FreeRTOS/FreeRTOS-Plus-TCP/blob/main/MISRA.md) file. From 400af4f13a68c8e9da11b06d217b9341960200ac Mon Sep 17 00:00:00 2001 From: Aniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com> Date: Wed, 3 Aug 2022 11:24:52 -0700 Subject: [PATCH 15/22] Addressed issue comments --- MISRA.md | 2 +- test/Coverity/README.md | 16 ++++++++-------- {tools => test/Coverity}/coverity_misra.config | 0 3 files changed, 9 insertions(+), 9 deletions(-) rename {tools => test/Coverity}/coverity_misra.config (100%) diff --git a/MISRA.md b/MISRA.md index 2cc207d03c..46258d8c75 100644 --- a/MISRA.md +++ b/MISRA.md @@ -6,7 +6,7 @@ Since the FreeRTOS-Plus-TCP library is designed for small-embedded devices, it n be efficient. To achieve that and to increase the performace of the IP-stack, it deviates from some MISRA rules. The specific deviations, suppressed inline, are listed below. -Additionally, [MISRA configuration file](https://github.com/FreeRTOS/FreeRTOS-Plus-TCP/blob/main/tools/coverity_misra.config) contains the project wide deviations. +Additionally, [MISRA configuration file](https://github.com/FreeRTOS/FreeRTOS-Plus-TCP/blob/main/test/Coverity/coverity_misra.config) contains the project wide deviations. ### Suppressed with Coverity Comments To find the violation references in the source files run grep on the source code diff --git a/test/Coverity/README.md b/test/Coverity/README.md index 3e7fbd32d7..48e8b56a39 100644 --- a/test/Coverity/README.md +++ b/test/Coverity/README.md @@ -1,22 +1,22 @@ # Static code analysis for FreeRTOS-Plus-TCP library -This directory is made for the purpose of statically testing the MISRA c-2012 compliance of FreeRTOS+TCP using [Synopsys Coverity](https://www.synopsys.com/software-integrity/security-testing/static-analysis-sast.html) static analysis tool. To that end, this directory provides a [CMake](https://github.com/FreeRTOS/FreeRTOS-Plus-TCP/blob/main/test/Coverity/CMakeLists.txt) file and [configuration files](https://github.com/FreeRTOS/FreeRTOS-Plus-TCP/tree/main/test/Coverity/ConfigFiles) required to build an application for the tool to analyze. +This directory is made for the purpose of statically testing the MISRA C:2012 compliance of FreeRTOS+TCP using [Synopsys Coverity](https://www.synopsys.com/software-integrity/security-testing/static-analysis-sast.html) static analysis tool. To that end, this directory provides a [CMake](https://github.com/FreeRTOS/FreeRTOS-Plus-TCP/blob/main/test/Coverity/CMakeLists.txt) file and [configuration files](https://github.com/FreeRTOS/FreeRTOS-Plus-TCP/tree/main/test/Coverity/ConfigFiles) required to build an application for the tool to analyze. -For details regarding the suppressed violations in the report (which can be generated using the following instructions), please see the [MISRA.md](https://github.com/FreeRTOS/FreeRTOS-Plus-TCP/blob/main/MISRA.md) file. +For details regarding the suppressed violations in the report (which can be generated using the instructions described below), please see the [MISRA.md](https://github.com/FreeRTOS/FreeRTOS-Plus-TCP/blob/main/MISRA.md) file. ## Getting Started ### Prerequisites -You can run this on any platform which is supported by Coverity. The list and other details can be found [here](https://sig-docs.synopsys.com/polaris/topics/c_coverity-compatible-platforms.html). +You can run this on a platform supported by Coverity. The list and other details can be found [here](https://sig-docs.synopsys.com/polaris/topics/c_coverity-compatible-platforms.html). To compile and run this project successfully, you must have the following: 1. CMake version > 3.13.0 (You can check whether you have this by typing `cmake --version`) - - Not found? Try `apt-get install cmake` + - Not found? For Debian based systems, including Ubuntu, try `apt-get install cmake` - Try the `cmake --version` command. If the version number is >= 3.13.0, skip to (4.) or else, continue. - You will need to get the latest CMake version using curl or wget (or similar command). - - Uninstall the current version of CMake using `sudo apt remove --purge --auto-remove cmake`. + - For Debian based systems, including Ubuntu, uninstall the current version of CMake using `sudo apt remove --purge --auto-remove cmake`. - Download the 3.13.0 version using `wget https://cmake.org/files/v3.13/cmake-3.13.0.tar.gz`. - Extract the cmake download using `tar -xzvf cmake-3.13.0.tar.gz`. - Go to the extracted folder (`cd cmake-3.13.0`) and run `./bootstrap`. - - Run `make -j$(nproc)' and then run `sudo make install`. + - Run `make -j$(nproc)` and then run `sudo make install`. - Check the version using `cmake --version` command. 2. GCC compiler - You can see the downloading and installation instructions [here](https://gcc.gnu.org/install/). @@ -26,7 +26,7 @@ To compile and run this project successfully, you must have the following: - `git submodule update --checkout --init --recursive` ### To build and run coverity: -Go to the root directory of the FreeRTOS+TCP repo and run the following commands in terminal: +Go to the root directory of the FreeRTOS-Plus-TCP repo and run the following commands in terminal: 1. Update the compiler configuration in Coverity ~~~ cov-configure --force --compiler cc --comptype gcc @@ -38,7 +38,7 @@ Go to the root directory of the FreeRTOS+TCP repo and run the following commands 3. Go to the build directory and copy the coverity configuration file ~~~ cd build/ - cp ../tools/coverity_misra.config . + cp ../test/Coverity/coverity_misra.config . ~~~ 4. Build the (pseudo) application ~~~ diff --git a/tools/coverity_misra.config b/test/Coverity/coverity_misra.config similarity index 100% rename from tools/coverity_misra.config rename to test/Coverity/coverity_misra.config From d1c147cf9fe38bcd5f8f366e90f4e1a8808dc8c6 Mon Sep 17 00:00:00 2001 From: Aniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com> Date: Wed, 3 Aug 2022 13:17:17 -0700 Subject: [PATCH 16/22] Update command --- test/Coverity/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Coverity/README.md b/test/Coverity/README.md index 48e8b56a39..f8bd305d30 100644 --- a/test/Coverity/README.md +++ b/test/Coverity/README.md @@ -49,9 +49,9 @@ Go to the root directory of the FreeRTOS-Plus-TCP repo and run the following com cd cov-out/ cov-analyze --dir . --coding-standard-config ../coverity_misra.config --tu-pattern "file('.*/FreeRTOS-Plus-TCP/source/.*')" ~~~ -6. (Optional) Format the errors in HTML format so that it is more readable +6. Format the errors in HTML format so that it is more readable while removing the FreeRTOS-Kernel directory from the report ~~~ - cov-format-errors --dir . --html-output html-output + cov-format-errors --dir . --exclude-files '(.*/FreeRTOS-Kernel/.*)' --html-output html-output ~~~ You should now have the HTML formatted violations list (ideally not reporting any violations) in a directory named `html-output`. From b48856d2e3e19ccf2d4065e71c2d236f6409c630 Mon Sep 17 00:00:00 2001 From: Aniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com> Date: Wed, 3 Aug 2022 14:48:57 -0700 Subject: [PATCH 17/22] Add details about remaining exception --- test/Coverity/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/Coverity/README.md b/test/Coverity/README.md index f8bd305d30..5cd3a38fa2 100644 --- a/test/Coverity/README.md +++ b/test/Coverity/README.md @@ -54,4 +54,5 @@ Go to the root directory of the FreeRTOS-Plus-TCP repo and run the following com cov-format-errors --dir . --exclude-files '(.*/FreeRTOS-Kernel/.*)' --html-output html-output ~~~ -You should now have the HTML formatted violations list (ideally not reporting any violations) in a directory named `html-output`. +You should now have the HTML formatted violations list in a directory named `html-output`. +With the current configuration and the provided project, you should see only one deviation from advisory rule 8.13 in file FreeRTOS_IP.c [here](https://github.com/alfred2g/FreeRTOS-Plus-TCP/blob/misra_remaining/source/FreeRTOS_IP.c#L236). This deviation has a justification outlined [here](https://github.com/FreeRTOS/FreeRTOS-Plus-TCP/blob/main/MISRA.md#rule-813). With that justification in place, a coverity suppression statement has been added to the code. However, even with that suppression in place, the coverity tool continues to report the deviation. Thus, as an excpetion, we have allowed the deviation to be reported in the HTML formatted report. If you find a way around it, please help us fix this by creating a pull-request in this repository. From 422169c07e7ad993b31ce7cb9a52fc932d80d921 Mon Sep 17 00:00:00 2001 From: Aniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com> Date: Mon, 8 Aug 2022 10:56:19 -0700 Subject: [PATCH 18/22] Move file to original location --- {test/Coverity => tools}/coverity_misra.config | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {test/Coverity => tools}/coverity_misra.config (100%) diff --git a/test/Coverity/coverity_misra.config b/tools/coverity_misra.config similarity index 100% rename from test/Coverity/coverity_misra.config rename to tools/coverity_misra.config From 33cb801a645219a92006b20543c851eb29dd8ef5 Mon Sep 17 00:00:00 2001 From: Aniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com> Date: Mon, 8 Aug 2022 11:14:47 -0700 Subject: [PATCH 19/22] Remove use of sudo in commands --- test/Coverity/README.md | 8 +++----- {tools => test/Coverity}/coverity_misra.config | 0 2 files changed, 3 insertions(+), 5 deletions(-) rename {tools => test/Coverity}/coverity_misra.config (100%) diff --git a/test/Coverity/README.md b/test/Coverity/README.md index 5cd3a38fa2..38ee884df6 100644 --- a/test/Coverity/README.md +++ b/test/Coverity/README.md @@ -6,17 +6,15 @@ For details regarding the suppressed violations in the report (which can be gene ## Getting Started ### Prerequisites You can run this on a platform supported by Coverity. The list and other details can be found [here](https://sig-docs.synopsys.com/polaris/topics/c_coverity-compatible-platforms.html). -To compile and run this project successfully, you must have the following: +To compile and run the Coverity target successfully, you must have the following: 1. CMake version > 3.13.0 (You can check whether you have this by typing `cmake --version`) - - Not found? For Debian based systems, including Ubuntu, try `apt-get install cmake` - - Try the `cmake --version` command. If the version number is >= 3.13.0, skip to (4.) or else, continue. - You will need to get the latest CMake version using curl or wget (or similar command). - - For Debian based systems, including Ubuntu, uninstall the current version of CMake using `sudo apt remove --purge --auto-remove cmake`. + - For Debian based systems, including Ubuntu, uninstall the current version of CMake using `apt remove --purge --auto-remove cmake`. - Download the 3.13.0 version using `wget https://cmake.org/files/v3.13/cmake-3.13.0.tar.gz`. - Extract the cmake download using `tar -xzvf cmake-3.13.0.tar.gz`. - Go to the extracted folder (`cd cmake-3.13.0`) and run `./bootstrap`. - - Run `make -j$(nproc)` and then run `sudo make install`. + - Run `make -j$(nproc)` and then run `make install`. - Check the version using `cmake --version` command. 2. GCC compiler - You can see the downloading and installation instructions [here](https://gcc.gnu.org/install/). diff --git a/tools/coverity_misra.config b/test/Coverity/coverity_misra.config similarity index 100% rename from tools/coverity_misra.config rename to test/Coverity/coverity_misra.config From acdac9e48f106aa44493a5af1a5991e8333080f5 Mon Sep 17 00:00:00 2001 From: Aniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com> Date: Mon, 8 Aug 2022 11:41:41 -0700 Subject: [PATCH 20/22] Fix links; added coverity version note --- test/Coverity/README.md | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/test/Coverity/README.md b/test/Coverity/README.md index 38ee884df6..6ef47a3a9a 100644 --- a/test/Coverity/README.md +++ b/test/Coverity/README.md @@ -1,7 +1,15 @@ # Static code analysis for FreeRTOS-Plus-TCP library -This directory is made for the purpose of statically testing the MISRA C:2012 compliance of FreeRTOS+TCP using [Synopsys Coverity](https://www.synopsys.com/software-integrity/security-testing/static-analysis-sast.html) static analysis tool. To that end, this directory provides a [CMake](https://github.com/FreeRTOS/FreeRTOS-Plus-TCP/blob/main/test/Coverity/CMakeLists.txt) file and [configuration files](https://github.com/FreeRTOS/FreeRTOS-Plus-TCP/tree/main/test/Coverity/ConfigFiles) required to build an application for the tool to analyze. +This directory is made for the purpose of statically testing the MISRA C:2012 compliance of FreeRTOS+TCP using +[Synopsys Coverity](https://www.synopsys.com/software-integrity/security-testing/static-analysis-sast.html) static analysis tool. +To that end, this directory provides a [CMake](https://github.com/FreeRTOS/FreeRTOS-Plus-TCP/blob/main/test/Coverity/CMakeLists.txt) +file and [configuration files](https://github.com/FreeRTOS/FreeRTOS-Plus-TCP/tree/main/test/Coverity/ConfigFiles) required to build +an application for the tool to analyze. -For details regarding the suppressed violations in the report (which can be generated using the instructions described below), please see the [MISRA.md](https://github.com/FreeRTOS/FreeRTOS-Plus-TCP/blob/main/MISRA.md) file. +**Note** +For generating the report, we have use Coverity version 2018.09. + +For details regarding the suppressed violations in the report (which can be generated using the instructions described below), please +see the [MISRA.md](https://github.com/FreeRTOS/FreeRTOS-Plus-TCP/blob/main/MISRA.md) file. ## Getting Started ### Prerequisites @@ -53,4 +61,9 @@ Go to the root directory of the FreeRTOS-Plus-TCP repo and run the following com ~~~ You should now have the HTML formatted violations list in a directory named `html-output`. -With the current configuration and the provided project, you should see only one deviation from advisory rule 8.13 in file FreeRTOS_IP.c [here](https://github.com/alfred2g/FreeRTOS-Plus-TCP/blob/misra_remaining/source/FreeRTOS_IP.c#L236). This deviation has a justification outlined [here](https://github.com/FreeRTOS/FreeRTOS-Plus-TCP/blob/main/MISRA.md#rule-813). With that justification in place, a coverity suppression statement has been added to the code. However, even with that suppression in place, the coverity tool continues to report the deviation. Thus, as an excpetion, we have allowed the deviation to be reported in the HTML formatted report. If you find a way around it, please help us fix this by creating a pull-request in this repository. +With the current configuration and the provided project, you should see only one deviation from advisory rule 8.13 in file +FreeRTOS_IP.c [here](https://github.com/FreeRTOS/FreeRTOS-Plus-TCP/blob/4ac10c84a384f0414f4aec0d4be0ee7c345f2f8b/source/FreeRTOS_IP.c#L236). +This deviation has a justification outlined [here](https://github.com/FreeRTOS/FreeRTOS-Plus-TCP/blob/main/MISRA.md#rule-813). With +that justification in place, a coverity suppression statement has been added to the code. However, even with that suppression in +place, the coverity tool continues to report the deviation. Thus, as an exception, we have allowed the deviation to be reported in +the HTML formatted report. If you find a way around it, please help us fix this by creating a pull-request in this repository. From 7364eb18e52ed88bafcb32746c97bd10b7f507ca Mon Sep 17 00:00:00 2001 From: Aniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com> Date: Mon, 8 Aug 2022 11:46:04 -0700 Subject: [PATCH 21/22] Update README.md --- test/Coverity/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Coverity/README.md b/test/Coverity/README.md index 6ef47a3a9a..f42bf175e5 100644 --- a/test/Coverity/README.md +++ b/test/Coverity/README.md @@ -5,8 +5,8 @@ To that end, this directory provides a [CMake](https://github.com/FreeRTOS/FreeR file and [configuration files](https://github.com/FreeRTOS/FreeRTOS-Plus-TCP/tree/main/test/Coverity/ConfigFiles) required to build an application for the tool to analyze. -**Note** -For generating the report, we have use Coverity version 2018.09. +> **Note** +For generating the report as outlined below, we have used Coverity version 2018.09. For details regarding the suppressed violations in the report (which can be generated using the instructions described below), please see the [MISRA.md](https://github.com/FreeRTOS/FreeRTOS-Plus-TCP/blob/main/MISRA.md) file. From 74c939fbacf437cba635a2bc18f5a0cc0c90afa8 Mon Sep 17 00:00:00 2001 From: Aniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com> Date: Mon, 8 Aug 2022 14:16:18 -0700 Subject: [PATCH 22/22] Remove CMake installation instructions --- test/Coverity/README.md | 7 ------- 1 file changed, 7 deletions(-) diff --git a/test/Coverity/README.md b/test/Coverity/README.md index 6ef47a3a9a..6912af5bce 100644 --- a/test/Coverity/README.md +++ b/test/Coverity/README.md @@ -17,13 +17,6 @@ You can run this on a platform supported by Coverity. The list and other details To compile and run the Coverity target successfully, you must have the following: 1. CMake version > 3.13.0 (You can check whether you have this by typing `cmake --version`) - - You will need to get the latest CMake version using curl or wget (or similar command). - - For Debian based systems, including Ubuntu, uninstall the current version of CMake using `apt remove --purge --auto-remove cmake`. - - Download the 3.13.0 version using `wget https://cmake.org/files/v3.13/cmake-3.13.0.tar.gz`. - - Extract the cmake download using `tar -xzvf cmake-3.13.0.tar.gz`. - - Go to the extracted folder (`cd cmake-3.13.0`) and run `./bootstrap`. - - Run `make -j$(nproc)` and then run `make install`. - - Check the version using `cmake --version` command. 2. GCC compiler - You can see the downloading and installation instructions [here](https://gcc.gnu.org/install/). 3. Download the repo and include the submodules using the following commands.