Move num_failed_authentication_packets_received to QuicConnectionStats and fix QuicConnectionTest.IntegrityLimitDoesNotApplyWithoutDecryptionKey

QuicConnectionTest.IntegrityLimitDoesNotApplyWithoutDecryptionKey wasn't testing what it claimed since use_tagging_decrypter() had installed a decrypter at the ENCRYPTION_FORWARD_SECURE level.

PiperOrigin-RevId: 338760351
Change-Id: I33079112cb566bfcb54d81c46caa56f512b72267
diff --git a/quic/core/quic_connection_stats.h b/quic/core/quic_connection_stats.h
index 87158b3..95cf61e 100644
--- a/quic/core/quic_connection_stats.h
+++ b/quic/core/quic_connection_stats.h
@@ -174,6 +174,10 @@
   // initiated key update, this is incremented when the keys are updated, before
   // the peer has acknowledged the key update.
   uint32_t key_update_count = 0;
+
+  // Counts the number of undecryptable packets received across all keys. Does
+  // not include packets where a decryption key for that level was absent.
+  QuicPacketCount num_failed_authentication_packets_received = 0;
 };
 
 }  // namespace quic