mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
expose GSO usage through ConnectionState (#4083)
This commit is contained in:
parent
7599f81faf
commit
37a3c417a7
2 changed files with 3 additions and 0 deletions
|
@ -673,6 +673,7 @@ func (s *connection) ConnectionState() ConnectionState {
|
||||||
cs := s.cryptoStreamHandler.ConnectionState()
|
cs := s.cryptoStreamHandler.ConnectionState()
|
||||||
s.connState.TLS = cs.ConnectionState
|
s.connState.TLS = cs.ConnectionState
|
||||||
s.connState.Used0RTT = cs.Used0RTT
|
s.connState.Used0RTT = cs.Used0RTT
|
||||||
|
s.connState.GSO = s.conn.capabilities().GSO
|
||||||
return s.connState
|
return s.connState
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -345,4 +345,6 @@ type ConnectionState struct {
|
||||||
Used0RTT bool
|
Used0RTT bool
|
||||||
// Version is the QUIC version of the QUIC connection.
|
// Version is the QUIC version of the QUIC connection.
|
||||||
Version VersionNumber
|
Version VersionNumber
|
||||||
|
// GSO says if generic segmentation offload is used
|
||||||
|
GSO bool
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue