Since we use one socket for all QUIC connections (all QUICNetVCs share the socket), we cannot notify WRITE_READY appropriately. Currently we have a hack for this issue which reschedule WRITE_READY at the end of event handler.
If we could use connect() and bind(), each connections would have own sockets, and then we would be able to use the same mechanism as TCP connections.
Since we use one socket for all QUIC connections (all QUICNetVCs share the socket), we cannot notify WRITE_READY appropriately. Currently we have a hack for this issue which reschedule WRITE_READY at the end of event handler.
If we could use connect() and bind(), each connections would have own sockets, and then we would be able to use the same mechanism as TCP connections.