Change Settings frame's setting id from 2 byte integer to variable length
integer.
gfe-relnote: n/a --under version 99, which is not turned on.
PiperOrigin-RevId: 244771758
Change-Id: I0e1b329ff0696255f5ca0c10087bf39090b81e76
diff --git a/quic/core/http/http_frames.h b/quic/core/http/http_frames.h
index ea11557..f1aa7ff 100644
--- a/quic/core/http/http_frames.h
+++ b/quic/core/http/http_frames.h
@@ -90,8 +90,7 @@
// affect how endpoints communicate, such as preferences and constraints
// on peer behavior
-using SettingsId = uint16_t;
-using SettingsMap = std::map<SettingsId, uint64_t>;
+using SettingsMap = std::map<uint64_t, uint64_t>;
struct SettingsFrame {
SettingsMap values;