Then I had netcat listen to port 8000 using nc -l 8000. I just copied your current std net example and ran it like so:
cargo run --example client_async_embedded_io_async --features "embedded-io-async" -- --static-ip
I'm getting a ConnectionReset error. Are there common sources for the error?
I'm currently trying to implement embedded-io-async for embedded-async to use the websocket with
embassy-net
.I have followed the instructions in the README file to set up
tap0
:Then I had netcat listen to port
8000
usingnc -l 8000
. I just copied your current std net example and ran it like so:cargo run --example client_async_embedded_io_async --features "embedded-io-async" -- --static-ip
I'm getting a
ConnectionReset
error. Are there common sources for the error?Please let me know if you need more information.