gfe-relnote: In QuicPacketReader, change the use of QuicSocketUtils to QuicUdpSocketApi. Protected by --gfe2_restart_flag_quic_remove_quic_socket_utils_from_packet_reader.
PiperOrigin-RevId: 291783340
Change-Id: I66bf260d8d963a8b362f5ffefd96b7a16f7c6c24
diff --git a/quic/core/quic_utils.h b/quic/core/quic_utils.h
index a0e0452..04858f0 100644
--- a/quic/core/quic_utils.h
+++ b/quic/core/quic_utils.h
@@ -243,6 +243,8 @@
return (MakeMask(bit) & mask_) != 0;
}
+ void ClearAll() { mask_ = 0; }
+
static constexpr size_t NumBits() { return 8 * sizeof(Mask); }
friend bool operator==(const BitMask& lhs, const BitMask& rhs) {