Monitoring the QUIC version used for sessions with successful handshake.

Internal context: a healthy Bonnet may only establish a new QUIC connection every a few hours (e.g. 10) while an unhealthy Bonnet experiencing 1-side black-hole can try to establish ~50 QUIC connections per hour. As a result, a small fraction of unhealthy Bonnets can potentially skew the types (IETF QUIC vs gQUIC) of QUIC sessions created at the server side. This CL adds metrics to log the types (IETF QUIC vs gQUIC) of QUIC sessions finishing handshake at the server side, which will reflect the QUIC versions used by healthy Bonnet.

PiperOrigin-RevId: 518967612
diff --git a/quiche/quic/qbone/qbone_server_session.h b/quiche/quic/qbone/qbone_server_session.h
index 0468e7c..c313816 100644
--- a/quiche/quic/qbone/qbone_server_session.h
+++ b/quiche/quic/qbone/qbone_server_session.h
@@ -73,7 +73,7 @@
   std::unique_ptr<QuicCryptoStream> CreateCryptoStream() override;
 
   // Instantiates QboneServerControlStream.
-  void CreateControlStream();
+  virtual void CreateControlStream();
 
   // Instantiates QboneServerControlStream from the pending stream and returns a
   // pointer to it.