Closed karthikgbbristol closed 6 months ago
What do you mean by "doesn't work"? What's the failure mode you're observing?
Hi @djc, to give more information on this. We observe that when creating a connection as a client, the connection can send a datagram but never receives nor returns from conn.Accept() method. It seems that the client is only unidirectional. What should be the correct way of having bidirectional datagram communication?
I don't see anything obviously wrong with your code. I don't know what you mean by "unidirectional" -- datagrams have one obvious direction, and there's not much else to them.
Closing as stale. Feel free to reopen with additional details if you're still having trouble.
Hi, I am new to both Rust and QUIC. So I might be doing something wrong.
I have two asyc tasks after creating a QUIC Connection as follows,
The first task reads from a TUNTAP device and writes a datagram on the QUIC Connection.
The second task reads from QUIC and writes to the TUN device.
I can see that the first task works, the second task doesn't. Can I use Datagrams in this way?