Fix flag counts for quic_do_not_override_connection_id

In cl/251599233 I added more flag counts and forgot to update the other ones.

gfe-relnote: n/a, flag count only, protected by quic_do_not_override_connection_id
PiperOrigin-RevId: 251609520
Change-Id: I02cbeaed9bc2e426e82d34d5f53cf730d9bb4452
diff --git a/quic/core/quic_packets.cc b/quic/core/quic_packets.cc
index 35212b5..0e67689 100644
--- a/quic/core/quic_packets.cc
+++ b/quic/core/quic_packets.cc
@@ -43,7 +43,7 @@
       !GetQuicRestartFlag(quic_do_not_override_connection_id)) {
     return header.destination_connection_id;
   }
-  QUIC_RESTART_FLAG_COUNT_N(quic_do_not_override_connection_id, 3, 5);
+  QUIC_RESTART_FLAG_COUNT_N(quic_do_not_override_connection_id, 3, 7);
   return header.source_connection_id;
 }
 
@@ -54,7 +54,7 @@
       !GetQuicRestartFlag(quic_do_not_override_connection_id)) {
     return header.destination_connection_id_included;
   }
-  QUIC_RESTART_FLAG_COUNT_N(quic_do_not_override_connection_id, 4, 5);
+  QUIC_RESTART_FLAG_COUNT_N(quic_do_not_override_connection_id, 4, 7);
   return header.source_connection_id_included;
 }
 
@@ -64,7 +64,7 @@
       !GetQuicRestartFlag(quic_do_not_override_connection_id)) {
     return header.source_connection_id;
   }
-  QUIC_RESTART_FLAG_COUNT_N(quic_do_not_override_connection_id, 3, 5);
+  QUIC_RESTART_FLAG_COUNT_N(quic_do_not_override_connection_id, 7, 7);
   return header.destination_connection_id;
 }