Adds ENABLE_CONNECT_PROTOCOL to the list of known SETTINGS ids.

No functional change, as SETTINGS ids are passed through to the visitor without interpretation. This is mostly just documentation.

PiperOrigin-RevId: 381917500
diff --git a/http2/adapter/http2_protocol.h b/http2/adapter/http2_protocol.h
index efe4048..f2fc788 100644
--- a/http2/adapter/http2_protocol.h
+++ b/http2/adapter/http2_protocol.h
@@ -107,7 +107,8 @@
   INITIAL_WINDOW_SIZE = 0x4,
   MAX_FRAME_SIZE = 0x5,
   MAX_HEADER_LIST_SIZE = 0x6,
-  MAX_SETTING = MAX_HEADER_LIST_SIZE
+  ENABLE_CONNECT_PROTOCOL = 0x8,  // See RFC 8441
+  MAX_SETTING = ENABLE_CONNECT_PROTOCOL
 };
 
 // Returns a human-readable string representation of the given SETTINGS |id| for