http3: add a ConnectionState method to the StreamCreator interface (#3600)

This commit is contained in:
Marten Seemann
2022-10-22 10:52:30 +01:00
committed by GitHub
parent 85fbfb9405
commit e496120c76

View File

@@ -26,6 +26,7 @@ type StreamCreator interface {
OpenUniStreamSync(context.Context) (quic.SendStream, error)
LocalAddr() net.Addr
RemoteAddr() net.Addr
ConnectionState() quic.ConnectionState
}
var _ StreamCreator = quic.Connection(nil)