Add retry support to quic_client_interop_test

gfe-relnote: n/a, test-only
PiperOrigin-RevId: 274644470
Change-Id: Ie68fd26ad452d6489d3fffeba88bcb2bf54e475d
diff --git a/quic/core/quic_connection_stats.cc b/quic/core/quic_connection_stats.cc
index c08f939..128bc93 100644
--- a/quic/core/quic_connection_stats.cc
+++ b/quic/core/quic_connection_stats.cc
@@ -47,7 +47,8 @@
       connection_creation_time(QuicTime::Zero()),
       blocked_frames_received(0),
       blocked_frames_sent(0),
-      num_connectivity_probing_received(0) {}
+      num_connectivity_probing_received(0),
+      retry_packet_processed(false) {}
 
 QuicConnectionStats::QuicConnectionStats(const QuicConnectionStats& other) =
     default;
@@ -94,7 +95,10 @@
   os << " blocked_frames_received: " << s.blocked_frames_received;
   os << " blocked_frames_sent: " << s.blocked_frames_sent;
   os << " num_connectivity_probing_received: "
-     << s.num_connectivity_probing_received << " }";
+     << s.num_connectivity_probing_received;
+  os << " retry_packet_processed: "
+     << (s.retry_packet_processed ? "yes" : "no");
+  os << " }";
 
   return os;
 }