Current naming is a bit confusing if you don't know QUIC. E.g. a connection is a thing that can give you bidi streams, but from TCP you would expect that a connection is a bidi stream.
So maybe Connector for the thing that has open and Acceptor for the thing that has accept?
Also, there are some old type names AcceptBiXXX or OpenBiXXX that need to be changed. The Bi can go, connections are always bidirectional.
Current naming is a bit confusing if you don't know QUIC. E.g. a connection is a thing that can give you bidi streams, but from TCP you would expect that a connection is a bidi stream.
So maybe
Connectorfor the thing that has open andAcceptorfor the thing that has accept?Also, there are some old type names AcceptBiXXX or OpenBiXXX that need to be changed. The Bi can go, connections are always bidirectional.