diff --git a/connection.go b/connection.go index c761080b..0df45e78 100644 --- a/connection.go +++ b/connection.go @@ -738,6 +738,7 @@ func (s *connection) ConnectionState() ConnectionState { return ConnectionState{ TLS: s.cryptoStreamHandler.ConnectionState(), SupportsDatagrams: s.supportsDatagrams(), + Version: s.version, } } diff --git a/interface.go b/interface.go index 78c731e2..611c3f56 100644 --- a/interface.go +++ b/interface.go @@ -331,6 +331,7 @@ type Config struct { type ConnectionState struct { TLS handshake.ConnectionState SupportsDatagrams bool + Version VersionNumber } // A Listener for incoming QUIC connections