Replies: 1 comment 2 replies
-
So far, we have not had a use case for needing to handle TCP sessions inside of OT. That's why we simply disable TCP handling within OT on posix-based systems. If we have specific use cases for needing to handle TCP sessions both inside and outside of OT, then we'll need to figure out how to implement that. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
With current implementation of ip6 filtering and TCP handling, when
OPENTHREAD_CONFIG_TCP_ENABLE
is enabled, TCP messages will only be handled by the OT stack and will never be passed to the host.In
Ip6::PassToHost
:There are some cases where we hope the TCP messages being passed to the host. For example, I'm using
iperf3
. The iperf client will first send a TCP message when starting the test. With current implementation, the message will be blocked here and not go to the host. Shall we consider to add some mechanism to allow part of the TCP messages go to the host while the others will be handled by OT stack.@abtink @samkumar
Beta Was this translation helpful? Give feedback.
All reactions