You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can see here and here that the flags are set to 0 on both cases.
I'd assume this requires some work on this implementation to provide the pre-allocated buffer.
Furthermore, as this implementation uses select, wouldn't it be better to simply enforce another flag FREERTOS_MSG_DONTWAIT, which does not iterate over recvfrom or sendto. I don't know if this would provide a significant improvement
The text was updated successfully, but these errors were encountered:
Hi,
I've been looking at the current implementation of the transport profile and it does not allow one to use the zero-copy feature from FreeRTOS+TCP.
These are examples from them
https://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_TCP/Networking_Tutorial_Zero_Copy_Receive.html
https://www.freertos.org/FreeRTOS-Plus/FreeRTOS_Plus_TCP/Networking_Tutorial_Zero_Copy_Send.html
You can see here and here that the flags are set to 0 on both cases.
I'd assume this requires some work on this implementation to provide the pre-allocated buffer.
Furthermore, as this implementation uses select, wouldn't it be better to simply enforce another flag
FREERTOS_MSG_DONTWAIT
, which does not iterate over recvfrom or sendto. I don't know if this would provide a significant improvementThe text was updated successfully, but these errors were encountered: