summaryrefslogtreecommitdiff
path: root/FreeRTOS-Plus/Demo/Common/Logging
diff options
context:
space:
mode:
authorTony Josi <tonyjosi@amazon.com>2023-05-12 10:39:24 +0000
committerGitHub <noreply@github.com>2023-05-12 16:09:24 +0530
commitcc463b15ed0766aef8ba3c3ef6084cc6e835e61a (patch)
tree0e28e390b630d40df5fd2248b39e66ef9c370f5e /FreeRTOS-Plus/Demo/Common/Logging
parentc6ebab30feb8d382938348abdfaf577df2ded06b (diff)
downloadfreertos-git-devIPv6.tar.gz
TCP demo changes post build separation (#1011)devIPv6
* adding sin_family to dest adddr for FreeRTOS_sendto * updating FreeRTOS_bind to input sin_family post build separation changes * updating FreeRTOS_connect to input sin_family post build separation changes * minor fix * updating copyright year * updating file headers * updating +TCP submodule * updating file headers * updating file headers * updating manifest file to have latest +TCP submodule hash
Diffstat (limited to 'FreeRTOS-Plus/Demo/Common/Logging')
-rw-r--r--FreeRTOS-Plus/Demo/Common/Logging/windows/Logging_WinSim.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/FreeRTOS-Plus/Demo/Common/Logging/windows/Logging_WinSim.c b/FreeRTOS-Plus/Demo/Common/Logging/windows/Logging_WinSim.c
index f9122e3d9..0b2244381 100644
--- a/FreeRTOS-Plus/Demo/Common/Logging/windows/Logging_WinSim.c
+++ b/FreeRTOS-Plus/Demo/Common/Logging/windows/Logging_WinSim.c
@@ -191,6 +191,8 @@ void vLoggingInit( BaseType_t xLogToStdout,
xPrintUDPAddress.sin_addr = ulRemoteIPAddress;
}
#endif /* defined( ipconfigIPv4_BACKWARD_COMPATIBLE ) && ( ipconfigIPv4_BACKWARD_COMPATIBLE == 0 ) */
+
+ xPrintUDPAddress.sin_family = FREERTOS_AF_INET;
}