grpc 1.62.0.pre1 → 1.63.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (974) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +415 -1962
  3. data/include/grpc/byte_buffer.h +1 -2
  4. data/include/grpc/census.h +1 -2
  5. data/include/grpc/compression.h +1 -2
  6. data/include/grpc/event_engine/endpoint_config.h +2 -2
  7. data/include/grpc/event_engine/event_engine.h +4 -2
  8. data/include/grpc/event_engine/extensible.h +2 -2
  9. data/include/grpc/event_engine/internal/memory_allocator_impl.h +1 -2
  10. data/include/grpc/event_engine/memory_allocator.h +1 -2
  11. data/include/grpc/event_engine/memory_request.h +2 -2
  12. data/include/grpc/event_engine/slice.h +1 -2
  13. data/include/grpc/event_engine/slice_buffer.h +1 -2
  14. data/include/grpc/grpc.h +1 -8
  15. data/include/grpc/grpc_audit_logging.h +1 -2
  16. data/include/grpc/grpc_crl_provider.h +2 -2
  17. data/include/grpc/grpc_cronet.h +1 -2
  18. data/include/grpc/grpc_posix.h +1 -2
  19. data/include/grpc/grpc_security.h +1 -2
  20. data/include/grpc/impl/call.h +1 -2
  21. data/include/grpc/impl/channel_arg_names.h +4 -0
  22. data/include/grpc/impl/grpc_types.h +1 -2
  23. data/include/grpc/impl/slice_type.h +2 -2
  24. data/include/grpc/module.modulemap +1 -0
  25. data/include/grpc/slice.h +1 -2
  26. data/include/grpc/slice_buffer.h +1 -2
  27. data/include/grpc/support/alloc.h +2 -2
  28. data/include/grpc/support/json.h +2 -2
  29. data/include/grpc/support/log.h +2 -2
  30. data/include/grpc/support/metrics.h +51 -0
  31. data/include/grpc/support/string_util.h +0 -1
  32. data/include/grpc/support/sync.h +0 -1
  33. data/include/grpc/support/sync_abseil.h +0 -1
  34. data/include/grpc/support/sync_custom.h +0 -1
  35. data/include/grpc/support/sync_generic.h +1 -2
  36. data/include/grpc/support/sync_posix.h +1 -2
  37. data/include/grpc/support/time.h +2 -2
  38. data/src/core/client_channel/client_channel_channelz.h +1 -1
  39. data/src/core/client_channel/client_channel_filter.cc +48 -38
  40. data/src/core/client_channel/client_channel_filter.h +6 -14
  41. data/src/core/client_channel/client_channel_internal.h +1 -1
  42. data/src/core/client_channel/client_channel_service_config.h +4 -3
  43. data/src/core/client_channel/config_selector.h +1 -1
  44. data/src/core/client_channel/dynamic_filters.h +1 -1
  45. data/src/core/client_channel/http_proxy_mapper.cc +3 -4
  46. data/src/core/client_channel/http_proxy_mapper.h +1 -1
  47. data/src/core/client_channel/retry_filter.h +1 -1
  48. data/src/core/client_channel/retry_filter_legacy_call_data.cc +1 -1
  49. data/src/core/client_channel/retry_filter_legacy_call_data.h +9 -9
  50. data/src/core/client_channel/retry_service_config.h +3 -3
  51. data/src/core/client_channel/retry_throttle.h +3 -2
  52. data/src/core/client_channel/subchannel.cc +2 -2
  53. data/src/core/client_channel/subchannel.h +7 -7
  54. data/src/core/client_channel/subchannel_pool_interface.h +1 -1
  55. data/src/core/client_channel/subchannel_stream_client.cc +1 -5
  56. data/src/core/client_channel/subchannel_stream_client.h +2 -2
  57. data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +3 -49
  58. data/src/core/ext/filters/backend_metrics/backend_metric_filter.h +0 -12
  59. data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +4 -10
  60. data/src/core/ext/filters/http/http_filters_plugin.cc +15 -35
  61. data/src/core/ext/filters/http/message_compress/compression_filter.cc +8 -7
  62. data/src/core/ext/filters/http/message_compress/compression_filter.h +2 -1
  63. data/src/core/ext/filters/http/server/http_server_filter.cc +1 -1
  64. data/src/core/ext/filters/message_size/message_size_filter.cc +15 -10
  65. data/src/core/ext/filters/rbac/rbac_filter.cc +4 -11
  66. data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +2 -2
  67. data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +1 -0
  68. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +4 -9
  69. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +38 -1
  70. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +27 -76
  71. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +23 -4
  72. data/src/core/ext/transport/chttp2/transport/context_list_entry.h +13 -10
  73. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +1 -49
  74. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +0 -2
  75. data/src/core/ext/transport/chttp2/transport/internal.h +4 -2
  76. data/src/core/ext/transport/chttp2/transport/parsing.cc +5 -10
  77. data/src/core/ext/transport/chttp2/transport/writing.cc +34 -31
  78. data/src/core/ext/transport/inproc/inproc_transport.cc +6 -4
  79. data/src/core/ext/transport/inproc/legacy_inproc_transport.cc +9 -8
  80. data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h +243 -230
  81. data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.c +42 -48
  82. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h +289 -265
  83. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c +62 -70
  84. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb.h +238 -226
  85. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.c +42 -50
  86. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h +937 -882
  87. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c +182 -208
  88. data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb.h +77 -76
  89. data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.c +9 -9
  90. data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb.h +86 -84
  91. data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.c +13 -13
  92. data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb.h +49 -42
  93. data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.c +13 -13
  94. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h +28 -24
  95. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c +7 -7
  96. data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb.h +28 -24
  97. data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.c +7 -7
  98. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h +357 -318
  99. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c +86 -86
  100. data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb.h +23 -20
  101. data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.c +5 -7
  102. data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb.h +40 -32
  103. data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.c +4 -4
  104. data/src/core/ext/upb-gen/envoy/annotations/resource.upb.h +24 -20
  105. data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.c +4 -4
  106. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h +517 -473
  107. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c +105 -125
  108. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +1207 -1108
  109. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +261 -289
  110. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h +163 -152
  111. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c +29 -43
  112. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +1265 -1137
  113. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +276 -346
  114. data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h +32 -28
  115. data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c +7 -9
  116. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h +212 -188
  117. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c +53 -69
  118. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +564 -508
  119. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +123 -131
  120. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +340 -309
  121. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +69 -83
  122. data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb.h +25 -22
  123. data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.c +5 -11
  124. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h +786 -688
  125. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +171 -189
  126. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h +367 -343
  127. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c +72 -80
  128. data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h +19 -16
  129. data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.c +4 -4
  130. data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb.h +23 -20
  131. data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.c +5 -7
  132. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb.h +77 -76
  133. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.c +9 -9
  134. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h +539 -471
  135. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c +125 -141
  136. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h +672 -632
  137. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c +137 -137
  138. data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h +44 -43
  139. data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.c +7 -7
  140. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h +35 -30
  141. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c +8 -8
  142. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +713 -637
  143. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +166 -208
  144. data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h +65 -61
  145. data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c +10 -12
  146. data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb.h +65 -61
  147. data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.c +11 -13
  148. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h +91 -83
  149. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c +17 -17
  150. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h +102 -93
  151. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c +22 -22
  152. data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb.h +25 -22
  153. data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.c +5 -11
  154. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h +162 -145
  155. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c +32 -40
  156. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h +314 -287
  157. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c +70 -74
  158. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h +330 -309
  159. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c +66 -66
  160. data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb.h +16 -14
  161. data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.c +3 -7
  162. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h +516 -478
  163. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c +110 -120
  164. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h +495 -468
  165. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c +89 -101
  166. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +88 -78
  167. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +19 -37
  168. data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb.h +41 -36
  169. data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.c +8 -26
  170. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h +46 -40
  171. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c +13 -13
  172. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h +307 -279
  173. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c +60 -64
  174. data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h +382 -358
  175. data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.c +70 -70
  176. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h +540 -490
  177. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +122 -136
  178. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +339 -327
  179. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +48 -70
  180. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +3407 -3145
  181. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +700 -752
  182. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h +100 -91
  183. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c +20 -20
  184. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +472 -430
  185. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +102 -116
  186. data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb.h +28 -24
  187. data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.c +7 -7
  188. data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h +23 -20
  189. data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c +5 -7
  190. data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h +42 -36
  191. data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.c +9 -13
  192. data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb.h +58 -55
  193. data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.c +9 -13
  194. data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h +146 -136
  195. data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.c +30 -30
  196. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +69 -65
  197. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +15 -15
  198. data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb.h +16 -14
  199. data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.c +3 -7
  200. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h +67 -58
  201. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c +14 -24
  202. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h +64 -56
  203. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c +14 -20
  204. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h +58 -50
  205. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c +16 -16
  206. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h +986 -832
  207. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c +269 -281
  208. data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +35 -35
  209. data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.c +3 -3
  210. data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h +102 -88
  211. data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.c +25 -25
  212. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h +224 -204
  213. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c +46 -62
  214. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +66 -58
  215. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c +14 -24
  216. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h +160 -153
  217. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c +28 -30
  218. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +51 -44
  219. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +12 -12
  220. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +1349 -1230
  221. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +293 -309
  222. data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h +16 -14
  223. data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.c +3 -7
  224. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +61 -54
  225. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.c +13 -23
  226. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +124 -108
  227. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c +29 -37
  228. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +14 -12
  229. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.c +3 -3
  230. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +66 -58
  231. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c +20 -20
  232. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +16 -14
  233. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.c +3 -7
  234. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +518 -493
  235. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +82 -108
  236. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +92 -80
  237. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c +23 -29
  238. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +497 -457
  239. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +110 -124
  240. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +58 -55
  241. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.c +9 -11
  242. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h +206 -185
  243. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +48 -64
  244. data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb.h +7 -6
  245. data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.c +1 -1
  246. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h +766 -710
  247. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c +140 -150
  248. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h +102 -98
  249. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c +17 -17
  250. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h +310 -288
  251. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c +67 -67
  252. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h +30 -26
  253. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c +8 -8
  254. data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h +77 -71
  255. data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.c +13 -13
  256. data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h +26 -22
  257. data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.c +6 -6
  258. data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb.h +70 -60
  259. data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.c +15 -15
  260. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h +77 -71
  261. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c +14 -14
  262. data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb.h +44 -43
  263. data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.c +7 -7
  264. data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h +28 -24
  265. data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.c +6 -6
  266. data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h +19 -16
  267. data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.c +4 -4
  268. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h +65 -56
  269. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c +15 -19
  270. data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb.h +14 -12
  271. data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.c +2 -2
  272. data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h +97 -89
  273. data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.c +18 -18
  274. data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h +63 -59
  275. data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.c +10 -10
  276. data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h +134 -121
  277. data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c +29 -29
  278. data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h +135 -121
  279. data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.c +26 -26
  280. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h +141 -122
  281. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c +37 -37
  282. data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h +49 -42
  283. data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.c +11 -11
  284. data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb.h +14 -12
  285. data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.c +3 -3
  286. data/src/core/ext/upb-gen/envoy/type/v3/percent.upb.h +35 -30
  287. data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.c +8 -8
  288. data/src/core/ext/upb-gen/envoy/type/v3/range.upb.h +63 -54
  289. data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.c +15 -15
  290. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h +58 -50
  291. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.c +14 -14
  292. data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb.h +28 -24
  293. data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.c +7 -7
  294. data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb.h +32 -28
  295. data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.c +7 -9
  296. data/src/core/ext/upb-gen/google/api/annotations.upb.h +10 -8
  297. data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.c +1 -1
  298. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +581 -524
  299. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +118 -146
  300. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +616 -544
  301. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +136 -152
  302. data/src/core/ext/upb-gen/google/api/http.upb.h +176 -162
  303. data/src/core/ext/upb-gen/google/api/http.upb_minitable.c +34 -34
  304. data/src/core/ext/upb-gen/google/api/httpbody.upb.h +49 -47
  305. data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.c +8 -8
  306. data/src/core/ext/upb-gen/google/protobuf/any.upb.h +21 -18
  307. data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.c +5 -5
  308. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb.h +2456 -2358
  309. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c +367 -486
  310. data/src/core/ext/upb-gen/google/protobuf/duration.upb.h +21 -18
  311. data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.c +5 -5
  312. data/src/core/ext/upb-gen/google/protobuf/empty.upb.h +7 -6
  313. data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.c +1 -1
  314. data/src/core/ext/upb-gen/google/protobuf/struct.upb.h +134 -116
  315. data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.c +27 -29
  316. data/src/core/ext/upb-gen/google/protobuf/timestamp.upb.h +21 -18
  317. data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.c +5 -5
  318. data/src/core/ext/upb-gen/google/protobuf/wrappers.upb.h +126 -108
  319. data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.c +27 -27
  320. data/src/core/ext/upb-gen/google/rpc/status.upb.h +49 -47
  321. data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.c +8 -8
  322. data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h +107 -92
  323. data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.c +27 -27
  324. data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h +77 -61
  325. data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.c +21 -21
  326. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h +577 -518
  327. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c +121 -127
  328. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h +46 -40
  329. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.c +10 -16
  330. data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb.h +28 -24
  331. data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.c +6 -6
  332. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h +265 -238
  333. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c +57 -63
  334. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h +96 -82
  335. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c +19 -19
  336. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h +496 -466
  337. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c +81 -85
  338. data/src/core/ext/upb-gen/udpa/annotations/migrate.upb.h +99 -82
  339. data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.c +16 -16
  340. data/src/core/ext/upb-gen/udpa/annotations/security.upb.h +31 -26
  341. data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.c +6 -6
  342. data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb.h +10 -8
  343. data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.c +1 -1
  344. data/src/core/ext/upb-gen/udpa/annotations/status.upb.h +31 -26
  345. data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.c +6 -6
  346. data/src/core/ext/upb-gen/udpa/annotations/versioning.upb.h +24 -20
  347. data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.c +4 -4
  348. data/src/core/ext/upb-gen/validate/validate.upb.h +2620 -2458
  349. data/src/core/ext/upb-gen/validate/validate.upb_minitable.c +363 -507
  350. data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb.h +99 -82
  351. data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.c +16 -16
  352. data/src/core/ext/upb-gen/xds/annotations/v3/security.upb.h +31 -26
  353. data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.c +6 -6
  354. data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb.h +10 -8
  355. data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.c +1 -1
  356. data/src/core/ext/upb-gen/xds/annotations/v3/status.upb.h +93 -78
  357. data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.c +17 -17
  358. data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb.h +24 -20
  359. data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.c +4 -4
  360. data/src/core/ext/upb-gen/xds/core/v3/authority.upb.h +14 -12
  361. data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.c +3 -3
  362. data/src/core/ext/upb-gen/xds/core/v3/cidr.upb.h +23 -20
  363. data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.c +5 -7
  364. data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h +58 -50
  365. data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.c +15 -15
  366. data/src/core/ext/upb-gen/xds/core/v3/context_params.upb.h +33 -23
  367. data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.c +8 -8
  368. data/src/core/ext/upb-gen/xds/core/v3/extension.upb.h +23 -20
  369. data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.c +5 -7
  370. data/src/core/ext/upb-gen/xds/core/v3/resource.upb.h +32 -28
  371. data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c +9 -9
  372. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h +103 -93
  373. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c +21 -21
  374. data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb.h +37 -32
  375. data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.c +9 -13
  376. data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h +127 -93
  377. data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.c +34 -34
  378. data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb.h +44 -43
  379. data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.c +6 -6
  380. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +23 -20
  381. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +6 -6
  382. data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb.h +79 -78
  383. data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.c +9 -11
  384. data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb.h +7 -6
  385. data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.c +1 -1
  386. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h +86 -84
  387. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c +13 -13
  388. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h +324 -285
  389. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c +74 -82
  390. data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb.h +237 -234
  391. data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.c +30 -36
  392. data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h +33 -28
  393. data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.c +7 -7
  394. data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h +97 -89
  395. data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c +18 -18
  396. data/src/core/ext/upb-gen/xds/type/v3/cel.upb.h +53 -46
  397. data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c +12 -18
  398. data/src/core/ext/upb-gen/xds/type/v3/range.upb.h +63 -54
  399. data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.c +15 -15
  400. data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb.h +23 -20
  401. data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.c +5 -7
  402. data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.h +2 -5
  403. data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.h +2 -5
  404. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.h +2 -5
  405. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.h +2 -5
  406. data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.h +2 -5
  407. data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.h +2 -5
  408. data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.h +2 -5
  409. data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.h +2 -5
  410. data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.h +2 -5
  411. data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.h +2 -5
  412. data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.h +2 -5
  413. data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.h +2 -5
  414. data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.h +2 -5
  415. data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.h +2 -5
  416. data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +2 -5
  417. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +2 -5
  418. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h +2 -5
  419. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.h +2 -5
  420. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.h +2 -5
  421. data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.h +2 -5
  422. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.h +2 -5
  423. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.h +2 -5
  424. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h +2 -5
  425. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.h +2 -5
  426. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.h +2 -5
  427. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.h +2 -5
  428. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.h +2 -5
  429. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.h +2 -5
  430. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.h +2 -5
  431. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.h +2 -5
  432. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.h +2 -5
  433. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.h +2 -5
  434. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h +2 -5
  435. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.h +2 -5
  436. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h +2 -5
  437. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h +2 -5
  438. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.h +2 -5
  439. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.h +2 -5
  440. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +2 -5
  441. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.h +2 -5
  442. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.h +2 -5
  443. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h +2 -5
  444. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.h +2 -5
  445. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.h +2 -5
  446. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.h +2 -5
  447. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.h +2 -5
  448. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.h +2 -5
  449. data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.h +2 -5
  450. data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.h +2 -5
  451. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.h +2 -5
  452. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.h +2 -5
  453. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.h +2 -5
  454. data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.h +2 -5
  455. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.h +2 -5
  456. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.h +2 -5
  457. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.h +2 -5
  458. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.h +2 -5
  459. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.h +2 -5
  460. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.h +2 -5
  461. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.h +2 -5
  462. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.h +2 -5
  463. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.h +2 -5
  464. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.h +2 -5
  465. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.h +2 -5
  466. data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.h +2 -5
  467. data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +2 -5
  468. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +2 -5
  469. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +2 -5
  470. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +2 -5
  471. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.h +2 -5
  472. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h +2 -5
  473. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +2 -5
  474. data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h +2 -5
  475. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +2 -5
  476. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +2 -5
  477. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +2 -5
  478. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +2 -5
  479. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +2 -5
  480. data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h +2 -5
  481. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.h +2 -5
  482. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.h +2 -5
  483. data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.h +2 -5
  484. data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.h +2 -5
  485. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h +2 -5
  486. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.h +2 -5
  487. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.h +2 -5
  488. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.h +2 -5
  489. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.h +2 -5
  490. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.h +2 -5
  491. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.h +2 -5
  492. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.h +2 -5
  493. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.h +2 -5
  494. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.h +2 -5
  495. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.h +2 -5
  496. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.h +2 -5
  497. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h +2 -5
  498. data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.h +2 -5
  499. data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.h +2 -5
  500. data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.h +2 -5
  501. data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.h +2 -5
  502. data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.h +2 -5
  503. data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.h +2 -5
  504. data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.h +2 -5
  505. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.h +2 -5
  506. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.h +2 -5
  507. data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.h +2 -5
  508. data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.h +2 -5
  509. data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.h +2 -5
  510. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.h +2 -5
  511. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h +2 -5
  512. data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.h +2 -5
  513. data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.h +2 -5
  514. data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.h +2 -5
  515. data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c +385 -384
  516. data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h +2 -5
  517. data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.h +2 -5
  518. data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.h +2 -5
  519. data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.h +2 -5
  520. data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.h +2 -5
  521. data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h +2 -5
  522. data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h +2 -5
  523. data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.h +2 -5
  524. data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +2 -5
  525. data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.h +2 -5
  526. data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.h +2 -5
  527. data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.h +2 -5
  528. data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.h +2 -5
  529. data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.h +2 -5
  530. data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.h +2 -5
  531. data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.h +2 -5
  532. data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.h +2 -5
  533. data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.h +2 -5
  534. data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.h +2 -5
  535. data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.h +2 -5
  536. data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.h +2 -5
  537. data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.h +2 -5
  538. data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.h +2 -5
  539. data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.h +2 -5
  540. data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.h +2 -5
  541. data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.h +2 -5
  542. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.h +2 -5
  543. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.h +2 -5
  544. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.h +2 -5
  545. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.h +2 -5
  546. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.h +2 -5
  547. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.h +2 -5
  548. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.h +2 -5
  549. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.h +2 -5
  550. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.h +2 -5
  551. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.h +2 -5
  552. data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.h +2 -5
  553. data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.h +2 -5
  554. data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h +2 -5
  555. data/src/core/ext/xds/certificate_provider_store.h +3 -2
  556. data/src/core/ext/xds/file_watcher_certificate_provider_factory.h +2 -2
  557. data/src/core/ext/xds/xds_api.h +1 -1
  558. data/src/core/ext/xds/xds_audit_logger_registry.cc +2 -1
  559. data/src/core/ext/xds/xds_audit_logger_registry.h +1 -1
  560. data/src/core/ext/xds/xds_bootstrap.h +2 -4
  561. data/src/core/ext/xds/xds_bootstrap_grpc.cc +38 -6
  562. data/src/core/ext/xds/xds_bootstrap_grpc.h +22 -7
  563. data/src/core/ext/xds/xds_certificate_provider.cc +2 -2
  564. data/src/core/ext/xds/xds_certificate_provider.h +1 -1
  565. data/src/core/ext/xds/xds_channel_stack_modifier.h +2 -1
  566. data/src/core/ext/xds/xds_client.cc +283 -103
  567. data/src/core/ext/xds/xds_client.h +41 -8
  568. data/src/core/ext/xds/xds_client_grpc.cc +184 -55
  569. data/src/core/ext/xds/xds_client_grpc.h +22 -8
  570. data/src/core/ext/xds/xds_client_stats.cc +2 -2
  571. data/src/core/ext/xds/xds_client_stats.h +14 -7
  572. data/src/core/ext/xds/xds_cluster.cc +9 -9
  573. data/src/core/ext/xds/xds_cluster.h +5 -2
  574. data/src/core/ext/xds/xds_cluster_specifier_plugin.h +2 -2
  575. data/src/core/ext/xds/xds_endpoint.cc +3 -2
  576. data/src/core/ext/xds/xds_endpoint.h +2 -2
  577. data/src/core/ext/xds/xds_health_status.h +2 -2
  578. data/src/core/ext/xds/xds_http_fault_filter.h +1 -1
  579. data/src/core/ext/xds/xds_http_filters.h +2 -2
  580. data/src/core/ext/xds/xds_http_rbac_filter.h +1 -1
  581. data/src/core/ext/xds/xds_http_stateful_session_filter.h +1 -1
  582. data/src/core/ext/xds/xds_lb_policy_registry.cc +5 -5
  583. data/src/core/ext/xds/xds_lb_policy_registry.h +1 -1
  584. data/src/core/ext/xds/xds_listener.h +1 -1
  585. data/src/core/ext/xds/xds_metrics.h +39 -0
  586. data/src/core/ext/xds/xds_route_config.h +1 -1
  587. data/src/core/ext/xds/xds_routing.h +1 -1
  588. data/src/core/ext/xds/xds_server_config_fetcher.cc +20 -19
  589. data/src/core/ext/xds/xds_transport_grpc.cc +17 -32
  590. data/src/core/ext/xds/xds_transport_grpc.h +6 -6
  591. data/src/core/lib/address_utils/parse_address.cc +8 -1
  592. data/src/core/lib/address_utils/sockaddr_utils.cc +8 -1
  593. data/src/core/lib/channel/call_finalization.h +1 -1
  594. data/src/core/lib/channel/call_tracer.cc +3 -4
  595. data/src/core/lib/channel/call_tracer.h +14 -12
  596. data/src/core/lib/channel/channel_stack.cc +9 -0
  597. data/src/core/lib/channel/channel_stack.h +5 -0
  598. data/src/core/lib/channel/channel_stack_builder_impl.cc +140 -0
  599. data/src/core/lib/channel/channelz.h +9 -6
  600. data/src/core/lib/channel/channelz_registry.h +1 -1
  601. data/src/core/lib/channel/connected_channel.cc +5 -8
  602. data/src/core/lib/channel/metrics.cc +396 -0
  603. data/src/core/lib/channel/metrics.h +406 -0
  604. data/src/core/lib/channel/promise_based_filter.h +63 -7
  605. data/src/core/lib/channel/server_call_tracer_filter.cc +2 -0
  606. data/src/core/lib/{surface/builtins.h → channel/server_call_tracer_filter.h} +7 -5
  607. data/src/core/lib/channel/tcp_tracer.h +4 -0
  608. data/src/core/lib/compression/compression_internal.cc +33 -0
  609. data/src/core/lib/compression/compression_internal.h +3 -0
  610. data/src/core/lib/config/config_vars.cc +6 -4
  611. data/src/core/lib/config/config_vars.h +4 -0
  612. data/src/core/lib/debug/stats_data.cc +269 -26
  613. data/src/core/lib/debug/stats_data.h +176 -0
  614. data/src/core/lib/event_engine/default_event_engine.h +0 -6
  615. data/src/core/lib/event_engine/event_engine_context.h +31 -0
  616. data/src/core/lib/event_engine/extensions/chaotic_good_extension.h +65 -0
  617. data/src/core/lib/event_engine/posix.h +8 -0
  618. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +1 -1
  619. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +1 -0
  620. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +7 -0
  621. data/src/core/lib/event_engine/tcp_socket_utils.cc +8 -1
  622. data/src/core/lib/event_engine/tcp_socket_utils.h +2 -2
  623. data/src/core/lib/event_engine/windows/win_socket.cc +4 -0
  624. data/src/core/lib/event_engine/windows/win_socket.h +3 -0
  625. data/src/core/lib/event_engine/windows/windows_engine.cc +41 -8
  626. data/src/core/lib/event_engine/windows/windows_listener.cc +54 -6
  627. data/src/core/lib/event_engine/windows/windows_listener.h +14 -0
  628. data/src/core/lib/experiments/config.cc +63 -45
  629. data/src/core/lib/experiments/experiments.cc +19 -238
  630. data/src/core/lib/experiments/experiments.h +4 -119
  631. data/src/core/lib/gpr/android/log.cc +1 -1
  632. data/src/core/lib/gpr/linux/log.cc +1 -1
  633. data/src/core/lib/gpr/log.cc +26 -0
  634. data/src/core/lib/gpr/posix/log.cc +1 -1
  635. data/src/core/lib/gpr/posix/time.cc +0 -60
  636. data/src/core/lib/gpr/windows/log.cc +1 -1
  637. data/src/core/lib/gprpp/down_cast.h +4 -4
  638. data/src/core/lib/gprpp/dual_ref_counted.h +17 -9
  639. data/src/core/lib/gprpp/load_file.cc +3 -1
  640. data/src/core/lib/gprpp/orphanable.h +5 -2
  641. data/src/core/lib/gprpp/ref_counted.h +5 -2
  642. data/src/core/lib/gprpp/ref_counted_ptr.h +2 -1
  643. data/src/core/lib/gprpp/time.h +6 -0
  644. data/src/core/lib/gprpp/uuid_v4.cc +37 -0
  645. data/src/core/lib/gprpp/uuid_v4.h +36 -0
  646. data/src/core/lib/iomgr/port.h +3 -0
  647. data/src/core/lib/iomgr/tcp_client_windows.cc +24 -5
  648. data/src/core/lib/iomgr/tcp_posix.cc +47 -0
  649. data/src/core/lib/iomgr/tcp_server_posix.cc +101 -87
  650. data/src/core/lib/iomgr/tcp_server_windows.cc +60 -9
  651. data/src/core/lib/iomgr/unix_sockets_posix.cc +13 -0
  652. data/src/core/lib/promise/activity.h +1 -0
  653. data/src/core/lib/promise/context.h +2 -2
  654. data/src/core/lib/promise/party.cc +33 -3
  655. data/src/core/lib/promise/party.h +12 -14
  656. data/src/core/lib/promise/sleep.cc +1 -1
  657. data/src/core/lib/promise/status_flag.h +8 -0
  658. data/src/core/lib/resource_quota/arena.h +3 -0
  659. data/src/core/lib/resource_quota/connection_quota.cc +71 -0
  660. data/src/core/lib/resource_quota/connection_quota.h +61 -0
  661. data/src/core/lib/security/authorization/evaluate_args.cc +6 -5
  662. data/src/core/lib/security/authorization/evaluate_args.h +3 -3
  663. data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +4 -7
  664. data/src/core/lib/security/authorization/grpc_server_authz_filter.h +1 -2
  665. data/src/core/lib/security/credentials/jwt/json_token.cc +8 -4
  666. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +11 -16
  667. data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.cc +17 -10
  668. data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h +7 -3
  669. data/src/core/lib/security/security_connector/load_system_roots.h +3 -0
  670. data/src/core/lib/security/security_connector/load_system_roots_fallback.cc +3 -2
  671. data/src/core/lib/security/security_connector/load_system_roots_windows.cc +87 -0
  672. data/src/core/lib/security/transport/auth_filters.h +0 -25
  673. data/src/core/lib/security/transport/security_handshaker.cc +18 -9
  674. data/src/core/lib/security/transport/security_handshaker.h +4 -2
  675. data/src/core/lib/slice/slice.cc +31 -5
  676. data/src/core/lib/slice/slice_buffer.cc +49 -11
  677. data/src/core/lib/slice/slice_buffer.h +14 -1
  678. data/src/core/lib/slice/slice_internal.h +7 -0
  679. data/src/core/lib/surface/call.cc +50 -55
  680. data/src/core/lib/surface/call.h +3 -3
  681. data/src/core/lib/surface/call_trace.h +0 -6
  682. data/src/core/lib/surface/channel.cc +104 -315
  683. data/src/core/lib/surface/channel.h +88 -107
  684. data/src/core/lib/surface/channel_create.cc +109 -0
  685. data/src/core/lib/surface/{builtins.cc → channel_create.h} +20 -15
  686. data/src/core/lib/surface/channel_init.cc +7 -6
  687. data/src/core/lib/surface/channel_init.h +18 -2
  688. data/src/core/lib/surface/init.cc +9 -14
  689. data/src/core/lib/surface/lame_client.cc +3 -28
  690. data/src/core/lib/surface/lame_client.h +7 -2
  691. data/src/core/lib/surface/legacy_channel.cc +414 -0
  692. data/src/core/lib/surface/legacy_channel.h +124 -0
  693. data/src/core/lib/surface/server.cc +20 -35
  694. data/src/core/lib/surface/server.h +10 -6
  695. data/src/core/lib/surface/server_interface.h +43 -0
  696. data/src/core/lib/surface/version.cc +2 -2
  697. data/src/core/lib/transport/batch_builder.cc +7 -16
  698. data/src/core/lib/transport/batch_builder.h +4 -6
  699. data/src/core/lib/transport/call_filters.cc +119 -19
  700. data/src/core/lib/transport/call_filters.h +339 -40
  701. data/src/core/lib/transport/call_spine.h +8 -3
  702. data/src/core/lib/transport/endpoint_info_handshaker.cc +80 -0
  703. data/src/core/lib/transport/endpoint_info_handshaker.h +37 -0
  704. data/src/core/lib/transport/handshaker_factory.h +1 -2
  705. data/src/core/lib/transport/metadata.cc +1 -1
  706. data/src/core/lib/transport/metadata_batch.cc +66 -5
  707. data/src/core/lib/transport/metadata_batch.h +12 -16
  708. data/src/core/lib/transport/metadata_info.cc +55 -0
  709. data/src/core/lib/transport/metadata_info.h +85 -0
  710. data/src/core/lib/transport/transport_op_string.cc +0 -8
  711. data/src/core/load_balancing/address_filtering.cc +1 -1
  712. data/src/core/load_balancing/address_filtering.h +1 -1
  713. data/src/core/{client_channel/backend_metric.cc → load_balancing/backend_metric_parser.cc} +1 -1
  714. data/src/core/{client_channel/backend_metric.h → load_balancing/backend_metric_parser.h} +3 -3
  715. data/src/core/load_balancing/child_policy_handler.cc +1 -1
  716. data/src/core/load_balancing/delegating_helper.h +8 -0
  717. data/src/core/load_balancing/endpoint_list.cc +1 -1
  718. data/src/core/load_balancing/grpclb/client_load_reporting_filter.h +3 -1
  719. data/src/core/load_balancing/grpclb/grpclb.cc +39 -44
  720. data/src/core/load_balancing/grpclb/grpclb_client_stats.h +1 -1
  721. data/src/core/load_balancing/health_check_client.cc +6 -6
  722. data/src/core/load_balancing/health_check_client_internal.h +4 -5
  723. data/src/core/load_balancing/lb_policy.h +13 -4
  724. data/src/core/load_balancing/lb_policy_registry.h +2 -2
  725. data/src/core/load_balancing/oob_backend_metric.cc +6 -6
  726. data/src/core/load_balancing/oob_backend_metric.h +1 -1
  727. data/src/core/load_balancing/oob_backend_metric_internal.h +6 -6
  728. data/src/core/load_balancing/outlier_detection/outlier_detection.cc +29 -29
  729. data/src/core/load_balancing/pick_first/pick_first.cc +70 -148
  730. data/src/core/load_balancing/priority/priority.cc +8 -7
  731. data/src/core/load_balancing/ring_hash/ring_hash.cc +8 -8
  732. data/src/core/load_balancing/ring_hash/ring_hash.h +1 -1
  733. data/src/core/load_balancing/rls/rls.cc +202 -79
  734. data/src/core/load_balancing/rls/rls.h +26 -0
  735. data/src/core/load_balancing/round_robin/round_robin.cc +7 -462
  736. data/src/core/load_balancing/subchannel_interface.h +3 -2
  737. data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.h +1 -1
  738. data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc +169 -964
  739. data/src/core/load_balancing/weighted_target/weighted_target.cc +13 -10
  740. data/src/core/load_balancing/weighted_target/weighted_target.h +28 -0
  741. data/src/core/load_balancing/xds/cds.cc +8 -8
  742. data/src/core/load_balancing/xds/xds_cluster_impl.cc +101 -57
  743. data/src/core/load_balancing/xds/xds_cluster_manager.cc +6 -6
  744. data/src/core/load_balancing/xds/xds_override_host.cc +15 -15
  745. data/src/core/load_balancing/xds/xds_override_host.h +1 -1
  746. data/src/core/load_balancing/xds/xds_wrr_locality.cc +9 -8
  747. data/src/core/plugin_registry/grpc_plugin_registry.cc +20 -3
  748. data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +0 -1
  749. data/src/core/resolver/binder/binder_resolver.cc +9 -2
  750. data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +8 -7
  751. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +2 -2
  752. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +3 -3
  753. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc +1 -1
  754. data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +2 -2
  755. data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.h +3 -1
  756. data/src/core/resolver/dns/native/dns_resolver.cc +3 -3
  757. data/src/core/resolver/endpoint_addresses.h +4 -4
  758. data/src/core/resolver/fake/fake_resolver.cc +2 -2
  759. data/src/core/resolver/fake/fake_resolver.h +1 -1
  760. data/src/core/resolver/google_c2p/google_c2p_resolver.cc +9 -4
  761. data/src/core/resolver/resolver_registry.h +2 -2
  762. data/src/core/resolver/sockaddr/sockaddr_resolver.cc +6 -6
  763. data/src/core/resolver/xds/xds_dependency_manager.cc +14 -9
  764. data/src/core/resolver/xds/xds_dependency_manager.h +5 -5
  765. data/src/core/resolver/xds/xds_resolver.cc +17 -16
  766. data/src/core/resolver/xds/xds_resolver_attributes.h +1 -1
  767. data/src/core/{client_channel → service_config}/service_config_channel_arg_filter.cc +1 -1
  768. data/src/core/service_config/service_config_parser.h +1 -1
  769. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +6 -4
  770. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +1 -0
  771. data/src/core/tsi/ssl/key_logging/ssl_key_logging.cc +1 -1
  772. data/src/core/tsi/ssl_transport_security.cc +198 -70
  773. data/src/core/tsi/ssl_transport_security_utils.cc +127 -0
  774. data/src/core/tsi/ssl_transport_security_utils.h +27 -0
  775. data/src/ruby/ext/grpc/extconf.rb +0 -3
  776. data/src/ruby/ext/grpc/rb_grpc.c +1 -0
  777. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +0 -2
  778. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +0 -3
  779. data/src/ruby/lib/grpc/generic/active_call.rb +8 -2
  780. data/src/ruby/lib/grpc/version.rb +1 -1
  781. data/src/ruby/spec/generic/rpc_server_spec.rb +25 -0
  782. data/third_party/abseil-cpp/absl/debugging/internal/examine_stack.cc +320 -0
  783. data/third_party/abseil-cpp/absl/debugging/internal/examine_stack.h +64 -0
  784. data/third_party/abseil-cpp/absl/log/absl_vlog_is_on.h +93 -0
  785. data/third_party/abseil-cpp/absl/log/globals.cc +178 -0
  786. data/third_party/abseil-cpp/absl/log/globals.h +218 -0
  787. data/third_party/abseil-cpp/absl/log/internal/append_truncated.h +47 -0
  788. data/third_party/abseil-cpp/absl/log/internal/conditions.cc +83 -0
  789. data/third_party/abseil-cpp/absl/log/internal/conditions.h +239 -0
  790. data/third_party/abseil-cpp/absl/log/internal/config.h +45 -0
  791. data/third_party/abseil-cpp/absl/log/internal/fnmatch.cc +73 -0
  792. data/third_party/abseil-cpp/absl/log/internal/fnmatch.h +35 -0
  793. data/third_party/abseil-cpp/absl/log/internal/globals.cc +145 -0
  794. data/third_party/abseil-cpp/absl/log/internal/globals.h +101 -0
  795. data/third_party/abseil-cpp/absl/log/internal/log_format.cc +205 -0
  796. data/third_party/abseil-cpp/absl/log/internal/log_format.h +78 -0
  797. data/third_party/abseil-cpp/absl/log/internal/log_impl.h +282 -0
  798. data/third_party/abseil-cpp/absl/log/internal/log_message.cc +633 -0
  799. data/third_party/abseil-cpp/absl/log/internal/log_message.h +375 -0
  800. data/third_party/abseil-cpp/absl/log/internal/log_sink_set.cc +296 -0
  801. data/third_party/abseil-cpp/absl/log/internal/log_sink_set.h +54 -0
  802. data/third_party/abseil-cpp/absl/log/internal/nullguard.cc +35 -0
  803. data/third_party/abseil-cpp/absl/log/internal/nullguard.h +88 -0
  804. data/third_party/abseil-cpp/absl/log/internal/nullstream.h +136 -0
  805. data/third_party/abseil-cpp/absl/log/internal/proto.cc +220 -0
  806. data/third_party/abseil-cpp/absl/log/internal/proto.h +288 -0
  807. data/third_party/abseil-cpp/absl/log/internal/strip.h +72 -0
  808. data/third_party/abseil-cpp/absl/log/internal/vlog_config.cc +340 -0
  809. data/third_party/abseil-cpp/absl/log/internal/vlog_config.h +163 -0
  810. data/third_party/abseil-cpp/absl/log/internal/voidify.h +44 -0
  811. data/third_party/abseil-cpp/absl/log/log.h +361 -0
  812. data/third_party/abseil-cpp/absl/log/log_entry.cc +41 -0
  813. data/third_party/abseil-cpp/absl/log/log_entry.h +221 -0
  814. data/third_party/abseil-cpp/absl/log/log_sink.cc +23 -0
  815. data/third_party/abseil-cpp/absl/log/log_sink.h +64 -0
  816. data/third_party/abseil-cpp/absl/log/log_sink_registry.h +61 -0
  817. data/third_party/abseil-cpp/absl/log/vlog_is_on.h +72 -0
  818. data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +1 -7
  819. data/third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.c +50 -39
  820. data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +2 -2
  821. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_des.c +15 -28
  822. data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +1 -1
  823. data/third_party/boringssl-with-bazel/src/crypto/des/des.c +45 -32
  824. data/third_party/boringssl-with-bazel/src/crypto/des/internal.h +24 -0
  825. data/third_party/boringssl-with-bazel/src/crypto/internal.h +12 -4
  826. data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +4 -0
  827. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_purp.c +40 -61
  828. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +24 -7
  829. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +36 -59
  830. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +4 -4
  831. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +13 -2
  832. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +10 -10
  833. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +2 -2
  834. data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +3 -3
  835. data/third_party/boringssl-with-bazel/src/include/openssl/pki/certificate.h +83 -0
  836. data/third_party/boringssl-with-bazel/src/include/openssl/pki/signature_verify_cache.h +41 -0
  837. data/third_party/boringssl-with-bazel/src/include/openssl/posix_time.h +6 -0
  838. data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +19 -10
  839. data/third_party/boringssl-with-bazel/src/include/openssl/span.h +14 -0
  840. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +16 -4
  841. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +196 -141
  842. data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +8 -1
  843. data/third_party/upb/upb/base/descriptor_constants.h +29 -2
  844. data/third_party/upb/upb/{wire/internal/swap.h → base/internal/endian.h} +12 -11
  845. data/third_party/upb/upb/base/status.h +1 -1
  846. data/third_party/upb/upb/base/status.hpp +5 -1
  847. data/third_party/upb/upb/base/string_view.h +7 -5
  848. data/third_party/upb/upb/base/upcast.h +29 -0
  849. data/third_party/upb/upb/generated_code_support.h +2 -1
  850. data/third_party/upb/upb/json/decode.c +103 -53
  851. data/third_party/upb/upb/json/decode.h +3 -26
  852. data/third_party/upb/upb/json/encode.c +3 -26
  853. data/third_party/upb/upb/json/encode.h +3 -26
  854. data/third_party/upb/upb/mem/arena.c +233 -106
  855. data/third_party/upb/upb/mem/arena.h +14 -66
  856. data/third_party/upb/upb/mem/arena.hpp +8 -4
  857. data/third_party/upb/upb/mem/internal/arena.h +76 -58
  858. data/third_party/upb/upb/message/accessors.c +19 -46
  859. data/third_party/upb/upb/message/accessors.h +208 -123
  860. data/third_party/upb/upb/message/array.c +55 -83
  861. data/third_party/upb/upb/message/array.h +18 -30
  862. data/third_party/upb/upb/message/compat.c +39 -0
  863. data/third_party/upb/upb/message/compat.h +41 -0
  864. data/third_party/upb/upb/message/copy.c +322 -0
  865. data/third_party/upb/upb/message/copy.h +56 -0
  866. data/third_party/upb/upb/message/internal/accessors.h +178 -178
  867. data/third_party/upb/upb/message/internal/array.h +80 -81
  868. data/third_party/upb/upb/message/internal/extension.c +63 -0
  869. data/third_party/upb/upb/message/internal/extension.h +12 -12
  870. data/third_party/upb/upb/message/internal/map.h +28 -41
  871. data/third_party/upb/upb/message/internal/map_entry.h +14 -39
  872. data/third_party/upb/upb/message/internal/map_sorter.h +18 -37
  873. data/third_party/upb/upb/message/internal/message.c +59 -0
  874. data/third_party/upb/upb/message/internal/message.h +26 -42
  875. data/third_party/upb/upb/message/internal/tagged_ptr.h +56 -0
  876. data/third_party/upb/upb/message/internal/types.h +7 -12
  877. data/third_party/upb/upb/message/map.c +3 -26
  878. data/third_party/upb/upb/message/map.h +5 -33
  879. data/third_party/upb/upb/message/map_gencode_util.h +3 -26
  880. data/third_party/upb/upb/message/map_sorter.c +22 -34
  881. data/third_party/upb/upb/message/message.c +28 -104
  882. data/third_party/upb/upb/message/message.h +4 -8
  883. data/third_party/upb/upb/message/tagged_ptr.h +14 -31
  884. data/third_party/upb/upb/message/value.h +3 -5
  885. data/third_party/upb/upb/mini_descriptor/build_enum.c +20 -11
  886. data/third_party/upb/upb/mini_descriptor/decode.c +127 -107
  887. data/third_party/upb/upb/mini_descriptor/decode.h +3 -8
  888. data/third_party/upb/upb/mini_descriptor/link.c +34 -22
  889. data/third_party/upb/upb/mini_descriptor/link.h +1 -1
  890. data/third_party/upb/upb/mini_table/enum.h +4 -6
  891. data/third_party/upb/upb/mini_table/extension.h +37 -0
  892. data/third_party/upb/upb/mini_table/extension_registry.c +9 -2
  893. data/third_party/upb/upb/mini_table/field.h +46 -60
  894. data/third_party/upb/upb/mini_table/file.h +44 -0
  895. data/third_party/upb/upb/mini_table/internal/enum.h +19 -20
  896. data/third_party/upb/upb/mini_table/internal/extension.h +34 -3
  897. data/third_party/upb/upb/mini_table/internal/field.h +136 -27
  898. data/third_party/upb/upb/mini_table/internal/file.h +47 -10
  899. data/third_party/upb/upb/mini_table/internal/message.c +17 -9
  900. data/third_party/upb/upb/mini_table/internal/message.h +94 -23
  901. data/third_party/upb/upb/mini_table/internal/size_log2.h +77 -0
  902. data/third_party/upb/upb/mini_table/internal/sub.h +39 -4
  903. data/third_party/upb/upb/mini_table/message.c +18 -19
  904. data/third_party/upb/upb/mini_table/message.h +29 -20
  905. data/third_party/upb/upb/mini_table/sub.h +40 -1
  906. data/third_party/upb/upb/port/def.inc +18 -0
  907. data/third_party/upb/upb/port/undef.inc +3 -0
  908. data/third_party/upb/upb/reflection/def.hpp +8 -4
  909. data/third_party/upb/upb/reflection/def_pool.c +81 -2
  910. data/third_party/upb/upb/reflection/def_pool.h +8 -0
  911. data/third_party/upb/upb/reflection/enum_def.c +42 -19
  912. data/third_party/upb/upb/reflection/enum_def.h +1 -0
  913. data/third_party/upb/upb/reflection/enum_value_def.c +43 -14
  914. data/third_party/upb/upb/reflection/enum_value_def.h +2 -0
  915. data/third_party/upb/upb/reflection/extension_range.c +13 -5
  916. data/third_party/upb/upb/reflection/extension_range.h +2 -0
  917. data/third_party/upb/upb/reflection/field_def.c +177 -130
  918. data/third_party/upb/upb/reflection/field_def.h +10 -1
  919. data/third_party/upb/upb/reflection/file_def.c +98 -9
  920. data/third_party/upb/upb/reflection/file_def.h +3 -0
  921. data/third_party/upb/upb/reflection/internal/def_builder.c +85 -7
  922. data/third_party/upb/upb/reflection/internal/def_builder.h +23 -0
  923. data/third_party/upb/upb/reflection/internal/enum_def.h +5 -4
  924. data/third_party/upb/upb/reflection/internal/enum_reserved_range.h +1 -1
  925. data/third_party/upb/upb/reflection/internal/enum_value_def.h +2 -1
  926. data/third_party/upb/upb/reflection/internal/extension_range.h +2 -2
  927. data/third_party/upb/upb/reflection/internal/field_def.h +11 -10
  928. data/third_party/upb/upb/reflection/internal/message_def.h +6 -3
  929. data/third_party/upb/upb/reflection/internal/method_def.h +5 -3
  930. data/third_party/upb/upb/reflection/internal/oneof_def.h +5 -3
  931. data/third_party/upb/upb/reflection/internal/service_def.h +5 -3
  932. data/third_party/upb/upb/reflection/internal/upb_edition_defaults.h +20 -0
  933. data/third_party/upb/upb/reflection/message.c +27 -12
  934. data/third_party/upb/upb/reflection/message.h +5 -5
  935. data/third_party/upb/upb/reflection/message_def.c +56 -27
  936. data/third_party/upb/upb/reflection/message_def.h +2 -0
  937. data/third_party/upb/upb/reflection/method_def.c +20 -9
  938. data/third_party/upb/upb/reflection/method_def.h +2 -0
  939. data/third_party/upb/upb/reflection/oneof_def.c +20 -11
  940. data/third_party/upb/upb/reflection/oneof_def.h +3 -1
  941. data/third_party/upb/upb/reflection/service_def.c +25 -13
  942. data/third_party/upb/upb/reflection/service_def.h +2 -0
  943. data/third_party/upb/upb/text/encode.c +126 -36
  944. data/third_party/upb/upb/wire/decode.c +214 -196
  945. data/third_party/upb/upb/wire/decode.h +10 -0
  946. data/third_party/upb/upb/wire/encode.c +105 -91
  947. data/third_party/upb/upb/wire/encode.h +4 -3
  948. data/third_party/upb/upb/wire/{decode_fast.c → internal/decode_fast.c} +53 -48
  949. data/third_party/upb/upb/wire/{decode_fast.h → internal/decode_fast.h} +6 -5
  950. data/third_party/upb/upb/wire/internal/{decode.h → decoder.h} +15 -31
  951. data/third_party/upb/upb/wire/internal/reader.h +61 -0
  952. data/third_party/upb/upb/wire/reader.c +9 -6
  953. data/third_party/upb/upb/wire/reader.h +18 -47
  954. data/third_party/utf8_range/utf8_range.c +467 -0
  955. data/third_party/utf8_range/utf8_range.h +9 -8
  956. metadata +83 -30
  957. data/src/core/client_channel/channel_connectivity.cc +0 -265
  958. data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +0 -318
  959. data/src/core/ext/filters/channel_idle/channel_idle_filter.h +0 -150
  960. data/src/core/ext/filters/http/message_compress/legacy_compression_filter.cc +0 -325
  961. data/src/core/ext/filters/http/message_compress/legacy_compression_filter.h +0 -139
  962. data/src/core/lib/gpr/wrap_memcpy.cc +0 -43
  963. data/src/core/lib/security/transport/legacy_server_auth_filter.cc +0 -244
  964. data/src/core/lib/slice/b64.cc +0 -239
  965. data/src/core/lib/slice/b64.h +0 -52
  966. data/src/core/lib/surface/call_trace.cc +0 -163
  967. data/src/core/lib/surface/channel_ping.cc +0 -69
  968. data/src/core/lib/transport/call_factory.cc +0 -41
  969. data/src/core/lib/transport/call_factory.h +0 -56
  970. data/src/core/load_balancing/subchannel_list.h +0 -455
  971. data/third_party/upb/upb/message/types.h +0 -15
  972. data/third_party/utf8_range/naive.c +0 -92
  973. data/third_party/utf8_range/range2-neon.c +0 -157
  974. data/third_party/utf8_range/range2-sse.c +0 -170
