Replies: 1 comment
-
It tells:
I think QUIC protocol is more transparent to the application so either endpoint of a stream could fine control the behavior of shutdown the stream of its direction and peer side of the stream could react differently. for
I understand not all the events from QUIC stack are interested to application (such like streams_available for single stream application ) so we will have a event mask to control which event should be reported to the owner. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'd like to have a discussion on a couple of the various quicer messages a caller receives. I've been doing a bit of quicer programming the last couple of weeks and I'm wondering why a user would ever be interested in the
peer_send_shutdown
and thesend_shutdown_complete
messages. Especially a caller that calls close_stream() is highly uninterested in these messages. If we want to mimic other close() functions, it should be less complex() on behalf of the user/caller. This exposes protocol details, it's like getting aFIN_sent
erlang message when executing gen_tcp:close().Opinions please?
Another message that I'm not using, and I'm wondering about the usecase for this message, is the
streams_available
message, what is the usecase.Beta Was this translation helpful? Give feedback.
All reactions