-
Hello, I'm doing performance testing for my app by sending 1Gb of data to 50+ peers concurrently using API StreamSend. What are possible scenarios that may result in QUIC_STATUS_INVALID_STATE during StreamSend? Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
That error comes from here. In this code path, if the peer shutdown the connection or stream, you'd get |
Beta Was this translation helpful? Give feedback.
That error comes from here. In this code path, if the peer shutdown the connection or stream, you'd get
QUIC_STATUS_ABORTED
, but otherwise (i.e. you shutdown them) you getQUIC_STATUS_INVALID_STATE
.