How to achieve full duplex with esp-mbedtls? #49
-
I'm developing an async app using What I eventually did is write an
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
With the current The ideal way, would be to implement something like TcpSplit or simply a |
Beta Was this translation helpful? Give feedback.
-
Related to this, I'm using |
Beta Was this translation helpful? Give feedback.
With the current
esp-mbedtls
implementation, I think this is the best way to do this for now.The ideal way, would be to implement something like TcpSplit or simply a
split()
method onAsyncConnectedSession
, which would split the connection into aTlsReader
andTlsWriter
.