@@ -35,177 +35,177 @@
35
35
  #include "upb/port/def.inc"
36
36
 
37
37
  static const upb_MiniTableSub envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_submsgs[35] = {
38
- {.submsg = &envoy__extensions__filters__network__http_0connection_0manager__v3__Rds_msg_init},
39
- {.submsg = &envoy__config__route__v3__RouteConfiguration_msg_init},
40
- {.submsg = &envoy__extensions__filters__network__http_0connection_0manager__v3__HttpFilter_msg_init},
41
- {.submsg = &google__protobuf__BoolValue_msg_init},
42
- {.submsg = &envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__Tracing_msg_init},
43
- {.submsg = &envoy__config__core__v3__Http1ProtocolOptions_msg_init},
44
- {.submsg = &envoy__config__core__v3__Http2ProtocolOptions_msg_init},
45
- {.submsg = &google__protobuf__Duration_msg_init},
46
- {.submsg = &envoy__config__accesslog__v3__AccessLog_msg_init},
47
- {.submsg = &google__protobuf__BoolValue_msg_init},
48
- {.submsg = &google__protobuf__BoolValue_msg_init},
49
- {.submsg = &envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__SetCurrentClientCertDetails_msg_init},
50
- {.submsg = &envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__UpgradeConfig_msg_init},
51
- {.submsg = &google__protobuf__Duration_msg_init},
52
- {.submsg = &envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__InternalAddressConfig_msg_init},
53
- {.submsg = &google__protobuf__Duration_msg_init},
54
- {.submsg = &google__protobuf__Duration_msg_init},
55
- {.submsg = &google__protobuf__UInt32Value_msg_init},
56
- {.submsg = &google__protobuf__BoolValue_msg_init},
57
- {.submsg = &envoy__extensions__filters__network__http_0connection_0manager__v3__ScopedRoutes_msg_init},
58
- {.submsg = &envoy__config__core__v3__HttpProtocolOptions_msg_init},
59
- {.submsg = &envoy__extensions__filters__network__http_0connection_0manager__v3__RequestIDExtension_msg_init},
60
- {.submsg = &envoy__extensions__filters__network__http_0connection_0manager__v3__LocalReplyConfig_msg_init},
61
- {.submsg = &google__protobuf__BoolValue_msg_init},
62
- {.submsg = &google__protobuf__Duration_msg_init},
63
- {.submsg = &envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__PathNormalizationOptions_msg_init},
64
- {.submsg = &envoy__config__core__v3__Http3ProtocolOptions_msg_init},
65
- {.submsg = &envoy__config__core__v3__TypedExtensionConfig_msg_init},
66
- {.submsg = &envoy__config__core__v3__SchemeHeaderTransformation_msg_init},
67
- {.submsg = &envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__ProxyStatusConfig_msg_init},
68
- {.submsg = &envoy__config__core__v3__TypedExtensionConfig_msg_init},
69
- {.submsg = &envoy__config__core__v3__TypedExtensionConfig_msg_init},
70
- {.submsg = &google__protobuf__BoolValue_msg_init},
71
- {.submsg = &google__protobuf__Duration_msg_init},
72
- {.submsg = &envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__HcmAccessLogOptions_msg_init},
38
+ {.UPB_PRIVATE(submsg) = &envoy__extensions__filters__network__http_0connection_0manager__v3__Rds_msg_init},
39
+ {.UPB_PRIVATE(submsg) = &envoy__config__route__v3__RouteConfiguration_msg_init},
40
+ {.UPB_PRIVATE(submsg) = &envoy__extensions__filters__network__http_0connection_0manager__v3__HttpFilter_msg_init},
41
+ {.UPB_PRIVATE(submsg) = &google__protobuf__BoolValue_msg_init},
42
+ {.UPB_PRIVATE(submsg) = &envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__Tracing_msg_init},
43
+ {.UPB_PRIVATE(submsg) = &envoy__config__core__v3__Http1ProtocolOptions_msg_init},
44
+ {.UPB_PRIVATE(submsg) = &envoy__config__core__v3__Http2ProtocolOptions_msg_init},
45
+ {.UPB_PRIVATE(submsg) = &google__protobuf__Duration_msg_init},
46
+ {.UPB_PRIVATE(submsg) = &envoy__config__accesslog__v3__AccessLog_msg_init},
47
+ {.UPB_PRIVATE(submsg) = &google__protobuf__BoolValue_msg_init},
48
+ {.UPB_PRIVATE(submsg) = &google__protobuf__BoolValue_msg_init},
49
+ {.UPB_PRIVATE(submsg) = &envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__SetCurrentClientCertDetails_msg_init},
50
+ {.UPB_PRIVATE(submsg) = &envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__UpgradeConfig_msg_init},
51
+ {.UPB_PRIVATE(submsg) = &google__protobuf__Duration_msg_init},
52
+ {.UPB_PRIVATE(submsg) = &envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__InternalAddressConfig_msg_init},
53
+ {.UPB_PRIVATE(submsg) = &google__protobuf__Duration_msg_init},
54
+ {.UPB_PRIVATE(submsg) = &google__protobuf__Duration_msg_init},
55
+ {.UPB_PRIVATE(submsg) = &google__protobuf__UInt32Value_msg_init},
56
+ {.UPB_PRIVATE(submsg) = &google__protobuf__BoolValue_msg_init},
57
+ {.UPB_PRIVATE(submsg) = &envoy__extensions__filters__network__http_0connection_0manager__v3__ScopedRoutes_msg_init},
58
+ {.UPB_PRIVATE(submsg) = &envoy__config__core__v3__HttpProtocolOptions_msg_init},
59
+ {.UPB_PRIVATE(submsg) = &envoy__extensions__filters__network__http_0connection_0manager__v3__RequestIDExtension_msg_init},
60
+ {.UPB_PRIVATE(submsg) = &envoy__extensions__filters__network__http_0connection_0manager__v3__LocalReplyConfig_msg_init},
61
+ {.UPB_PRIVATE(submsg) = &google__protobuf__BoolValue_msg_init},
62
+ {.UPB_PRIVATE(submsg) = &google__protobuf__Duration_msg_init},
63
+ {.UPB_PRIVATE(submsg) = &envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__PathNormalizationOptions_msg_init},
64
+ {.UPB_PRIVATE(submsg) = &envoy__config__core__v3__Http3ProtocolOptions_msg_init},
65
+ {.UPB_PRIVATE(submsg) = &envoy__config__core__v3__TypedExtensionConfig_msg_init},
66
+ {.UPB_PRIVATE(submsg) = &envoy__config__core__v3__SchemeHeaderTransformation_msg_init},
67
+ {.UPB_PRIVATE(submsg) = &envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__ProxyStatusConfig_msg_init},
68
+ {.UPB_PRIVATE(submsg) = &envoy__config__core__v3__TypedExtensionConfig_msg_init},
69
+ {.UPB_PRIVATE(submsg) = &envoy__config__core__v3__TypedExtensionConfig_msg_init},
70
+ {.UPB_PRIVATE(submsg) = &google__protobuf__BoolValue_msg_init},
71
+ {.UPB_PRIVATE(submsg) = &google__protobuf__Duration_msg_init},
72
+ {.UPB_PRIVATE(submsg) = &envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__HcmAccessLogOptions_msg_init},
73
73
  };
74
74
 
75
75
  static const upb_MiniTableField envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager__fields[54] = {
76
- {1, 4, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
77
- {2, UPB_SIZE(200, 56), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
78
- {3, UPB_SIZE(192, 360), UPB_SIZE(-93, -25), 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
79
- {4, UPB_SIZE(192, 360), UPB_SIZE(-93, -25), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
80
- {5, UPB_SIZE(8, 72), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
81
- {6, UPB_SIZE(12, 80), 1, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
82
- {7, UPB_SIZE(16, 88), 2, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
83
- {8, UPB_SIZE(20, 96), 3, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
84
- {9, UPB_SIZE(24, 104), 4, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
85
- {10, UPB_SIZE(208, 112), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
86
- {12, UPB_SIZE(28, 128), 5, 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
87
- {13, UPB_SIZE(32, 136), 0, 8, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
88
- {14, UPB_SIZE(36, 144), 6, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
89
- {15, UPB_SIZE(40, 152), 7, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
90
- {16, UPB_SIZE(44, 8), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
91
- {17, UPB_SIZE(48, 160), 8, 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
92
- {18, UPB_SIZE(52, 12), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
93
- {19, UPB_SIZE(56, 16), 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
94
- {20, UPB_SIZE(60, 20), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
95
- {21, UPB_SIZE(61, 21), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
96
- {22, UPB_SIZE(216, 168), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
97
- {23, UPB_SIZE(64, 184), 0, 12, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
98
- {24, UPB_SIZE(68, 192), 9, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
99
- {25, UPB_SIZE(72, 200), 10, 14, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
100
- {26, UPB_SIZE(76, 208), 11, 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
101
- {28, UPB_SIZE(80, 216), 12, 16, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
102
- {29, UPB_SIZE(84, 224), 13, 17, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
103
- {30, UPB_SIZE(88, 232), 14, 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
104
- {31, UPB_SIZE(192, 360), UPB_SIZE(-93, -25), 19, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
105
- {32, UPB_SIZE(96, 28), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
106
- {33, UPB_SIZE(97, 29), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
107
- {34, UPB_SIZE(100, 32), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
108
- {35, UPB_SIZE(104, 240), 15, 20, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
109
- {36, UPB_SIZE(108, 248), 16, 21, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
110
- {37, UPB_SIZE(112, 36), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
111
- {38, UPB_SIZE(116, 256), 17, 22, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
112
- {39, UPB_SIZE(120, 37), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
113
- {40, UPB_SIZE(124, 264), 18, 23, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
114
- {41, UPB_SIZE(128, 272), 19, 24, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
115
- {42, UPB_SIZE(196, 368), UPB_SIZE(-133, -41), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
116
- {43, UPB_SIZE(136, 280), 20, 25, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
117
- {44, UPB_SIZE(140, 288), 21, 26, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
118
- {45, UPB_SIZE(144, 44), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
119
- {46, UPB_SIZE(148, 296), 0, 27, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
120
- {47, UPB_SIZE(152, 48), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
121
- {48, UPB_SIZE(156, 304), 22, 28, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
122
- {49, UPB_SIZE(160, 312), 23, 29, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
123
- {50, UPB_SIZE(164, 320), 24, 30, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
124
- {51, UPB_SIZE(168, 49), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
125
- {52, UPB_SIZE(172, 328), 0, 31, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
126
- {53, UPB_SIZE(176, 336), 25, 32, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
127
- {54, UPB_SIZE(180, 344), 26, 33, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
128
- {55, UPB_SIZE(184, 50), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
129
- {56, UPB_SIZE(188, 352), 27, 34, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
76
+ {1, 12, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
77
+ {2, UPB_SIZE(208, 64), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
78
+ {3, UPB_SIZE(200, 368), UPB_SIZE(-101, -33), 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
79
+ {4, UPB_SIZE(200, 368), UPB_SIZE(-101, -33), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
80
+ {5, UPB_SIZE(16, 80), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
81
+ {6, UPB_SIZE(20, 88), 64, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
82
+ {7, UPB_SIZE(24, 96), 65, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
83
+ {8, UPB_SIZE(28, 104), 66, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
84
+ {9, UPB_SIZE(32, 112), 67, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
85
+ {10, UPB_SIZE(216, 120), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
86
+ {12, UPB_SIZE(36, 136), 68, 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
87
+ {13, UPB_SIZE(40, 144), 0, 8, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
88
+ {14, UPB_SIZE(44, 152), 69, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
89
+ {15, UPB_SIZE(48, 160), 70, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
90
+ {16, UPB_SIZE(52, 16), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
91
+ {17, UPB_SIZE(56, 168), 71, 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
92
+ {18, UPB_SIZE(60, 20), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
93
+ {19, UPB_SIZE(64, 24), 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
94
+ {20, UPB_SIZE(68, 28), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
95
+ {21, UPB_SIZE(69, 29), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
96
+ {22, UPB_SIZE(224, 176), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
97
+ {23, UPB_SIZE(72, 192), 0, 12, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
98
+ {24, UPB_SIZE(76, 200), 72, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
99
+ {25, UPB_SIZE(80, 208), 73, 14, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
100
+ {26, UPB_SIZE(84, 216), 74, 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
101
+ {28, UPB_SIZE(88, 224), 75, 16, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
102
+ {29, UPB_SIZE(92, 232), 76, 17, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
103
+ {30, UPB_SIZE(96, 240), 77, 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
104
+ {31, UPB_SIZE(200, 368), UPB_SIZE(-101, -33), 19, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
105
+ {32, UPB_SIZE(104, 36), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
106
+ {33, UPB_SIZE(105, 37), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
107
+ {34, UPB_SIZE(108, 40), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
108
+ {35, UPB_SIZE(112, 248), 78, 20, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
109
+ {36, UPB_SIZE(116, 256), 79, 21, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
110
+ {37, UPB_SIZE(120, 44), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
111
+ {38, UPB_SIZE(124, 264), 80, 22, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
112
+ {39, UPB_SIZE(128, 45), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
113
+ {40, UPB_SIZE(132, 272), 81, 23, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
114
+ {41, UPB_SIZE(136, 280), 82, 24, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
115
+ {42, UPB_SIZE(204, 376), UPB_SIZE(-141, -49), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
116
+ {43, UPB_SIZE(144, 288), 83, 25, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
117
+ {44, UPB_SIZE(148, 296), 84, 26, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
118
+ {45, UPB_SIZE(152, 52), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
119
+ {46, UPB_SIZE(156, 304), 0, 27, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
120
+ {47, UPB_SIZE(160, 56), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
121
+ {48, UPB_SIZE(164, 312), 85, 28, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
122
+ {49, UPB_SIZE(168, 320), 86, 29, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
123
+ {50, UPB_SIZE(172, 328), 87, 30, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
124
+ {51, UPB_SIZE(176, 57), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
125
+ {52, UPB_SIZE(180, 336), 0, 31, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
126
+ {53, UPB_SIZE(184, 344), 88, 32, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
127
+ {54, UPB_SIZE(188, 352), 89, 33, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
128
+ {55, UPB_SIZE(192, 58), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
129
+ {56, UPB_SIZE(196, 360), 90, 34, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
130
130
  };
131
131
 
132
132
  const upb_MiniTable envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager_msg_init = {
133
133
  &envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_submsgs[0],
134
134
  &envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager__fields[0],
135
- UPB_SIZE(224, 376), 54, kUpb_ExtMode_NonExtendable, 10, UPB_FASTTABLE_MASK(248), 0,
135
+ UPB_SIZE(232, 384), 54, kUpb_ExtMode_NonExtendable, 10, UPB_FASTTABLE_MASK(248), 0,
136
136
  UPB_FASTTABLE_INIT({
137
137
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
138
- {0x000400003f000008, &upb_psv4_1bt},
139
- {0x003800003f000012, &upb_pss_1bt},
140
- {0x016800180300001a, &upb_pom_1bt_max64b},
141
- {0x0168001804010022, &upb_pom_1bt_maxmaxb},
142
- {0x004800003f02002a, &upb_prm_1bt_max64b},
143
- {0x0050000001030032, &upb_psm_1bt_maxmaxb},
144
- {0x005800000204003a, &upb_psm_1bt_max128b},
145
- {0x0060000003050042, &upb_psm_1bt_maxmaxb},
146
- {0x006800000406004a, &upb_psm_1bt_maxmaxb},
147
- {0x007000003f000052, &upb_pss_1bt},
148
- {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
149
- {0x0080000005070062, &upb_psm_1bt_maxmaxb},
150
- {0x008800003f08006a, &upb_prm_1bt_maxmaxb},
151
- {0x0090000006090072, &upb_psm_1bt_maxmaxb},
152
- {0x00980000070a007a, &upb_psm_1bt_maxmaxb},
153
- {0x000800003f000180, &upb_psv4_2bt},
154
- {0x00a00000080b018a, &upb_psm_2bt_max64b},
155
- {0x000c00003f000190, &upb_psb1_2bt},
156
- {0x001000003f000198, &upb_psv4_2bt},
157
- {0x001400003f0001a0, &upb_psb1_2bt},
158
- {0x001500003f0001a8, &upb_psb1_2bt},
159
- {0x00a800003f0001b2, &upb_pss_2bt},
160
- {0x00b800003f0c01ba, &upb_prm_2bt_max64b},
161
- {0x00c00000090d01c2, &upb_psm_2bt_maxmaxb},
162
- {0x00c800000a0e01ca, &upb_psm_2bt_max64b},
163
- {0x00d000000b0f01d2, &upb_psm_2bt_maxmaxb},
164
- {0x01180000141902da, &upb_psm_2bt_max64b},
165
- {0x00d800000c1001e2, &upb_psm_2bt_maxmaxb},
166
- {0x00e000000d1101ea, &upb_psm_2bt_maxmaxb},
167
- {0x00e800000e1201f2, &upb_psm_2bt_maxmaxb},
168
- {0x016800181f1301fa, &upb_pom_2bt_max64b},
138
+ {0x000c00003f000008, &upb_psv4_1bt},
139
+ {0x004000003f000012, &upb_pss_1bt},
140
+ {0x017000200300001a, &upb_pom_1bt_max64b},
141
+ {0x0170002004010022, &upb_pom_1bt_maxmaxb},
142
+ {0x005000003f02002a, &upb_prm_1bt_max64b},
143
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
144
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
145
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
146
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
147
+ {0x007800003f000052, &upb_pss_1bt},
148
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
149
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
150
+ {0x009000003f08006a, &upb_prm_1bt_maxmaxb},
151
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
152
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
153
+ {0x001000003f000180, &upb_psv4_2bt},
154
+ {0x002500003f000288, &upb_psb1_2bt},
155
+ {0x001400003f000190, &upb_psb1_2bt},
156
+ {0x001800003f000198, &upb_psv4_2bt},
157
+ {0x001c00003f0001a0, &upb_psb1_2bt},
158
+ {0x001d00003f0001a8, &upb_psb1_2bt},
159
+ {0x00b000003f0001b2, &upb_pss_2bt},
160
+ {0x00c000003f0c01ba, &upb_prm_2bt_max64b},
161
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
162
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
163
+ {0x017800302a0002d0, &upb_pob1_2bt},
164
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
165
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
166
+ {0x003400003f0002e8, &upb_psv4_2bt},
167
+ {0x013000003f1b02f2, &upb_prm_2bt_maxmaxb},
168
+ {0x017000201f1301fa, &upb_pom_2bt_max64b},
169
169
  })
170
170
  };
171
171
 
172
172
  static const upb_MiniTableSub envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing_submsgs[7] = {
173
- {.submsg = &envoy__type__v3__Percent_msg_init},
174
- {.submsg = &envoy__type__v3__Percent_msg_init},
175
- {.submsg = &envoy__type__v3__Percent_msg_init},
176
- {.submsg = &google__protobuf__UInt32Value_msg_init},
177
- {.submsg = &envoy__type__tracing__v3__CustomTag_msg_init},
178
- {.submsg = &envoy__config__trace__v3__Tracing__Http_msg_init},
179
- {.submsg = &google__protobuf__BoolValue_msg_init},
173
+ {.UPB_PRIVATE(submsg) = &envoy__type__v3__Percent_msg_init},
174
+ {.UPB_PRIVATE(submsg) = &envoy__type__v3__Percent_msg_init},
175
+ {.UPB_PRIVATE(submsg) = &envoy__type__v3__Percent_msg_init},
176
+ {.UPB_PRIVATE(submsg) = &google__protobuf__UInt32Value_msg_init},
177
+ {.UPB_PRIVATE(submsg) = &envoy__type__tracing__v3__CustomTag_msg_init},
178
+ {.UPB_PRIVATE(submsg) = &envoy__config__trace__v3__Tracing__Http_msg_init},
179
+ {.UPB_PRIVATE(submsg) = &google__protobuf__BoolValue_msg_init},
180
180
  };
181
181
 
182
182
  static const upb_MiniTableField envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing__fields[8] = {
183
- {3, UPB_SIZE(4, 8), 1, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
184
- {4, UPB_SIZE(8, 16), 2, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
185
- {5, UPB_SIZE(12, 24), 3, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
186
- {6, UPB_SIZE(16, 1), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
187
- {7, UPB_SIZE(20, 32), 4, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
188
- {8, UPB_SIZE(24, 40), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
189
- {9, UPB_SIZE(28, 48), 5, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
190
- {10, UPB_SIZE(32, 56), 6, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
183
+ {3, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
184
+ {4, UPB_SIZE(16, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
185
+ {5, UPB_SIZE(20, 32), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
186
+ {6, UPB_SIZE(24, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
187
+ {7, UPB_SIZE(28, 40), 67, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
188
+ {8, UPB_SIZE(32, 48), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
189
+ {9, UPB_SIZE(36, 56), 68, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
190
+ {10, UPB_SIZE(40, 64), 69, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
191
191
  };
192
192
 
193
193
  const upb_MiniTable envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__Tracing_msg_init = {
194
194
  &envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing_submsgs[0],
195
195
  &envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing__fields[0],
196
- UPB_SIZE(40, 64), 8, kUpb_ExtMode_NonExtendable, 0, UPB_FASTTABLE_MASK(120), 0,
196
+ UPB_SIZE(48, 72), 8, kUpb_ExtMode_NonExtendable, 0, UPB_FASTTABLE_MASK(120), 0,
197
197
  UPB_FASTTABLE_INIT({
198
198
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
199
199
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
200
200
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
201
- {0x000800000100001a, &upb_psm_1bt_maxmaxb},
202
- {0x0010000002010022, &upb_psm_1bt_maxmaxb},
203
- {0x001800000302002a, &upb_psm_1bt_maxmaxb},
204
- {0x000100003f000030, &upb_psb1_1bt},
205
- {0x002000000403003a, &upb_psm_1bt_maxmaxb},
206
- {0x002800003f040042, &upb_prm_1bt_maxmaxb},
207
- {0x003000000505004a, &upb_psm_1bt_maxmaxb},
208
- {0x0038000006060052, &upb_psm_1bt_maxmaxb},
201
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
202
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
203
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
204
+ {0x000900003f000030, &upb_psb1_1bt},
205
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
206
+ {0x003000003f040042, &upb_prm_1bt_maxmaxb},
207
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
208
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
209
209
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
210
210
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
211
211
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
@@ -215,327 +215,319 @@ const upb_MiniTable envoy__extensions__filters__network__http_0connection_0manag
215
215
  };
216
216
 
217
217
  static const upb_MiniTableSub envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_InternalAddressConfig_submsgs[1] = {
218
- {.submsg = &envoy__config__core__v3__CidrRange_msg_init},
218
+ {.UPB_PRIVATE(submsg) = &envoy__config__core__v3__CidrRange_msg_init},
219
219
  };
220
220
 
221
221
  static const upb_MiniTableField envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_InternalAddressConfig__fields[2] = {
222
- {1, 0, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
223
- {2, UPB_SIZE(4, 8), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
222
+ {1, 8, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
223
+ {2, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
224
224
  };
225
225
 
226
226
  const upb_MiniTable envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__InternalAddressConfig_msg_init = {
227
227
  &envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_InternalAddressConfig_submsgs[0],
228
228
  &envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_InternalAddressConfig__fields[0],
229
- UPB_SIZE(8, 16), 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(24), 0,
229
+ UPB_SIZE(16, 24), 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(24), 0,
230
230
  UPB_FASTTABLE_INIT({
231
231
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
232
- {0x000000003f000008, &upb_psb1_1bt},
233
- {0x000800003f000012, &upb_prm_1bt_maxmaxb},
232
+ {0x000800003f000008, &upb_psb1_1bt},
233
+ {0x001000003f000012, &upb_prm_1bt_maxmaxb},
234
234
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
235
235
  })
236
236
  };
237
237
 
238
238
  static const upb_MiniTableSub envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails_submsgs[1] = {
239
- {.submsg = &google__protobuf__BoolValue_msg_init},
239
+ {.UPB_PRIVATE(submsg) = &google__protobuf__BoolValue_msg_init},
240
240
  };
241
241
 
242
242
  static const upb_MiniTableField envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails__fields[5] = {
243
- {1, UPB_SIZE(4, 8), 1, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
244
- {3, UPB_SIZE(8, 1), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
245
- {4, UPB_SIZE(9, 2), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
246
- {5, UPB_SIZE(10, 3), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
247
- {6, UPB_SIZE(11, 4), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
243
+ {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
244
+ {3, UPB_SIZE(16, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
245
+ {4, UPB_SIZE(17, 10), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
246
+ {5, UPB_SIZE(18, 11), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
247
+ {6, UPB_SIZE(19, 12), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
248
248
  };
249
249
 
250
250
  const upb_MiniTable envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__SetCurrentClientCertDetails_msg_init = {
251
251
  &envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails_submsgs[0],
252
252
  &envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails__fields[0],
253
- 16, 5, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(56), 0,
253
+ 24, 5, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(56), 0,
254
254
  UPB_FASTTABLE_INIT({
255
255
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
256
- {0x000800000100000a, &upb_psm_1bt_maxmaxb},
257
256
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
258
- {0x000100003f000018, &upb_psb1_1bt},
259
- {0x000200003f000020, &upb_psb1_1bt},
260
- {0x000300003f000028, &upb_psb1_1bt},
261
- {0x000400003f000030, &upb_psb1_1bt},
257
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
258
+ {0x000900003f000018, &upb_psb1_1bt},
259
+ {0x000a00003f000020, &upb_psb1_1bt},
260
+ {0x000b00003f000028, &upb_psb1_1bt},
261
+ {0x000c00003f000030, &upb_psb1_1bt},
262
262
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
263
263
  })
264
264
  };
265
265
 
266
266
  static const upb_MiniTableSub envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_UpgradeConfig_submsgs[2] = {
267
- {.submsg = &envoy__extensions__filters__network__http_0connection_0manager__v3__HttpFilter_msg_init},
268
- {.submsg = &google__protobuf__BoolValue_msg_init},
267
+ {.UPB_PRIVATE(submsg) = &envoy__extensions__filters__network__http_0connection_0manager__v3__HttpFilter_msg_init},
268
+ {.UPB_PRIVATE(submsg) = &google__protobuf__BoolValue_msg_init},
269
269
  };
270
270
 
271
271
  static const upb_MiniTableField envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_UpgradeConfig__fields[3] = {
272
- {1, UPB_SIZE(12, 8), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
273
- {2, UPB_SIZE(4, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
274
- {3, UPB_SIZE(8, 32), 1, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
272
+ {1, UPB_SIZE(20, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
273
+ {2, UPB_SIZE(12, 32), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
274
+ {3, UPB_SIZE(16, 40), 64, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
275
275
  };
276
276
 
277
277
  const upb_MiniTable envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__UpgradeConfig_msg_init = {
278
278
  &envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_UpgradeConfig_submsgs[0],
279
279
  &envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_UpgradeConfig__fields[0],
280
- UPB_SIZE(24, 40), 3, kUpb_ExtMode_NonExtendable, 3, UPB_FASTTABLE_MASK(24), 0,
280
+ UPB_SIZE(32, 48), 3, kUpb_ExtMode_NonExtendable, 3, UPB_FASTTABLE_MASK(24), 0,
281
281
  UPB_FASTTABLE_INIT({
282
282
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
283
- {0x000800003f00000a, &upb_pss_1bt},
284
- {0x001800003f000012, &upb_prm_1bt_max64b},
285
- {0x002000000101001a, &upb_psm_1bt_maxmaxb},
283
+ {0x001000003f00000a, &upb_pss_1bt},
284
+ {0x002000003f000012, &upb_prm_1bt_max64b},
285
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
286
286
  })
287
287
  };
288
288
 
289
289
  static const upb_MiniTableSub envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_PathNormalizationOptions_submsgs[2] = {
290
- {.submsg = &envoy__type__http__v3__PathTransformation_msg_init},
291
- {.submsg = &envoy__type__http__v3__PathTransformation_msg_init},
290
+ {.UPB_PRIVATE(submsg) = &envoy__type__http__v3__PathTransformation_msg_init},
291
+ {.UPB_PRIVATE(submsg) = &envoy__type__http__v3__PathTransformation_msg_init},
292
292
  };
293
293
 
294
294
  static const upb_MiniTableField envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_PathNormalizationOptions__fields[2] = {
295
- {1, UPB_SIZE(4, 8), 1, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
296
- {2, UPB_SIZE(8, 16), 2, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
295
+ {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
296
+ {2, UPB_SIZE(16, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
297
297
  };
298
298
 
299
299
  const upb_MiniTable envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__PathNormalizationOptions_msg_init = {
300
300
  &envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_PathNormalizationOptions_submsgs[0],
301
301
  &envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_PathNormalizationOptions__fields[0],
302
- UPB_SIZE(16, 24), 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(24), 0,
303
- UPB_FASTTABLE_INIT({
304
- {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
305
- {0x000800000100000a, &upb_psm_1bt_maxmaxb},
306
- {0x0010000002010012, &upb_psm_1bt_maxmaxb},
307
- {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
308
- })
302
+ UPB_SIZE(24, 32), 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(255), 0,
309
303
  };
310
304
 
311
305
  static const upb_MiniTableField envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_ProxyStatusConfig__fields[6] = {
312
- {1, 0, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
313
- {2, 1, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
314
- {3, 2, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
315
- {4, 3, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
316
- {5, 8, -5, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
317
- {6, 8, -5, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
306
+ {1, 8, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
307
+ {2, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
308
+ {3, 10, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
309
+ {4, 11, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
310
+ {5, 16, -13, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
311
+ {6, 16, -13, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
318
312
  };
319
313
 
320
314
  const upb_MiniTable envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__ProxyStatusConfig_msg_init = {
321
315
  NULL,
322
316
  &envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_ProxyStatusConfig__fields[0],
323
- UPB_SIZE(16, 24), 6, kUpb_ExtMode_NonExtendable, 6, UPB_FASTTABLE_MASK(56), 0,
317
+ UPB_SIZE(24, 32), 6, kUpb_ExtMode_NonExtendable, 6, UPB_FASTTABLE_MASK(56), 0,
324
318
  UPB_FASTTABLE_INIT({
325
319
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
326
- {0x000000003f000008, &upb_psb1_1bt},
327
- {0x000100003f000010, &upb_psb1_1bt},
328
- {0x000200003f000018, &upb_psb1_1bt},
329
- {0x000300003f000020, &upb_psb1_1bt},
330
- {0x0008000405000028, &upb_pob1_1bt},
331
- {0x0008000406000032, &upb_pos_1bt},
320
+ {0x000800003f000008, &upb_psb1_1bt},
321
+ {0x000900003f000010, &upb_psb1_1bt},
322
+ {0x000a00003f000018, &upb_psb1_1bt},
323
+ {0x000b00003f000020, &upb_psb1_1bt},
324
+ {0x0010000c05000028, &upb_pob1_1bt},
325
+ {0x0010000c06000032, &upb_pos_1bt},
332
326
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
333
327
  })
334
328
  };
335
329
 
336
330
  static const upb_MiniTableSub envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_HcmAccessLogOptions_submsgs[1] = {
337
- {.submsg = &google__protobuf__Duration_msg_init},
331
+ {.UPB_PRIVATE(submsg) = &google__protobuf__Duration_msg_init},
338
332
  };
339
333
 
340
334
  static const upb_MiniTableField envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_HcmAccessLogOptions__fields[3] = {
341
- {1, UPB_SIZE(4, 8), 1, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
342
- {2, UPB_SIZE(8, 1), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
343
- {3, UPB_SIZE(9, 2), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
335
+ {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
336
+ {2, UPB_SIZE(16, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
337
+ {3, UPB_SIZE(17, 10), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
344
338
  };
345
339
 
346
340
  const upb_MiniTable envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__HcmAccessLogOptions_msg_init = {
347
341
  &envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_HcmAccessLogOptions_submsgs[0],
348
342
  &envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_HcmAccessLogOptions__fields[0],
349
- 16, 3, kUpb_ExtMode_NonExtendable, 3, UPB_FASTTABLE_MASK(24), 0,
343
+ 24, 3, kUpb_ExtMode_NonExtendable, 3, UPB_FASTTABLE_MASK(24), 0,
350
344
  UPB_FASTTABLE_INIT({
351
345
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
352
- {0x000800000100000a, &upb_psm_1bt_maxmaxb},
353
- {0x000100003f000010, &upb_psb1_1bt},
354
- {0x000200003f000018, &upb_psb1_1bt},
346
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
347
+ {0x000900003f000010, &upb_psb1_1bt},
348
+ {0x000a00003f000018, &upb_psb1_1bt},
355
349
  })
356
350
  };
357
351
 
358
352
  static const upb_MiniTableSub envoy_extensions_filters_network_http_connection_manager_v3_LocalReplyConfig_submsgs[2] = {
359
- {.submsg = &envoy__extensions__filters__network__http_0connection_0manager__v3__ResponseMapper_msg_init},
360
- {.submsg = &envoy__config__core__v3__SubstitutionFormatString_msg_init},
353
+ {.UPB_PRIVATE(submsg) = &envoy__extensions__filters__network__http_0connection_0manager__v3__ResponseMapper_msg_init},
354
+ {.UPB_PRIVATE(submsg) = &envoy__config__core__v3__SubstitutionFormatString_msg_init},
361
355
  };
362
356
 
363
357
  static const upb_MiniTableField envoy_extensions_filters_network_http_connection_manager_v3_LocalReplyConfig__fields[2] = {
364
- {1, UPB_SIZE(4, 8), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
365
- {2, UPB_SIZE(8, 16), 1, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
358
+ {1, UPB_SIZE(12, 16), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
359
+ {2, UPB_SIZE(16, 24), 64, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
366
360
  };
367
361
 
368
362
  const upb_MiniTable envoy__extensions__filters__network__http_0connection_0manager__v3__LocalReplyConfig_msg_init = {
369
363
  &envoy_extensions_filters_network_http_connection_manager_v3_LocalReplyConfig_submsgs[0],
370
364
  &envoy_extensions_filters_network_http_connection_manager_v3_LocalReplyConfig__fields[0],
371
- UPB_SIZE(16, 24), 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(24), 0,
365
+ UPB_SIZE(24, 32), 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(8), 0,
372
366
  UPB_FASTTABLE_INIT({
373
367
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
374
- {0x000800003f00000a, &upb_prm_1bt_max64b},
375
- {0x0010000001010012, &upb_psm_1bt_maxmaxb},
376
- {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
368
+ {0x001000003f00000a, &upb_prm_1bt_max64b},
377
369
  })
378
370
  };
379
371
 
380
372
  static const upb_MiniTableSub envoy_extensions_filters_network_http_connection_manager_v3_ResponseMapper_submsgs[5] = {
381
- {.submsg = &envoy__config__accesslog__v3__AccessLogFilter_msg_init},
382
- {.submsg = &google__protobuf__UInt32Value_msg_init},
383
- {.submsg = &envoy__config__core__v3__DataSource_msg_init},
384
- {.submsg = &envoy__config__core__v3__SubstitutionFormatString_msg_init},
385
- {.submsg = &envoy__config__core__v3__HeaderValueOption_msg_init},
373
+ {.UPB_PRIVATE(submsg) = &envoy__config__accesslog__v3__AccessLogFilter_msg_init},
374
+ {.UPB_PRIVATE(submsg) = &google__protobuf__UInt32Value_msg_init},
375
+ {.UPB_PRIVATE(submsg) = &envoy__config__core__v3__DataSource_msg_init},
376
+ {.UPB_PRIVATE(submsg) = &envoy__config__core__v3__SubstitutionFormatString_msg_init},
377
+ {.UPB_PRIVATE(submsg) = &envoy__config__core__v3__HeaderValueOption_msg_init},
386
378
  };
387
379
 
388
380
  static const upb_MiniTableField envoy_extensions_filters_network_http_connection_manager_v3_ResponseMapper__fields[5] = {
389
- {1, UPB_SIZE(4, 8), 1, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
390
- {2, UPB_SIZE(8, 16), 2, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
391
- {3, UPB_SIZE(12, 24), 3, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
392
- {4, UPB_SIZE(16, 32), 4, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
393
- {5, UPB_SIZE(20, 40), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
381
+ {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
382
+ {2, UPB_SIZE(16, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
383
+ {3, UPB_SIZE(20, 32), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
384
+ {4, UPB_SIZE(24, 40), 67, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
385
+ {5, UPB_SIZE(28, 48), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
394
386
  };
395
387
 
396
388
  const upb_MiniTable envoy__extensions__filters__network__http_0connection_0manager__v3__ResponseMapper_msg_init = {
397
389
  &envoy_extensions_filters_network_http_connection_manager_v3_ResponseMapper_submsgs[0],
398
390
  &envoy_extensions_filters_network_http_connection_manager_v3_ResponseMapper__fields[0],
399
- UPB_SIZE(24, 48), 5, kUpb_ExtMode_NonExtendable, 5, UPB_FASTTABLE_MASK(56), 0,
391
+ UPB_SIZE(32, 56), 5, kUpb_ExtMode_NonExtendable, 5, UPB_FASTTABLE_MASK(56), 0,
400
392
  UPB_FASTTABLE_INIT({
401
393
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
402
- {0x000800000100000a, &upb_psm_1bt_maxmaxb},
403
- {0x0010000002010012, &upb_psm_1bt_maxmaxb},
404
- {0x001800000302001a, &upb_psm_1bt_maxmaxb},
405
- {0x0020000004030022, &upb_psm_1bt_maxmaxb},
406
- {0x002800003f04002a, &upb_prm_1bt_maxmaxb},
394
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
395
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
396
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
397
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
398
+ {0x003000003f04002a, &upb_prm_1bt_maxmaxb},
407
399
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
408
400
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
409
401
  })
410
402
  };
411
403
 
412
404
  static const upb_MiniTableSub envoy_extensions_filters_network_http_connection_manager_v3_Rds_submsgs[1] = {
413
- {.submsg = &envoy__config__core__v3__ConfigSource_msg_init},
405
+ {.UPB_PRIVATE(submsg) = &envoy__config__core__v3__ConfigSource_msg_init},
414
406
  };
415
407
 
416
408
  static const upb_MiniTableField envoy_extensions_filters_network_http_connection_manager_v3_Rds__fields[2] = {
417
- {1, UPB_SIZE(4, 8), 1, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
418
- {2, UPB_SIZE(8, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
409
+ {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
410
+ {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
419
411
  };
420
412
 
421
413
  const upb_MiniTable envoy__extensions__filters__network__http_0connection_0manager__v3__Rds_msg_init = {
422
414
  &envoy_extensions_filters_network_http_connection_manager_v3_Rds_submsgs[0],
423
415
  &envoy_extensions_filters_network_http_connection_manager_v3_Rds__fields[0],
424
- UPB_SIZE(16, 32), 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(24), 0,
416
+ UPB_SIZE(24, 40), 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(24), 0,
425
417
  UPB_FASTTABLE_INIT({
426
418
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
427
- {0x000800000100000a, &upb_psm_1bt_maxmaxb},
428
- {0x001000003f000012, &upb_pss_1bt},
419
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
420
+ {0x001800003f000012, &upb_pss_1bt},
429
421
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
430
422
  })
431
423
  };
432
424
 
433
425
  static const upb_MiniTableSub envoy_extensions_filters_network_http_connection_manager_v3_ScopedRouteConfigurationsList_submsgs[1] = {
434
- {.submsg = &envoy__config__route__v3__ScopedRouteConfiguration_msg_init},
426
+ {.UPB_PRIVATE(submsg) = &envoy__config__route__v3__ScopedRouteConfiguration_msg_init},
435
427
  };
436
428
 
437
429
  static const upb_MiniTableField envoy_extensions_filters_network_http_connection_manager_v3_ScopedRouteConfigurationsList__fields[1] = {
438
- {1, 0, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
430
+ {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
439
431
  };
440
432
 
441
433
  const upb_MiniTable envoy__extensions__filters__network__http_0connection_0manager__v3__ScopedRouteConfigurationsList_msg_init = {
442
434
  &envoy_extensions_filters_network_http_connection_manager_v3_ScopedRouteConfigurationsList_submsgs[0],
443
435
  &envoy_extensions_filters_network_http_connection_manager_v3_ScopedRouteConfigurationsList__fields[0],
444
- 8, 1, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(8), 0,
436
+ 16, 1, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(8), 0,
445
437
  UPB_FASTTABLE_INIT({
446
438
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
447
- {0x000000003f00000a, &upb_prm_1bt_maxmaxb},
439
+ {0x000800003f00000a, &upb_prm_1bt_maxmaxb},
448
440
  })
449
441
  };
450
442
 
451
443
  static const upb_MiniTableSub envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes_submsgs[4] = {
452
- {.submsg = &envoy__extensions__filters__network__http_0connection_0manager__v3__ScopedRoutes__ScopeKeyBuilder_msg_init},
453
- {.submsg = &envoy__config__core__v3__ConfigSource_msg_init},
454
- {.submsg = &envoy__extensions__filters__network__http_0connection_0manager__v3__ScopedRouteConfigurationsList_msg_init},
455
- {.submsg = &envoy__extensions__filters__network__http_0connection_0manager__v3__ScopedRds_msg_init},
444
+ {.UPB_PRIVATE(submsg) = &envoy__extensions__filters__network__http_0connection_0manager__v3__ScopedRoutes__ScopeKeyBuilder_msg_init},
445
+ {.UPB_PRIVATE(submsg) = &envoy__config__core__v3__ConfigSource_msg_init},
446
+ {.UPB_PRIVATE(submsg) = &envoy__extensions__filters__network__http_0connection_0manager__v3__ScopedRouteConfigurationsList_msg_init},
447
+ {.UPB_PRIVATE(submsg) = &envoy__extensions__filters__network__http_0connection_0manager__v3__ScopedRds_msg_init},
456
448
  };
457
449
 
458
450
  static const upb_MiniTableField envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes__fields[5] = {
459
- {1, UPB_SIZE(20, 8), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
460
- {2, UPB_SIZE(4, 24), 1, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
461
- {3, UPB_SIZE(8, 32), 2, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
462
- {4, UPB_SIZE(16, 40), UPB_SIZE(-13, -5), 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
463
- {5, UPB_SIZE(16, 40), UPB_SIZE(-13, -5), 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
451
+ {1, UPB_SIZE(28, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
452
+ {2, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
453
+ {3, UPB_SIZE(16, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
454
+ {4, UPB_SIZE(24, 48), UPB_SIZE(-21, -13), 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
455
+ {5, UPB_SIZE(24, 48), UPB_SIZE(-21, -13), 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
464
456
  };
465
457
 
466
458
  const upb_MiniTable envoy__extensions__filters__network__http_0connection_0manager__v3__ScopedRoutes_msg_init = {
467
459
  &envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes_submsgs[0],
468
460
  &envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes__fields[0],
469
- UPB_SIZE(32, 48), 5, kUpb_ExtMode_NonExtendable, 5, UPB_FASTTABLE_MASK(56), 0,
461
+ UPB_SIZE(40, 56), 5, kUpb_ExtMode_NonExtendable, 5, UPB_FASTTABLE_MASK(56), 0,
470
462
  UPB_FASTTABLE_INIT({
471
463
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
472
- {0x000800003f00000a, &upb_pss_1bt},
473
- {0x0018000001000012, &upb_psm_1bt_max64b},
474
- {0x002000000201001a, &upb_psm_1bt_maxmaxb},
475
- {0x0028000404020022, &upb_pom_1bt_max64b},
476
- {0x002800040503002a, &upb_pom_1bt_max64b},
464
+ {0x001000003f00000a, &upb_pss_1bt},
465
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
466
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
467
+ {0x0030000c04020022, &upb_pom_1bt_max64b},
468
+ {0x0030000c0503002a, &upb_pom_1bt_max64b},
477
469
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
478
470
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
479
471
  })
480
472
  };
481
473
 
482
474
  static const upb_MiniTableSub envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes_ScopeKeyBuilder_submsgs[1] = {
483
- {.submsg = &envoy__extensions__filters__network__http_0connection_0manager__v3__ScopedRoutes__ScopeKeyBuilder__FragmentBuilder_msg_init},
475
+ {.UPB_PRIVATE(submsg) = &envoy__extensions__filters__network__http_0connection_0manager__v3__ScopedRoutes__ScopeKeyBuilder__FragmentBuilder_msg_init},
484
476
  };
485
477
 
486
478
  static const upb_MiniTableField envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes_ScopeKeyBuilder__fields[1] = {
487
- {1, 0, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
479
+ {1, 8, 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
488
480
  };
489
481
 
490
482
  const upb_MiniTable envoy__extensions__filters__network__http_0connection_0manager__v3__ScopedRoutes__ScopeKeyBuilder_msg_init = {
491
483
  &envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes_ScopeKeyBuilder_submsgs[0],
492
484
  &envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes_ScopeKeyBuilder__fields[0],
493
- 8, 1, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(8), 0,
485
+ 16, 1, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(8), 0,
494
486
  UPB_FASTTABLE_INIT({
495
487
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
496
- {0x000000003f00000a, &upb_prm_1bt_max64b},
488
+ {0x000800003f00000a, &upb_prm_1bt_max64b},
497
489
  })
498
490
  };
499
491
 
500
492
  static const upb_MiniTableSub envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes_ScopeKeyBuilder_FragmentBuilder_submsgs[1] = {
501
- {.submsg = &envoy__extensions__filters__network__http_0connection_0manager__v3__ScopedRoutes__ScopeKeyBuilder__FragmentBuilder__HeaderValueExtractor_msg_init},
493
+ {.UPB_PRIVATE(submsg) = &envoy__extensions__filters__network__http_0connection_0manager__v3__ScopedRoutes__ScopeKeyBuilder__FragmentBuilder__HeaderValueExtractor_msg_init},
502
494
  };
503
495
 
504
496
  static const upb_MiniTableField envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes_ScopeKeyBuilder_FragmentBuilder__fields[1] = {
505
- {1, UPB_SIZE(4, 8), -1, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
497
+ {1, UPB_SIZE(12, 16), -9, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
506
498
  };
507
499
 
508
500
  const upb_MiniTable envoy__extensions__filters__network__http_0connection_0manager__v3__ScopedRoutes__ScopeKeyBuilder__FragmentBuilder_msg_init = {
509
501
  &envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes_ScopeKeyBuilder_FragmentBuilder_submsgs[0],
510
502
  &envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes_ScopeKeyBuilder_FragmentBuilder__fields[0],
511
- UPB_SIZE(8, 16), 1, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(8), 0,
503
+ UPB_SIZE(16, 24), 1, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(8), 0,
512
504
  UPB_FASTTABLE_INIT({
513
505
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
514
- {0x000800000100000a, &upb_pom_1bt_max64b},
506
+ {0x001000080100000a, &upb_pom_1bt_max64b},
515
507
  })
516
508
  };
517
509
 
518
510
  static const upb_MiniTableSub envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes_ScopeKeyBuilder_FragmentBuilder_HeaderValueExtractor_submsgs[1] = {
519
- {.submsg = &envoy__extensions__filters__network__http_0connection_0manager__v3__ScopedRoutes__ScopeKeyBuilder__FragmentBuilder__HeaderValueExtractor__KvElement_msg_init},
511
+ {.UPB_PRIVATE(submsg) = &envoy__extensions__filters__network__http_0connection_0manager__v3__ScopedRoutes__ScopeKeyBuilder__FragmentBuilder__HeaderValueExtractor__KvElement_msg_init},
520
512
  };
521
513
 
522
514
  static const upb_MiniTableField envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes_ScopeKeyBuilder_FragmentBuilder_HeaderValueExtractor__fields[4] = {
523
- {1, 8, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
524
- {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
525
- {3, UPB_SIZE(4, 40), -1, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
526
- {4, UPB_SIZE(4, 40), -1, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
515
+ {1, 16, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
516
+ {2, UPB_SIZE(24, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
517
+ {3, UPB_SIZE(12, 48), -9, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)},
518
+ {4, UPB_SIZE(12, 48), -9, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
527
519
  };
528
520
 
529
521
  const upb_MiniTable envoy__extensions__filters__network__http_0connection_0manager__v3__ScopedRoutes__ScopeKeyBuilder__FragmentBuilder__HeaderValueExtractor_msg_init = {
530
522
  &envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes_ScopeKeyBuilder_FragmentBuilder_HeaderValueExtractor_submsgs[0],
531
523
  &envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes_ScopeKeyBuilder_FragmentBuilder_HeaderValueExtractor__fields[0],
532
- UPB_SIZE(24, 48), 4, kUpb_ExtMode_NonExtendable, 4, UPB_FASTTABLE_MASK(56), 0,
524
+ UPB_SIZE(32, 56), 4, kUpb_ExtMode_NonExtendable, 4, UPB_FASTTABLE_MASK(56), 0,
533
525
  UPB_FASTTABLE_INIT({
534
526
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
535
- {0x000800003f00000a, &upb_pss_1bt},
536
- {0x001800003f000012, &upb_pss_1bt},
537
- {0x0028000003000018, &upb_pov4_1bt},
538
- {0x0028000004000022, &upb_pom_1bt_max64b},
527
+ {0x001000003f00000a, &upb_pss_1bt},
528
+ {0x002000003f000012, &upb_pss_1bt},
529
+ {0x0030000803000018, &upb_pov4_1bt},
530
+ {0x0030000804000022, &upb_pom_1bt_max64b},
539
531
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
540
532
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
541
533
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
@@ -543,106 +535,98 @@ const upb_MiniTable envoy__extensions__filters__network__http_0connection_0manag
543
535
  };
544
536
 
545
537
  static const upb_MiniTableField envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes_ScopeKeyBuilder_FragmentBuilder_HeaderValueExtractor_KvElement__fields[2] = {
546
- {1, 0, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
547
- {2, UPB_SIZE(8, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
538
+ {1, 8, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
539
+ {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
548
540
  };
549
541
 
550
542
  const upb_MiniTable envoy__extensions__filters__network__http_0connection_0manager__v3__ScopedRoutes__ScopeKeyBuilder__FragmentBuilder__HeaderValueExtractor__KvElement_msg_init = {
551
543
  NULL,
552
544
  &envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes_ScopeKeyBuilder_FragmentBuilder_HeaderValueExtractor_KvElement__fields[0],
553
- UPB_SIZE(16, 32), 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(24), 0,
545
+ UPB_SIZE(24, 40), 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(24), 0,
554
546
  UPB_FASTTABLE_INIT({
555
547
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
556
- {0x000000003f00000a, &upb_pss_1bt},
557
- {0x001000003f000012, &upb_pss_1bt},
548
+ {0x000800003f00000a, &upb_pss_1bt},
549
+ {0x001800003f000012, &upb_pss_1bt},
558
550
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
559
551
  })
560
552
  };
561
553
 
562
554
  static const upb_MiniTableSub envoy_extensions_filters_network_http_connection_manager_v3_ScopedRds_submsgs[1] = {
563
- {.submsg = &envoy__config__core__v3__ConfigSource_msg_init},
555
+ {.UPB_PRIVATE(submsg) = &envoy__config__core__v3__ConfigSource_msg_init},
564
556
  };
565
557
 
566
558
  static const upb_MiniTableField envoy_extensions_filters_network_http_connection_manager_v3_ScopedRds__fields[2] = {
567
- {1, UPB_SIZE(4, 8), 1, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
568
- {2, UPB_SIZE(8, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
559
+ {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
560
+ {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
569
561
  };
570
562
 
571
563
  const upb_MiniTable envoy__extensions__filters__network__http_0connection_0manager__v3__ScopedRds_msg_init = {
572
564
  &envoy_extensions_filters_network_http_connection_manager_v3_ScopedRds_submsgs[0],
573
565
  &envoy_extensions_filters_network_http_connection_manager_v3_ScopedRds__fields[0],
574
- UPB_SIZE(16, 32), 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(24), 0,
566
+ UPB_SIZE(24, 40), 2, kUpb_ExtMode_NonExtendable, 2, UPB_FASTTABLE_MASK(24), 0,
575
567
  UPB_FASTTABLE_INIT({
576
568
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
577
- {0x000800000100000a, &upb_psm_1bt_maxmaxb},
578
- {0x001000003f000012, &upb_pss_1bt},
569
+ {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
570
+ {0x001800003f000012, &upb_pss_1bt},
579
571
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
580
572
  })
581
573
  };
582
574
 
583
575
  static const upb_MiniTableSub envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter_submsgs[2] = {
584
- {.submsg = &google__protobuf__Any_msg_init},
585
- {.submsg = &envoy__config__core__v3__ExtensionConfigSource_msg_init},
576
+ {.UPB_PRIVATE(submsg) = &google__protobuf__Any_msg_init},
577
+ {.UPB_PRIVATE(submsg) = &envoy__config__core__v3__ExtensionConfigSource_msg_init},
586
578
  };
587
579
 
588
580
  static const upb_MiniTableField envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter__fields[5] = {
589
- {1, UPB_SIZE(12, 8), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
590
- {4, UPB_SIZE(8, 24), -1, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
591
- {5, UPB_SIZE(8, 24), -1, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
592
- {6, 4, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
593
- {7, 5, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
581
+ {1, UPB_SIZE(20, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)},
582
+ {4, UPB_SIZE(16, 32), -9, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
583
+ {5, UPB_SIZE(16, 32), -9, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
584
+ {6, 12, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
585
+ {7, 13, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)},
594
586
  };
595
587
 
596
588
  const upb_MiniTable envoy__extensions__filters__network__http_0connection_0manager__v3__HttpFilter_msg_init = {
597
589
  &envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter_submsgs[0],
598
590
  &envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter__fields[0],
599
- UPB_SIZE(24, 32), 5, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(56), 0,
591
+ UPB_SIZE(32, 40), 5, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(56), 0,
600
592
  UPB_FASTTABLE_INIT({
601
593
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
602
- {0x000800003f00000a, &upb_pss_1bt},
594
+ {0x001000003f00000a, &upb_pss_1bt},
603
595
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
604
596
  {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
605
- {0x0018000004000022, &upb_pom_1bt_maxmaxb},
606
- {0x001800000501002a, &upb_pom_1bt_maxmaxb},
607
- {0x000400003f000030, &upb_psb1_1bt},
608
- {0x000500003f000038, &upb_psb1_1bt},
597
+ {0x0020000804000022, &upb_pom_1bt_maxmaxb},
598
+ {0x002000080501002a, &upb_pom_1bt_maxmaxb},
599
+ {0x000c00003f000030, &upb_psb1_1bt},
600
+ {0x000d00003f000038, &upb_psb1_1bt},
609
601
  })
610
602
  };
611
603
 
612
604
  static const upb_MiniTableSub envoy_extensions_filters_network_http_connection_manager_v3_RequestIDExtension_submsgs[1] = {
613
- {.submsg = &google__protobuf__Any_msg_init},
605
+ {.UPB_PRIVATE(submsg) = &google__protobuf__Any_msg_init},
614
606
  };
615
607
 
616
608
  static const upb_MiniTableField envoy_extensions_filters_network_http_connection_manager_v3_RequestIDExtension__fields[1] = {
617
- {1, UPB_SIZE(4, 8), 1, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
609
+ {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
618
610
  };
619
611
 
620
612
  const upb_MiniTable envoy__extensions__filters__network__http_0connection_0manager__v3__RequestIDExtension_msg_init = {
621
613
  &envoy_extensions_filters_network_http_connection_manager_v3_RequestIDExtension_submsgs[0],
622
614
  &envoy_extensions_filters_network_http_connection_manager_v3_RequestIDExtension__fields[0],
623
- UPB_SIZE(8, 16), 1, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(8), 0,
624
- UPB_FASTTABLE_INIT({
625
- {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
626
- {0x000800000100000a, &upb_psm_1bt_maxmaxb},
627
- })
615
+ UPB_SIZE(16, 24), 1, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(255), 0,
628
616
  };
629
617
 
630
618
  static const upb_MiniTableSub envoy_extensions_filters_network_http_connection_manager_v3_EnvoyMobileHttpConnectionManager_submsgs[1] = {
631
- {.submsg = &envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager_msg_init},
619
+ {.UPB_PRIVATE(submsg) = &envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager_msg_init},
632
620
  };
633
621
 
634
622
  static const upb_MiniTableField envoy_extensions_filters_network_http_connection_manager_v3_EnvoyMobileHttpConnectionManager__fields[1] = {
635
- {1, UPB_SIZE(4, 8), 1, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
623
+ {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)},
636
624
  };
637
625
 
638
626
  const upb_MiniTable envoy__extensions__filters__network__http_0connection_0manager__v3__EnvoyMobileHttpConnectionManager_msg_init = {
639
627
  &envoy_extensions_filters_network_http_connection_manager_v3_EnvoyMobileHttpConnectionManager_submsgs[0],
640
628
  &envoy_extensions_filters_network_http_connection_manager_v3_EnvoyMobileHttpConnectionManager__fields[0],
641
- UPB_SIZE(8, 16), 1, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(8), 0,
642
- UPB_FASTTABLE_INIT({
643
- {0x0000000000000000, &_upb_FastDecoder_DecodeGeneric},
644
- {0x000800000100000a, &upb_psm_1bt_maxmaxb},
645
- })
629
+ UPB_SIZE(16, 24), 1, kUpb_ExtMode_NonExtendable, 1, UPB_FASTTABLE_MASK(255), 0,
646
630
  };
647
631
 
648
632
  static const upb_MiniTable *messages_layout[21] = {