grpc 1.71.0 → 1.73.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1444) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +96 -76
  3. data/include/grpc/event_engine/event_engine.h +125 -8
  4. data/include/grpc/event_engine/internal/write_event.h +34 -0
  5. data/include/grpc/event_engine/memory_request.h +3 -3
  6. data/include/grpc/impl/channel_arg_names.h +80 -52
  7. data/include/grpc/impl/compression_types.h +3 -2
  8. data/include/grpc/impl/slice_type.h +1 -1
  9. data/include/grpc/support/json.h +3 -21
  10. data/include/grpc/support/port_platform.h +8 -5
  11. data/include/grpc/support/workaround_list.h +1 -4
  12. data/src/core/{lib/transport → call}/call_arena_allocator.cc +1 -1
  13. data/src/core/{lib/transport → call}/call_arena_allocator.h +3 -3
  14. data/src/core/{lib/transport → call}/call_destination.h +4 -4
  15. data/src/core/{lib/transport → call}/call_filters.cc +2 -2
  16. data/src/core/{lib/transport → call}/call_filters.h +53 -25
  17. data/src/core/{lib/channel → call}/call_finalization.h +3 -3
  18. data/src/core/{lib/transport → call}/call_spine.cc +1 -1
  19. data/src/core/{lib/transport → call}/call_spine.h +70 -26
  20. data/src/core/{lib/transport → call}/call_state.cc +1 -1
  21. data/src/core/{lib/transport → call}/call_state.h +3 -3
  22. data/src/core/{lib/surface → call}/client_call.cc +9 -7
  23. data/src/core/{lib/surface → call}/client_call.h +4 -4
  24. data/src/core/{lib/transport → call}/custom_metadata.h +3 -3
  25. data/src/core/{lib/transport → call}/interception_chain.cc +5 -5
  26. data/src/core/{lib/transport → call}/interception_chain.h +7 -7
  27. data/src/core/{lib/transport → call}/message.cc +1 -1
  28. data/src/core/{lib/transport → call}/message.h +7 -3
  29. data/src/core/{lib/transport → call}/metadata.cc +2 -2
  30. data/src/core/{lib/transport → call}/metadata.h +21 -4
  31. data/src/core/{lib/transport → call}/metadata_batch.cc +1 -1
  32. data/src/core/{lib/transport → call}/metadata_batch.h +7 -7
  33. data/src/core/{lib/transport → call}/metadata_compression_traits.h +3 -3
  34. data/src/core/{lib/transport → call}/metadata_info.cc +27 -9
  35. data/src/core/{lib/transport → call}/metadata_info.h +4 -4
  36. data/src/core/{lib/transport → call}/parsed_metadata.cc +1 -1
  37. data/src/core/{lib/transport → call}/parsed_metadata.h +3 -3
  38. data/src/core/call/request_buffer.h +3 -3
  39. data/src/core/call/security_context.cc +125 -0
  40. data/src/core/call/security_context.h +114 -0
  41. data/src/core/{lib/surface → call}/server_call.cc +3 -3
  42. data/src/core/{lib/surface → call}/server_call.h +5 -5
  43. data/src/core/{lib/transport → call}/simple_slice_based_metadata.h +4 -4
  44. data/src/core/{lib/channel → call}/status_util.cc +1 -1
  45. data/src/core/{lib/channel → call}/status_util.h +3 -3
  46. data/src/core/channelz/channel_trace.cc +50 -42
  47. data/src/core/channelz/channel_trace.h +35 -4
  48. data/src/core/channelz/channelz.cc +338 -125
  49. data/src/core/channelz/channelz.h +276 -34
  50. data/src/core/channelz/channelz_registry.cc +322 -117
  51. data/src/core/channelz/channelz_registry.h +179 -21
  52. data/src/core/channelz/ztrace_collector.h +315 -0
  53. data/src/core/client_channel/client_channel.cc +54 -45
  54. data/src/core/client_channel/client_channel.h +4 -3
  55. data/src/core/client_channel/client_channel_filter.cc +31 -40
  56. data/src/core/client_channel/client_channel_filter.h +1 -3
  57. data/src/core/client_channel/client_channel_internal.h +1 -1
  58. data/src/core/client_channel/config_selector.h +2 -2
  59. data/src/core/client_channel/connector.h +0 -3
  60. data/src/core/client_channel/direct_channel.cc +2 -2
  61. data/src/core/client_channel/dynamic_filters.cc +0 -1
  62. data/src/core/client_channel/dynamic_filters.h +0 -1
  63. data/src/core/client_channel/global_subchannel_pool.cc +68 -7
  64. data/src/core/client_channel/global_subchannel_pool.h +37 -4
  65. data/src/core/client_channel/lb_metadata.h +1 -1
  66. data/src/core/client_channel/load_balanced_call_destination.cc +1 -1
  67. data/src/core/client_channel/load_balanced_call_destination.h +1 -1
  68. data/src/core/client_channel/retry_filter_legacy_call_data.cc +43 -41
  69. data/src/core/client_channel/retry_filter_legacy_call_data.h +6 -6
  70. data/src/core/client_channel/retry_interceptor.h +1 -1
  71. data/src/core/client_channel/retry_service_config.cc +1 -1
  72. data/src/core/client_channel/retry_service_config.h +1 -1
  73. data/src/core/client_channel/retry_throttle.cc +30 -34
  74. data/src/core/client_channel/retry_throttle.h +10 -2
  75. data/src/core/client_channel/subchannel.cc +14 -17
  76. data/src/core/client_channel/subchannel.h +3 -10
  77. data/src/core/client_channel/subchannel_pool_interface.cc +5 -6
  78. data/src/core/client_channel/subchannel_pool_interface.h +11 -1
  79. data/src/core/client_channel/subchannel_stream_client.cc +14 -11
  80. data/src/core/client_channel/subchannel_stream_client.h +2 -2
  81. data/src/core/config/config_vars.cc +11 -1
  82. data/src/core/config/config_vars.h +8 -0
  83. data/src/core/config/core_configuration.cc +50 -11
  84. data/src/core/config/core_configuration.h +91 -9
  85. data/src/core/credentials/call/call_credentials.h +157 -0
  86. data/src/core/{lib/security/credentials → credentials/call}/call_creds_util.cc +4 -4
  87. data/src/core/{lib/security/credentials → credentials/call}/call_creds_util.h +4 -4
  88. data/src/core/{lib/security/credentials/composite/composite_credentials.cc → credentials/call/composite/composite_call_credentials.cc} +4 -57
  89. data/src/core/credentials/call/composite/composite_call_credentials.h +82 -0
  90. data/src/core/{lib/security/credentials → credentials/call}/external/aws_external_account_credentials.cc +2 -2
  91. data/src/core/{lib/security/credentials → credentials/call}/external/aws_external_account_credentials.h +5 -5
  92. data/src/core/{lib/security/credentials → credentials/call}/external/aws_request_signer.cc +4 -3
  93. data/src/core/{lib/security/credentials → credentials/call}/external/aws_request_signer.h +3 -3
  94. data/src/core/{lib/security/credentials → credentials/call}/external/external_account_credentials.cc +6 -6
  95. data/src/core/{lib/security/credentials → credentials/call}/external/external_account_credentials.h +5 -5
  96. data/src/core/{lib/security/credentials → credentials/call}/external/file_external_account_credentials.cc +1 -1
  97. data/src/core/{lib/security/credentials → credentials/call}/external/file_external_account_credentials.h +4 -4
  98. data/src/core/{lib/security/credentials → credentials/call}/external/url_external_account_credentials.cc +5 -4
  99. data/src/core/{lib/security/credentials → credentials/call}/external/url_external_account_credentials.h +4 -4
  100. data/src/core/{lib/security/credentials → credentials/call}/gcp_service_account_identity/gcp_service_account_identity_credentials.cc +4 -3
  101. data/src/core/{lib/security/credentials → credentials/call}/gcp_service_account_identity/gcp_service_account_identity_credentials.h +6 -6
  102. data/src/core/{lib/security/credentials → credentials/call}/iam/iam_credentials.cc +2 -2
  103. data/src/core/{lib/security/credentials → credentials/call}/iam/iam_credentials.h +4 -4
  104. data/src/core/{lib/security/util → credentials/call}/json_util.cc +1 -1
  105. data/src/core/{lib/security/util → credentials/call}/json_util.h +3 -3
  106. data/src/core/{lib/security/credentials → credentials/call}/jwt/json_token.cc +2 -2
  107. data/src/core/{lib/security/credentials → credentials/call}/jwt/json_token.h +3 -3
  108. data/src/core/{lib/security/credentials → credentials/call}/jwt/jwt_credentials.cc +3 -3
  109. data/src/core/{lib/security/credentials → credentials/call}/jwt/jwt_credentials.h +5 -5
  110. data/src/core/{lib/security/credentials → credentials/call}/jwt/jwt_verifier.cc +7 -6
  111. data/src/core/{lib/security/credentials → credentials/call}/jwt/jwt_verifier.h +3 -3
  112. data/src/core/{lib/security/credentials → credentials/call}/oauth2/oauth2_credentials.cc +8 -5
  113. data/src/core/{lib/security/credentials → credentials/call}/oauth2/oauth2_credentials.h +5 -5
  114. data/src/core/{lib/security/credentials → credentials/call}/plugin/plugin_credentials.cc +2 -2
  115. data/src/core/{lib/security/credentials → credentials/call}/plugin/plugin_credentials.h +5 -5
  116. data/src/core/{lib/security/credentials → credentials/call}/token_fetcher/token_fetcher_credentials.cc +1 -1
  117. data/src/core/{lib/security/credentials → credentials/call}/token_fetcher/token_fetcher_credentials.h +5 -5
  118. data/src/core/{lib/security/credentials → credentials/transport}/alts/alts_credentials.cc +4 -4
  119. data/src/core/{lib/security/credentials → credentials/transport}/alts/alts_credentials.h +5 -5
  120. data/src/core/{lib/security/security_connector → credentials/transport}/alts/alts_security_connector.cc +13 -12
  121. data/src/core/{lib/security/security_connector → credentials/transport}/alts/alts_security_connector.h +4 -4
  122. data/src/core/{lib/security/credentials → credentials/transport}/alts/check_gcp_environment.cc +1 -1
  123. data/src/core/{lib/security/credentials → credentials/transport}/alts/check_gcp_environment.h +3 -3
  124. data/src/core/{lib/security/credentials → credentials/transport}/alts/check_gcp_environment_linux.cc +1 -1
  125. data/src/core/{lib/security/credentials → credentials/transport}/alts/check_gcp_environment_no_op.cc +1 -1
  126. data/src/core/{lib/security/credentials → credentials/transport}/alts/check_gcp_environment_windows.cc +1 -1
  127. data/src/core/{lib/security/credentials → credentials/transport}/alts/grpc_alts_credentials_client_options.cc +1 -1
  128. data/src/core/{lib/security/credentials → credentials/transport}/alts/grpc_alts_credentials_options.cc +1 -1
  129. data/src/core/{lib/security/credentials → credentials/transport}/alts/grpc_alts_credentials_options.h +3 -3
  130. data/src/core/{lib/security/credentials → credentials/transport}/alts/grpc_alts_credentials_server_options.cc +1 -1
  131. data/src/core/{lib/security/credentials → credentials/transport}/channel_creds_registry.h +4 -4
  132. data/src/core/{lib/security/credentials → credentials/transport}/channel_creds_registry_init.cc +21 -17
  133. data/src/core/credentials/transport/composite/composite_channel_credentials.cc +68 -0
  134. data/src/core/{lib/security/credentials/composite/composite_credentials.h → credentials/transport/composite/composite_channel_credentials.h} +6 -51
  135. data/src/core/{lib/security/credentials → credentials/transport}/fake/fake_credentials.cc +4 -26
  136. data/src/core/{lib/security/credentials → credentials/transport}/fake/fake_credentials.h +5 -37
  137. data/src/core/{lib/security/security_connector → credentials/transport}/fake/fake_security_connector.cc +4 -4
  138. data/src/core/{lib/security/security_connector → credentials/transport}/fake/fake_security_connector.h +4 -4
  139. data/src/core/{lib/security/credentials → credentials/transport}/google_default/credentials_generic.cc +2 -2
  140. data/src/core/{lib/security/credentials → credentials/transport}/google_default/google_default_credentials.cc +34 -22
  141. data/src/core/{lib/security/credentials → credentials/transport}/google_default/google_default_credentials.h +5 -5
  142. data/src/core/{lib/security/credentials → credentials/transport}/insecure/insecure_credentials.cc +2 -2
  143. data/src/core/{lib/security/credentials → credentials/transport}/insecure/insecure_credentials.h +5 -5
  144. data/src/core/{lib/security/security_connector → credentials/transport}/insecure/insecure_security_connector.cc +2 -2
  145. data/src/core/{lib/security/security_connector → credentials/transport}/insecure/insecure_security_connector.h +5 -5
  146. data/src/core/{lib/security/credentials → credentials/transport}/local/local_credentials.cc +2 -2
  147. data/src/core/{lib/security/credentials → credentials/transport}/local/local_credentials.h +5 -5
  148. data/src/core/{lib/security/security_connector → credentials/transport}/local/local_security_connector.cc +4 -4
  149. data/src/core/{lib/security/security_connector → credentials/transport}/local/local_security_connector.h +4 -4
  150. data/src/core/{lib/security/security_connector → credentials/transport}/security_connector.cc +2 -2
  151. data/src/core/{lib/security/security_connector → credentials/transport}/security_connector.h +3 -3
  152. data/src/core/{lib/security/credentials → credentials/transport}/ssl/ssl_credentials.cc +4 -4
  153. data/src/core/{lib/security/credentials → credentials/transport}/ssl/ssl_credentials.h +6 -6
  154. data/src/core/{lib/security/security_connector → credentials/transport}/ssl/ssl_security_connector.cc +46 -16
  155. data/src/core/{lib/security/security_connector → credentials/transport}/ssl/ssl_security_connector.h +6 -5
  156. data/src/core/{lib/security/certificate_provider → credentials/transport/tls}/certificate_provider_factory.h +3 -3
  157. data/src/core/{lib/security/certificate_provider → credentials/transport/tls}/certificate_provider_registry.cc +1 -1
  158. data/src/core/{lib/security/certificate_provider → credentials/transport/tls}/certificate_provider_registry.h +4 -4
  159. data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_certificate_distributor.cc +1 -1
  160. data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_certificate_distributor.h +4 -4
  161. data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_certificate_match.cc +1 -1
  162. data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_certificate_provider.cc +2 -2
  163. data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_certificate_provider.h +5 -5
  164. data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_certificate_verifier.cc +2 -2
  165. data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_certificate_verifier.h +3 -3
  166. data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_credentials_options.cc +1 -1
  167. data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_credentials_options.h +7 -7
  168. data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_crl_provider.cc +1 -1
  169. data/src/core/{lib/security/credentials → credentials/transport}/tls/grpc_tls_crl_provider.h +3 -3
  170. data/src/core/{lib/security/security_connector → credentials/transport/tls}/load_system_roots.h +3 -3
  171. data/src/core/{lib/security/security_connector → credentials/transport/tls}/load_system_roots_fallback.cc +1 -1
  172. data/src/core/{lib/security/security_connector → credentials/transport/tls}/load_system_roots_supported.cc +2 -2
  173. data/src/core/{lib/security/security_connector → credentials/transport/tls}/load_system_roots_supported.h +3 -3
  174. data/src/core/{lib/security/security_connector → credentials/transport/tls}/load_system_roots_windows.cc +1 -1
  175. data/src/core/{lib/security/security_connector → credentials/transport/tls}/ssl_utils.cc +21 -3
  176. data/src/core/{lib/security/security_connector → credentials/transport/tls}/ssl_utils.h +9 -4
  177. data/src/core/{lib/security/credentials → credentials/transport}/tls/tls_credentials.cc +4 -4
  178. data/src/core/{lib/security/credentials → credentials/transport}/tls/tls_credentials.h +5 -5
  179. data/src/core/{lib/security/security_connector → credentials/transport}/tls/tls_security_connector.cc +8 -7
  180. data/src/core/{lib/security/security_connector → credentials/transport}/tls/tls_security_connector.h +6 -6
  181. data/src/core/{lib/security/credentials → credentials/transport}/tls/tls_utils.cc +1 -1
  182. data/src/core/{lib/security/credentials → credentials/transport}/tls/tls_utils.h +3 -3
  183. data/src/core/{lib/security/credentials/credentials.cc → credentials/transport/transport_credentials.cc} +1 -3
  184. data/src/core/{lib/security/credentials/credentials.h → credentials/transport/transport_credentials.h} +5 -121
  185. data/src/core/{lib/security/credentials → credentials/transport}/xds/xds_credentials.cc +5 -5
  186. data/src/core/{lib/security/credentials → credentials/transport}/xds/xds_credentials.h +6 -6
  187. data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +1 -1
  188. data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +14 -8
  189. data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +2 -2
  190. data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc +1 -1
  191. data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.cc +2 -2
  192. data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.h +1 -1
  193. data/src/core/ext/filters/http/client/http_client_filter.h +1 -1
  194. data/src/core/ext/filters/http/client_authority_filter.cc +2 -2
  195. data/src/core/ext/filters/http/message_compress/compression_filter.cc +1 -1
  196. data/src/core/ext/filters/http/message_compress/compression_filter.h +35 -5
  197. data/src/core/ext/filters/http/server/http_server_filter.cc +2 -2
  198. data/src/core/ext/filters/http/server/http_server_filter.h +14 -3
  199. data/src/core/ext/filters/message_size/message_size_filter.cc +1 -1
  200. data/src/core/ext/filters/rbac/rbac_filter.cc +2 -2
  201. data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +1 -1
  202. data/src/core/ext/transport/chttp2/chttp2_plugin.cc +40 -0
  203. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +14 -115
  204. data/src/core/ext/transport/chttp2/client/chttp2_connector.h +3 -0
  205. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +39 -965
  206. data/src/core/ext/transport/chttp2/server/chttp2_server.h +10 -2
  207. data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.cc +2 -2
  208. data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.h +1 -3
  209. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +185 -102
  210. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +0 -3
  211. data/src/core/ext/transport/chttp2/transport/flow_control.h +18 -0
  212. data/src/core/ext/transport/chttp2/transport/frame.cc +300 -171
  213. data/src/core/ext/transport/chttp2/transport/frame.h +113 -5
  214. data/src/core/ext/transport/chttp2/transport/frame_data.cc +12 -0
  215. data/src/core/ext/transport/chttp2/transport/frame_data.h +2 -0
  216. data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +15 -3
  217. data/src/core/ext/transport/chttp2/transport/frame_goaway.h +5 -3
  218. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +2 -0
  219. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +17 -7
  220. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +3 -1
  221. data/src/core/ext/transport/chttp2/transport/frame_settings.cc +23 -3
  222. data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +4 -0
  223. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +7 -0
  224. data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +4 -2
  225. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +1 -1
  226. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +2 -2
  227. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +1 -1
  228. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +2 -2
  229. data/src/core/ext/transport/chttp2/transport/http2_settings.cc +10 -8
  230. data/src/core/ext/transport/chttp2/transport/http2_settings.h +28 -2
  231. data/src/core/ext/transport/chttp2/transport/http2_status.h +409 -0
  232. data/src/core/ext/transport/chttp2/transport/http2_ztrace_collector.h +252 -0
  233. data/src/core/ext/transport/chttp2/transport/internal.h +41 -20
  234. data/src/core/ext/transport/chttp2/transport/internal_channel_arg_names.h +24 -0
  235. data/src/core/ext/transport/chttp2/transport/parsing.cc +57 -29
  236. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +10 -9
  237. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +6 -0
  238. data/src/core/ext/transport/chttp2/transport/writing.cc +69 -57
  239. data/src/core/ext/transport/inproc/inproc_transport.cc +8 -3
  240. data/src/core/ext/transport/inproc/legacy_inproc_transport.cc +7 -3
  241. data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h +4 -0
  242. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h +65 -65
  243. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c +28 -28
  244. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h +14 -14
  245. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c +6 -6
  246. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h +6 -6
  247. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c +4 -4
  248. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h +133 -133
  249. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c +71 -71
  250. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h +38 -26
  251. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c +7 -7
  252. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +228 -240
  253. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +66 -66
  254. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h +27 -27
  255. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c +9 -9
  256. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +338 -350
  257. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +103 -103
  258. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h +58 -58
  259. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c +14 -14
  260. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +50 -46
  261. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +3 -3
  262. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +41 -29
  263. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +16 -16
  264. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h +210 -259
  265. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +54 -54
  266. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h +58 -54
  267. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c +21 -21
  268. data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h +4 -0
  269. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h +88 -92
  270. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c +17 -17
  271. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h +112 -100
  272. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c +34 -34
  273. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h +16 -12
  274. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c +5 -5
  275. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +126 -118
  276. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +39 -39
  277. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h +23 -19
  278. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c +9 -9
  279. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h +31 -27
  280. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c +10 -10
  281. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h +12 -37
  282. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c +2 -2
  283. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h +49 -41
  284. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c +16 -16
  285. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h +24 -24
  286. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c +9 -9
  287. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h +147 -139
  288. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c +46 -46
  289. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h +73 -61
  290. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c +20 -20
  291. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +3 -3
  292. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +1 -1
  293. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h +6 -6
  294. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c +4 -4
  295. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h +53 -33
  296. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c +14 -14
  297. data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h +12 -0
  298. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h +20 -36
  299. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +2 -2
  300. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +52 -77
  301. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +10 -10
  302. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +684 -692
  303. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +215 -215
  304. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h +17 -13
  305. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c +4 -4
  306. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +15 -3
  307. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +2 -2
  308. data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h +4 -0
  309. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +7 -7
  310. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +3 -3
  311. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h +19 -15
  312. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c +7 -7
  313. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h +7 -7
  314. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c +3 -3
  315. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h +16 -16
  316. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c +10 -10
  317. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h +310 -407
  318. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c +96 -96
  319. data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h +8 -0
  320. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h +65 -61
  321. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c +27 -27
  322. data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb.h +19 -19
  323. data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.c +6 -6
  324. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +25 -25
  325. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c +9 -9
  326. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h +34 -34
  327. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c +9 -9
  328. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +7 -3
  329. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +2 -2
  330. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +322 -294
  331. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +105 -105
  332. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +7 -3
  333. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c +1 -1
  334. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +23 -23
  335. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c +8 -8
  336. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +88 -84
  337. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +28 -28
  338. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +4 -0
  339. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +99 -87
  340. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +31 -31
  341. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h +32 -24
  342. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +5 -5
  343. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h +138 -168
  344. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c +43 -43
  345. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h +6 -6
  346. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c +2 -2
  347. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h +64 -60
  348. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c +26 -26
  349. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h +7 -7
  350. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c +3 -3
  351. data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h +4 -0
  352. data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h +4 -0
  353. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h +10 -6
  354. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c +2 -2
  355. data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h +4 -0
  356. data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h +4 -0
  357. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h +11 -7
  358. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c +3 -3
  359. data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h +4 -0
  360. data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h +4 -0
  361. data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h +8 -0
  362. data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h +8 -0
  363. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h +15 -11
  364. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c +4 -4
  365. data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h +4 -0
  366. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h +4 -0
  367. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +93 -133
  368. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +20 -20
  369. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +92 -123
  370. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +27 -27
  371. data/src/core/ext/upb-gen/google/api/http.upb.h +55 -51
  372. data/src/core/ext/upb-gen/google/api/http.upb_minitable.c +22 -22
  373. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb.h +516 -317
  374. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c +150 -100
  375. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.h +5 -0
  376. data/src/core/ext/upb-gen/google/protobuf/struct.upb.h +13 -33
  377. data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h +9 -28
  378. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h +199 -142
  379. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c +37 -31
  380. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h +154 -0
  381. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.c +40 -2
  382. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.h +4 -0
  383. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h +14 -6
  384. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c +4 -4
  385. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h +21 -40
  386. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c +3 -3
  387. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h +70 -108
  388. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c +17 -17
  389. data/src/core/ext/upb-gen/validate/validate.upb.h +380 -368
  390. data/src/core/ext/upb-gen/validate/validate.upb_minitable.c +117 -117
  391. data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h +4 -0
  392. data/src/core/ext/upb-gen/xds/core/v3/context_params.upb.h +9 -28
  393. data/src/core/ext/upb-gen/xds/core/v3/resource.upb.h +7 -7
  394. data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c +3 -3
  395. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h +20 -12
  396. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c +2 -2
  397. data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h +27 -84
  398. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +7 -7
  399. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +3 -3
  400. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h +3 -3
  401. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c +1 -1
  402. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h +42 -46
  403. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c +3 -3
  404. data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h +4 -0
  405. data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h +4 -0
  406. data/src/core/ext/upb-gen/xds/type/v3/cel.upb.h +4 -0
  407. data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.c +123 -62
  408. data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.h +5 -1
  409. data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.c +200 -101
  410. data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.h +5 -1
  411. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.c +152 -77
  412. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.h +5 -1
  413. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.c +524 -255
  414. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.h +5 -1
  415. data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.c +44 -23
  416. data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.h +5 -1
  417. data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.c +66 -34
  418. data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.h +5 -1
  419. data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.c +54 -28
  420. data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.h +5 -1
  421. data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.c +46 -25
  422. data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.h +5 -1
  423. data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.c +47 -25
  424. data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.h +5 -1
  425. data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.c +256 -126
  426. data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.h +5 -1
  427. data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.c +50 -28
  428. data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.h +5 -1
  429. data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.c +55 -28
  430. data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.h +5 -1
  431. data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.c +34 -18
  432. data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.h +5 -1
  433. data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.c +414 -206
  434. data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.h +5 -1
  435. data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +831 -413
  436. data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +5 -1
  437. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +143 -73
  438. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +5 -1
  439. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c +1132 -557
  440. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h +5 -1
  441. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.c +63 -34
  442. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.h +5 -1
  443. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.c +255 -127
  444. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.h +5 -1
  445. data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.c +363 -178
  446. data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.h +5 -1
  447. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.c +227 -114
  448. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.h +5 -1
  449. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.c +57 -31
  450. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.h +5 -1
  451. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c +596 -295
  452. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h +5 -1
  453. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.c +271 -137
  454. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.h +5 -1
  455. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.c +56 -30
  456. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.h +5 -1
  457. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.c +45 -25
  458. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.h +5 -1
  459. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.c +59 -31
  460. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.h +5 -1
  461. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.c +438 -217
  462. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.h +5 -1
  463. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.c +441 -221
  464. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.h +5 -1
  465. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.c +55 -30
  466. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.h +5 -1
  467. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.c +57 -31
  468. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.h +5 -1
  469. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c +619 -303
  470. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.h +5 -1
  471. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.c +70 -36
  472. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h +5 -1
  473. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.c +62 -33
  474. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.h +5 -1
  475. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_cmsg_headers.upbdefs.c +47 -25
  476. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_cmsg_headers.upbdefs.h +5 -1
  477. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.c +97 -49
  478. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h +5 -1
  479. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.c +97 -51
  480. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h +5 -1
  481. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.c +51 -27
  482. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.h +5 -1
  483. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.c +147 -76
  484. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.h +5 -1
  485. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +230 -116
  486. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +5 -1
  487. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.c +277 -138
  488. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.h +5 -1
  489. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.c +48 -26
  490. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.h +5 -1
  491. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.c +388 -197
  492. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h +5 -1
  493. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.c +304 -153
  494. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.h +5 -1
  495. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.c +173 -90
  496. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.h +5 -1
  497. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.c +90 -47
  498. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.h +5 -1
  499. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.c +98 -51
  500. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.h +5 -1
  501. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.c +196 -99
  502. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.h +5 -1
  503. data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.c +237 -118
  504. data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.h +5 -1
  505. data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.c +418 -210
  506. data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.h +5 -1
  507. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.c +194 -99
  508. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.h +5 -1
  509. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c +2003 -973
  510. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.h +5 -1
  511. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.c +101 -53
  512. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.h +5 -1
  513. data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.c +352 -176
  514. data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.h +5 -1
  515. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.c +79 -42
  516. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.h +5 -1
  517. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.c +67 -37
  518. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.h +5 -1
  519. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.c +63 -34
  520. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.h +5 -1
  521. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.c +88 -47
  522. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.h +5 -1
  523. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.c +80 -43
  524. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.h +5 -1
  525. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.c +53 -29
  526. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.h +5 -1
  527. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.c +86 -46
  528. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.h +5 -1
  529. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.c +55 -32
  530. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.h +5 -1
  531. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.c +91 -49
  532. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.h +5 -1
  533. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.c +105 -55
  534. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.h +5 -1
  535. data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.c +775 -379
  536. data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.h +5 -1
  537. data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +52 -28
  538. data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +5 -1
  539. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +134 -68
  540. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +5 -1
  541. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +189 -96
  542. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +5 -1
  543. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.c +116 -61
  544. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.h +5 -1
  545. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +112 -58
  546. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +5 -1
  547. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.c +160 -82
  548. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.h +5 -1
  549. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +75 -39
  550. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h +5 -1
  551. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +1161 -570
  552. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +5 -1
  553. data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.c +52 -28
  554. data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h +5 -1
  555. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.c +55 -29
  556. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.h +5 -1
  557. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +48 -26
  558. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +5 -1
  559. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +390 -194
  560. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +5 -1
  561. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +126 -65
  562. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +5 -1
  563. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +498 -246
  564. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +5 -1
  565. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c +74 -38
  566. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +5 -1
  567. data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.c +221 -110
  568. data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h +5 -1
  569. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.c +68 -36
  570. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.h +5 -1
  571. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.c +378 -187
  572. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.h +5 -1
  573. data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.c +100 -52
  574. data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.h +5 -1
  575. data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.c +257 -129
  576. data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.h +5 -1
  577. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.c +44 -24
  578. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h +5 -1
  579. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.c +68 -35
  580. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.h +5 -1
  581. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/address.upbdefs.c +38 -20
  582. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/address.upbdefs.h +5 -1
  583. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.c +59 -32
  584. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.h +5 -1
  585. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.c +65 -34
  586. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.h +5 -1
  587. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.c +72 -38
  588. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.h +5 -1
  589. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.c +57 -31
  590. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.h +5 -1
  591. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.c +52 -29
  592. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.h +5 -1
  593. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.c +51 -28
  594. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.h +5 -1
  595. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.c +89 -47
  596. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.h +5 -1
  597. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.c +37 -20
  598. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.h +5 -1
  599. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.c +89 -47
  600. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.h +5 -1
  601. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.c +67 -35
  602. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.h +5 -1
  603. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.c +112 -58
  604. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h +5 -1
  605. data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.c +110 -56
  606. data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.h +5 -1
  607. data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.c +123 -62
  608. data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.h +5 -1
  609. data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.c +59 -31
  610. data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.h +5 -1
  611. data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.c +30 -16
  612. data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.h +5 -1
  613. data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.c +143 -72
  614. data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.h +5 -1
  615. data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.c +61 -32
  616. data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.h +5 -1
  617. data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.c +51 -27
  618. data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.h +5 -1
  619. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.c +85 -45
  620. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.h +5 -1
  621. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.c +35 -19
  622. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.h +5 -1
  623. data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.c +44 -23
  624. data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.h +5 -1
  625. data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.c +61 -33
  626. data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.h +5 -1
  627. data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.c +35 -19
  628. data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.h +5 -1
  629. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.c +272 -133
  630. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.h +5 -1
  631. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.c +315 -154
  632. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h +5 -1
  633. data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.c +64 -33
  634. data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.h +5 -1
  635. data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.c +35 -19
  636. data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.h +5 -1
  637. data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.c +26 -15
  638. data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.h +5 -1
  639. data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c +1106 -497
  640. data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h +10 -1
  641. data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.c +28 -16
  642. data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.h +5 -1
  643. data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.c +23 -13
  644. data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.h +5 -1
  645. data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.c +69 -35
  646. data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.h +5 -1
  647. data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.c +29 -16
  648. data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.h +5 -1
  649. data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.c +51 -26
  650. data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h +5 -1
  651. data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.c +32 -17
  652. data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h +5 -1
  653. data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.c +161 -79
  654. data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +5 -1
  655. data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.c +84 -42
  656. data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.h +5 -1
  657. data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.c +48 -26
  658. data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.h +5 -1
  659. data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.c +26 -14
  660. data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.h +5 -1
  661. data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.c +50 -26
  662. data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.h +5 -1
  663. data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.c +36 -19
  664. data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.h +5 -1
  665. data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.c +538 -261
  666. data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.h +5 -1
  667. data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.c +86 -43
  668. data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.h +5 -1
  669. data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.c +49 -26
  670. data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.h +5 -1
  671. data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.c +27 -15
  672. data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.h +5 -1
  673. data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.c +87 -44
  674. data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.h +5 -1
  675. data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.c +37 -20
  676. data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.h +5 -1
  677. data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.c +30 -17
  678. data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.h +5 -1
  679. data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.c +41 -23
  680. data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.h +5 -1
  681. data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.c +62 -33
  682. data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.h +5 -1
  683. data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.c +36 -19
  684. data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.h +5 -1
  685. data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.c +36 -20
  686. data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.h +5 -1
  687. data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.c +42 -23
  688. data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.h +5 -1
  689. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.c +76 -39
  690. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.h +5 -1
  691. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.c +45 -24
  692. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.h +5 -1
  693. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.c +41 -23
  694. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.h +5 -1
  695. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.c +53 -29
  696. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.h +5 -1
  697. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.c +29 -16
  698. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.h +5 -1
  699. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.c +58 -32
  700. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.h +5 -1
  701. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.c +207 -103
  702. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.h +5 -1
  703. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.c +95 -49
  704. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.h +5 -1
  705. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.c +38 -20
  706. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.h +5 -1
  707. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.c +60 -31
  708. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.h +5 -1
  709. data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.c +67 -36
  710. data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.h +5 -1
  711. data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.c +31 -17
  712. data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.h +5 -1
  713. data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.c +31 -17
  714. data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h +5 -1
  715. data/src/core/{lib/security/transport → filter/auth}/auth_filters.h +8 -7
  716. data/src/core/{lib/security/transport → filter/auth}/client_auth_filter.cc +7 -6
  717. data/src/core/{lib/security/transport → filter/auth}/server_auth_filter.cc +5 -4
  718. data/src/core/handshaker/handshaker.cc +0 -8
  719. data/src/core/handshaker/http_connect/http_proxy_mapper.cc +7 -22
  720. data/src/core/handshaker/security/legacy_secure_endpoint.cc +596 -0
  721. data/src/core/handshaker/security/secure_endpoint.cc +769 -312
  722. data/src/core/handshaker/security/secure_endpoint.h +17 -0
  723. data/src/core/handshaker/security/security_handshaker.cc +4 -4
  724. data/src/core/handshaker/security/security_handshaker.h +1 -1
  725. data/src/core/lib/address_utils/sockaddr_utils.cc +5 -5
  726. data/src/core/lib/channel/channel_args.h +53 -30
  727. data/src/core/lib/channel/channel_stack.cc +29 -0
  728. data/src/core/lib/channel/channel_stack.h +10 -2
  729. data/src/core/lib/channel/channel_stack_builder_impl.cc +1 -1
  730. data/src/core/lib/channel/connected_channel.cc +2 -2
  731. data/src/core/lib/channel/promise_based_filter.h +710 -302
  732. data/src/core/lib/debug/trace_flags.cc +4 -6
  733. data/src/core/lib/debug/trace_flags.h +2 -3
  734. data/src/core/lib/event_engine/cf_engine/cf_engine.cc +6 -2
  735. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +4 -4
  736. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.h +14 -6
  737. data/src/core/lib/event_engine/default_event_engine_factory.cc +6 -6
  738. data/src/core/lib/event_engine/default_event_engine_factory.h +1 -1
  739. data/src/core/lib/event_engine/extensions/blocking_dns.h +46 -0
  740. data/src/core/lib/event_engine/extensions/channelz.h +62 -0
  741. data/src/core/lib/event_engine/extensions/iomgr_compatible.h +39 -0
  742. data/src/core/lib/event_engine/extensions/supports_win_sockets.h +48 -0
  743. data/src/core/lib/event_engine/extensions/tcp_trace.h +2 -2
  744. data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.cc +4 -7
  745. data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h +3 -0
  746. data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +6 -9
  747. data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +28 -22
  748. data/src/core/lib/event_engine/posix_engine/posix_engine.cc +23 -3
  749. data/src/core/lib/event_engine/posix_engine/posix_engine.h +15 -15
  750. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +26 -0
  751. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h +4 -0
  752. data/src/core/lib/event_engine/posix_engine/set_socket_dualstack.cc +64 -0
  753. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +0 -11
  754. data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc +10 -2
  755. data/src/core/lib/event_engine/query_extensions.h +10 -21
  756. data/src/core/lib/event_engine/shim.cc +9 -16
  757. data/src/core/lib/event_engine/shim.h +11 -0
  758. data/src/core/lib/event_engine/tcp_socket_utils.cc +10 -9
  759. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +15 -7
  760. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +2 -1
  761. data/src/core/lib/event_engine/utils.cc +34 -0
  762. data/src/core/lib/event_engine/utils.h +3 -0
  763. data/src/core/lib/event_engine/windows/win_socket.cc +11 -0
  764. data/src/core/lib/event_engine/windows/win_socket.h +3 -0
  765. data/src/core/lib/event_engine/windows/windows_endpoint.cc +7 -12
  766. data/src/core/lib/event_engine/windows/windows_endpoint.h +9 -2
  767. data/src/core/lib/event_engine/windows/windows_engine.cc +42 -0
  768. data/src/core/lib/event_engine/windows/windows_engine.h +8 -2
  769. data/src/core/lib/event_engine/windows/windows_listener.cc +5 -6
  770. data/src/core/lib/event_engine/windows/windows_listener.h +9 -4
  771. data/src/core/lib/experiments/experiments.cc +369 -69
  772. data/src/core/lib/experiments/experiments.h +148 -48
  773. data/src/core/lib/iomgr/combiner.cc +3 -2
  774. data/src/core/lib/iomgr/endpoint_pair_posix.cc +43 -16
  775. data/src/core/lib/iomgr/endpoint_pair_windows.cc +43 -8
  776. data/src/core/lib/iomgr/error.cc +27 -43
  777. data/src/core/lib/iomgr/ev_epoll1_linux.cc +13 -1
  778. data/src/core/lib/iomgr/ev_poll_posix.cc +17 -0
  779. data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +11 -8
  780. data/src/core/lib/iomgr/fork_posix.cc +0 -7
  781. data/src/core/lib/iomgr/iomgr.cc +0 -3
  782. data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +3 -0
  783. data/src/core/lib/iomgr/polling_entity.cc +2 -7
  784. data/src/core/lib/iomgr/resolve_address_posix.cc +37 -47
  785. data/src/core/lib/iomgr/resolve_address_posix.h +15 -0
  786. data/src/core/lib/iomgr/resolve_address_windows.cc +22 -45
  787. data/src/core/lib/iomgr/resolve_address_windows.h +15 -2
  788. data/src/core/lib/iomgr/socket_utils_common_posix.cc +1 -0
  789. data/src/core/lib/iomgr/socket_utils_posix.cc +22 -11
  790. data/src/core/lib/iomgr/socket_utils_posix.h +12 -2
  791. data/src/core/lib/iomgr/tcp_client_cfstream.cc +8 -9
  792. data/src/core/lib/iomgr/tcp_client_posix.cc +25 -21
  793. data/src/core/lib/iomgr/tcp_client_posix.h +1 -1
  794. data/src/core/lib/iomgr/tcp_posix.cc +72 -43
  795. data/src/core/lib/iomgr/tcp_posix.h +10 -2
  796. data/src/core/lib/iomgr/tcp_server_posix.cc +9 -1
  797. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +1 -4
  798. data/src/core/lib/iomgr/tcp_server_windows.cc +41 -18
  799. data/src/core/lib/iomgr/wakeup_fd_pipe.cc +10 -2
  800. data/src/core/lib/promise/all_ok.h +31 -0
  801. data/src/core/lib/promise/detail/promise_like.h +24 -0
  802. data/src/core/lib/promise/detail/seq_state.h +741 -0
  803. data/src/core/lib/promise/loop.h +8 -5
  804. data/src/core/lib/promise/map.h +82 -2
  805. data/src/core/lib/promise/party.h +5 -1
  806. data/src/core/lib/promise/poll.h +22 -20
  807. data/src/core/lib/promise/promise.h +4 -2
  808. data/src/core/lib/promise/seq.h +2 -0
  809. data/src/core/lib/promise/sleep.cc +6 -3
  810. data/src/core/lib/promise/status_flag.h +23 -11
  811. data/src/core/lib/promise/try_seq.h +2 -0
  812. data/src/core/lib/resource_quota/memory_quota.cc +9 -0
  813. data/src/core/lib/resource_quota/memory_quota.h +1 -3
  814. data/src/core/lib/security/authorization/evaluate_args.cc +1 -1
  815. data/src/core/lib/security/authorization/evaluate_args.h +1 -1
  816. data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +1 -1
  817. data/src/core/lib/security/authorization/grpc_server_authz_filter.h +1 -1
  818. data/src/core/lib/slice/slice.h +6 -0
  819. data/src/core/lib/slice/slice_buffer.h +6 -0
  820. data/src/core/lib/surface/call.cc +24 -18
  821. data/src/core/lib/surface/call_utils.cc +3 -3
  822. data/src/core/lib/surface/call_utils.h +3 -3
  823. data/src/core/lib/surface/channel.h +2 -2
  824. data/src/core/lib/surface/channel_create.cc +61 -1
  825. data/src/core/lib/surface/channel_init.h +2 -2
  826. data/src/core/lib/surface/completion_queue.cc +77 -17
  827. data/src/core/lib/surface/filter_stack_call.cc +40 -27
  828. data/src/core/lib/surface/filter_stack_call.h +1 -1
  829. data/src/core/lib/surface/init.cc +4 -5
  830. data/src/core/lib/surface/lame_client.cc +1 -1
  831. data/src/core/lib/surface/legacy_channel.cc +27 -23
  832. data/src/core/lib/surface/legacy_channel.h +1 -1
  833. data/src/core/lib/surface/version.cc +2 -2
  834. data/src/core/lib/transport/error_utils.cc +65 -11
  835. data/src/core/lib/transport/error_utils.h +2 -2
  836. data/src/core/lib/transport/status_conversion.cc +11 -36
  837. data/src/core/lib/transport/status_conversion.h +5 -4
  838. data/src/core/lib/transport/transport.cc +2 -2
  839. data/src/core/lib/transport/transport.h +8 -5
  840. data/src/core/lib/transport/transport_op_string.cc +1 -1
  841. data/src/core/load_balancing/backend_metric_parser.cc +12 -18
  842. data/src/core/load_balancing/delegating_helper.h +1 -1
  843. data/src/core/load_balancing/grpclb/client_load_reporting_filter.cc +1 -1
  844. data/src/core/load_balancing/grpclb/grpclb.cc +3 -4
  845. data/src/core/load_balancing/health_check_client.cc +2 -4
  846. data/src/core/load_balancing/oob_backend_metric.cc +2 -4
  847. data/src/core/load_balancing/outlier_detection/outlier_detection.cc +4 -3
  848. data/src/core/load_balancing/pick_first/pick_first.cc +3 -958
  849. data/src/core/load_balancing/rls/rls.cc +37 -42
  850. data/src/core/load_balancing/round_robin/round_robin.cc +2 -3
  851. data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc +4 -4
  852. data/src/core/load_balancing/weighted_target/weighted_target.cc +4 -10
  853. data/src/core/load_balancing/xds/cds.cc +3 -10
  854. data/src/core/load_balancing/xds/xds_cluster_impl.cc +1 -1
  855. data/src/core/load_balancing/xds/xds_override_host.cc +55 -34
  856. data/src/core/plugin_registry/grpc_plugin_registry.cc +4 -0
  857. data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +0 -2
  858. data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +1 -3
  859. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +4 -0
  860. data/src/core/resolver/google_c2p/google_c2p_resolver.cc +1 -1
  861. data/src/core/resolver/sockaddr/sockaddr_resolver.cc +2 -1
  862. data/src/core/resolver/xds/xds_dependency_manager.cc +8 -3
  863. data/src/core/resolver/xds/xds_resolver.cc +4 -3
  864. data/src/core/server/add_port.cc +87 -0
  865. data/src/core/server/server.cc +55 -57
  866. data/src/core/server/server.h +4 -6
  867. data/src/core/server/server_call_tracer_filter.cc +1 -1
  868. data/src/core/server/server_config_selector.h +1 -1
  869. data/src/core/server/server_config_selector_filter.cc +1 -1
  870. data/src/core/server/xds_server_config_fetcher.cc +5 -5
  871. data/src/core/service_config/service_config_channel_arg_filter.cc +1 -1
  872. data/src/core/telemetry/call_tracer.cc +4 -6
  873. data/src/core/telemetry/call_tracer.h +4 -4
  874. data/src/core/{ext/transport/chttp2/transport → telemetry}/context_list_entry.h +6 -6
  875. data/src/core/telemetry/default_tcp_tracer.cc +26 -0
  876. data/src/core/telemetry/default_tcp_tracer.h +44 -0
  877. data/src/core/telemetry/metrics.cc +30 -12
  878. data/src/core/telemetry/metrics.h +15 -3
  879. data/src/core/telemetry/stats.h +0 -5
  880. data/src/core/telemetry/stats_data.cc +400 -285
  881. data/src/core/telemetry/stats_data.h +279 -143
  882. data/src/core/telemetry/tcp_tracer.cc +38 -0
  883. data/src/core/telemetry/tcp_tracer.h +103 -99
  884. data/src/core/{lib/security/context/security_context.cc → transport/auth_context.cc} +1 -97
  885. data/src/core/{lib/security/context/security_context.h → transport/auth_context.h} +5 -76
  886. data/src/core/transport/endpoint_transport.h +90 -0
  887. data/src/core/transport/endpoint_transport_client_channel_factory.cc +61 -0
  888. data/src/core/transport/endpoint_transport_client_channel_factory.h +57 -0
  889. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +33 -1
  890. data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +3 -1
  891. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +76 -22
  892. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +9 -3
  893. data/src/core/tsi/ssl_transport_security.cc +190 -72
  894. data/src/core/tsi/ssl_transport_security.h +6 -1
  895. data/src/core/tsi/transport_security.h +3 -0
  896. data/src/core/tsi/transport_security_grpc.h +7 -3
  897. data/src/core/tsi/transport_security_interface.h +30 -25
  898. data/src/core/util/backoff.cc +7 -14
  899. data/src/core/util/backoff.h +0 -1
  900. data/src/core/util/check_class_size.h +48 -0
  901. data/src/core/util/dual_ref_counted.h +48 -0
  902. data/src/core/util/function_signature.h +66 -0
  903. data/src/core/util/gcp_metadata_query.cc +4 -3
  904. data/src/core/util/http_client/httpcli.cc +3 -3
  905. data/src/core/util/http_client/httpcli_security_connector.cc +5 -4
  906. data/src/core/util/json/json_object_loader.h +3 -3
  907. data/src/core/util/latent_see.cc +28 -2
  908. data/src/core/util/latent_see.h +11 -23
  909. data/src/core/util/linux/env.cc +3 -1
  910. data/src/core/util/load_file.cc +26 -14
  911. data/src/core/util/ref_counted_ptr.h +26 -0
  912. data/src/core/util/shared_bit_gen.cc +21 -0
  913. data/src/core/util/shared_bit_gen.h +44 -0
  914. data/src/core/util/single_set_ptr.h +35 -4
  915. data/src/core/util/status_helper.cc +86 -63
  916. data/src/core/util/status_helper.h +9 -26
  917. data/src/core/util/uri.cc +75 -17
  918. data/src/core/util/uri.h +13 -8
  919. data/src/core/xds/grpc/certificate_provider_store.cc +1 -1
  920. data/src/core/xds/grpc/certificate_provider_store.h +3 -3
  921. data/src/core/xds/grpc/file_watcher_certificate_provider_factory.cc +3 -3
  922. data/src/core/xds/grpc/file_watcher_certificate_provider_factory.h +1 -1
  923. data/src/core/xds/grpc/xds_bootstrap_grpc.cc +10 -7
  924. data/src/core/xds/grpc/xds_certificate_provider.cc +1 -1
  925. data/src/core/xds/grpc/xds_certificate_provider.h +2 -2
  926. data/src/core/xds/grpc/xds_client_grpc.cc +7 -6
  927. data/src/core/xds/grpc/xds_client_grpc.h +4 -2
  928. data/src/core/xds/grpc/xds_cluster.h +3 -3
  929. data/src/core/xds/grpc/xds_cluster_parser.cc +3 -2
  930. data/src/core/xds/grpc/xds_common_types_parser.cc +1 -9
  931. data/src/core/xds/grpc/xds_http_fault_filter.cc +1 -1
  932. data/src/core/xds/grpc/xds_http_filter.h +1 -1
  933. data/src/core/xds/grpc/xds_http_filter_registry.cc +1 -3
  934. data/src/core/xds/grpc/xds_http_filter_registry.h +1 -1
  935. data/src/core/xds/grpc/xds_http_rbac_filter.cc +10 -17
  936. data/src/core/xds/grpc/xds_metadata_parser.cc +40 -64
  937. data/src/core/xds/grpc/xds_metadata_parser.h +0 -2
  938. data/src/core/xds/grpc/xds_route_config.h +1 -1
  939. data/src/core/xds/grpc/xds_route_config_parser.cc +56 -78
  940. data/src/core/xds/grpc/xds_route_config_parser.h +1 -1
  941. data/src/core/xds/grpc/xds_routing.h +1 -1
  942. data/src/core/xds/grpc/xds_server_grpc.cc +60 -48
  943. data/src/core/xds/grpc/xds_server_grpc.h +23 -13
  944. data/src/core/xds/grpc/xds_server_grpc_interface.h +2 -2
  945. data/src/core/xds/grpc/xds_transport_grpc.cc +5 -5
  946. data/src/core/xds/grpc/xds_transport_grpc.h +5 -3
  947. data/src/core/xds/xds_client/lrs_client.cc +6 -5
  948. data/src/core/xds/xds_client/lrs_client.h +7 -7
  949. data/src/core/xds/xds_client/xds_bootstrap.h +16 -1
  950. data/src/core/xds/xds_client/xds_client.cc +26 -24
  951. data/src/core/xds/xds_client/xds_client.h +3 -1
  952. data/src/core/xds/xds_client/xds_resource_type.h +1 -2
  953. data/src/core/xds/xds_client/xds_transport.h +1 -1
  954. data/src/ruby/ext/grpc/extconf.rb +2 -2
  955. data/src/ruby/lib/grpc/version.rb +1 -1
  956. data/src/ruby/spec/generic/client_stub_spec.rb +2 -6
  957. data/src/ruby/spec/generic/rpc_server_spec.rb +1 -1
  958. data/third_party/abseil-cpp/absl/algorithm/algorithm.h +2 -2
  959. data/third_party/abseil-cpp/absl/algorithm/container.h +79 -48
  960. data/third_party/abseil-cpp/absl/base/attributes.h +66 -16
  961. data/third_party/abseil-cpp/absl/base/call_once.h +8 -5
  962. data/third_party/abseil-cpp/absl/base/config.h +4 -4
  963. data/third_party/abseil-cpp/absl/base/internal/nullability_impl.h +17 -56
  964. data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +1 -1
  965. data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +14 -0
  966. data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +5 -1
  967. data/third_party/abseil-cpp/absl/base/internal/tracing.cc +39 -0
  968. data/third_party/abseil-cpp/absl/base/internal/tracing.h +81 -0
  969. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +0 -10
  970. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h +12 -0
  971. data/third_party/abseil-cpp/absl/base/macros.h +35 -4
  972. data/third_party/abseil-cpp/absl/base/nullability.h +72 -16
  973. data/third_party/abseil-cpp/absl/base/optimization.h +8 -12
  974. data/third_party/abseil-cpp/absl/base/options.h +5 -2
  975. data/third_party/abseil-cpp/absl/base/policy_checks.h +2 -0
  976. data/third_party/abseil-cpp/absl/container/btree_map.h +889 -0
  977. data/third_party/abseil-cpp/absl/container/btree_set.h +824 -0
  978. data/third_party/abseil-cpp/absl/container/fixed_array.h +2 -1
  979. data/third_party/abseil-cpp/absl/container/flat_hash_map.h +17 -3
  980. data/third_party/abseil-cpp/absl/container/flat_hash_set.h +17 -3
  981. data/third_party/abseil-cpp/absl/container/inlined_vector.h +2 -1
  982. data/third_party/abseil-cpp/absl/container/internal/btree.h +3046 -0
  983. data/third_party/abseil-cpp/absl/container/internal/btree_container.h +763 -0
  984. data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +9 -0
  985. data/third_party/abseil-cpp/absl/container/internal/container_memory.h +1 -0
  986. data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +4 -2
  987. data/third_party/abseil-cpp/absl/container/internal/layout.h +1 -1
  988. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +142 -114
  989. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +397 -231
  990. data/third_party/abseil-cpp/absl/crc/internal/cpu_detect.cc +56 -0
  991. data/third_party/abseil-cpp/absl/crc/internal/non_temporal_memcpy.h +21 -7
  992. data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +4 -2
  993. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +1 -1
  994. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +17 -1
  995. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_config.h +7 -0
  996. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_riscv-inl.inc +9 -6
  997. data/third_party/abseil-cpp/absl/debugging/leak_check.cc +73 -0
  998. data/third_party/abseil-cpp/absl/debugging/leak_check.h +150 -0
  999. data/third_party/abseil-cpp/absl/debugging/symbolize.cc +3 -2
  1000. data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +48 -9
  1001. data/third_party/abseil-cpp/absl/flags/commandlineflag.cc +1 -0
  1002. data/third_party/abseil-cpp/absl/flags/commandlineflag.h +7 -0
  1003. data/third_party/abseil-cpp/absl/flags/flag.h +14 -12
  1004. data/third_party/abseil-cpp/absl/flags/internal/flag.cc +12 -4
  1005. data/third_party/abseil-cpp/absl/flags/internal/flag.h +16 -5
  1006. data/third_party/abseil-cpp/absl/flags/internal/private_handle_accessor.cc +4 -0
  1007. data/third_party/abseil-cpp/absl/flags/internal/private_handle_accessor.h +3 -0
  1008. data/third_party/abseil-cpp/absl/flags/internal/program_name.cc +13 -12
  1009. data/third_party/abseil-cpp/absl/flags/usage_config.cc +9 -4
  1010. data/third_party/abseil-cpp/absl/hash/hash.h +26 -2
  1011. data/third_party/abseil-cpp/absl/hash/internal/hash.cc +17 -17
  1012. data/third_party/abseil-cpp/absl/hash/internal/hash.h +196 -91
  1013. data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +2 -4
  1014. data/third_party/abseil-cpp/absl/log/absl_vlog_is_on.h +2 -0
  1015. data/third_party/abseil-cpp/absl/log/internal/check_op.cc +27 -22
  1016. data/third_party/abseil-cpp/absl/log/internal/check_op.h +102 -80
  1017. data/third_party/abseil-cpp/absl/log/internal/log_message.cc +90 -38
  1018. data/third_party/abseil-cpp/absl/log/internal/log_message.h +80 -48
  1019. data/third_party/abseil-cpp/absl/log/internal/proto.cc +0 -3
  1020. data/third_party/abseil-cpp/absl/log/internal/proto.h +25 -15
  1021. data/third_party/abseil-cpp/absl/log/internal/structured_proto.cc +115 -0
  1022. data/third_party/abseil-cpp/absl/log/internal/structured_proto.h +107 -0
  1023. data/third_party/abseil-cpp/absl/log/internal/vlog_config.cc +8 -1
  1024. data/third_party/abseil-cpp/absl/log/log_sink_registry.h +5 -2
  1025. data/third_party/abseil-cpp/absl/log/vlog_is_on.h +2 -0
  1026. data/third_party/abseil-cpp/absl/meta/type_traits.h +16 -6
  1027. data/third_party/abseil-cpp/absl/numeric/int128.h +15 -3
  1028. data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +6 -4
  1029. data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +6 -3
  1030. data/third_party/abseil-cpp/absl/random/bernoulli_distribution.h +3 -1
  1031. data/third_party/abseil-cpp/absl/random/beta_distribution.h +3 -1
  1032. data/third_party/abseil-cpp/absl/random/bit_gen_ref.h +2 -1
  1033. data/third_party/abseil-cpp/absl/random/discrete_distribution.cc +10 -0
  1034. data/third_party/abseil-cpp/absl/random/discrete_distribution.h +4 -2
  1035. data/third_party/abseil-cpp/absl/random/exponential_distribution.h +1 -0
  1036. data/third_party/abseil-cpp/absl/random/gaussian_distribution.h +2 -1
  1037. data/third_party/abseil-cpp/absl/random/internal/distribution_caller.h +3 -1
  1038. data/third_party/abseil-cpp/absl/random/internal/iostream_state_saver.h +5 -2
  1039. data/third_party/abseil-cpp/absl/random/internal/platform.h +12 -12
  1040. data/third_party/abseil-cpp/absl/random/internal/randen_detect.cc +56 -5
  1041. data/third_party/abseil-cpp/absl/random/internal/randen_engine.h +2 -1
  1042. data/third_party/abseil-cpp/absl/random/internal/uniform_helper.h +2 -2
  1043. data/third_party/abseil-cpp/absl/random/internal/wide_multiply.h +0 -1
  1044. data/third_party/abseil-cpp/absl/random/log_uniform_int_distribution.h +1 -4
  1045. data/third_party/abseil-cpp/absl/random/poisson_distribution.h +4 -3
  1046. data/third_party/abseil-cpp/absl/random/seed_gen_exception.cc +2 -3
  1047. data/third_party/abseil-cpp/absl/random/seed_sequences.h +1 -2
  1048. data/third_party/abseil-cpp/absl/random/uniform_int_distribution.h +2 -1
  1049. data/third_party/abseil-cpp/absl/random/uniform_real_distribution.h +2 -0
  1050. data/third_party/abseil-cpp/absl/random/zipf_distribution.h +5 -4
  1051. data/third_party/abseil-cpp/absl/status/internal/status_internal.cc +8 -4
  1052. data/third_party/abseil-cpp/absl/status/internal/status_internal.h +1 -1
  1053. data/third_party/abseil-cpp/absl/status/status.h +1 -1
  1054. data/third_party/abseil-cpp/absl/strings/ascii.cc +41 -26
  1055. data/third_party/abseil-cpp/absl/strings/ascii.h +48 -8
  1056. data/third_party/abseil-cpp/absl/strings/charconv.cc +4 -7
  1057. data/third_party/abseil-cpp/absl/strings/charset.h +3 -4
  1058. data/third_party/abseil-cpp/absl/strings/cord.h +5 -19
  1059. data/third_party/abseil-cpp/absl/strings/escaping.cc +56 -48
  1060. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +1 -1
  1061. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +48 -15
  1062. data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +3 -2
  1063. data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +35 -0
  1064. data/third_party/abseil-cpp/absl/strings/match.h +21 -11
  1065. data/third_party/abseil-cpp/absl/strings/numbers.cc +2 -1
  1066. data/third_party/abseil-cpp/absl/strings/str_cat.h +11 -0
  1067. data/third_party/abseil-cpp/absl/strings/str_split.h +18 -1
  1068. data/third_party/abseil-cpp/absl/strings/string_view.h +20 -19
  1069. data/third_party/abseil-cpp/absl/strings/strip.h +11 -8
  1070. data/third_party/abseil-cpp/absl/synchronization/blocking_counter.cc +16 -10
  1071. data/third_party/abseil-cpp/absl/synchronization/blocking_counter.h +6 -0
  1072. data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc +5 -1
  1073. data/third_party/abseil-cpp/absl/synchronization/mutex.cc +38 -12
  1074. data/third_party/abseil-cpp/absl/synchronization/notification.cc +10 -2
  1075. data/third_party/abseil-cpp/absl/synchronization/notification.h +11 -1
  1076. data/third_party/abseil-cpp/absl/time/duration.cc +6 -51
  1077. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +1 -1
  1078. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +1 -1
  1079. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc +3 -3
  1080. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc +2 -2
  1081. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h +2 -2
  1082. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +3 -3
  1083. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h +2 -2
  1084. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +1 -1
  1085. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.h +1 -1
  1086. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +3 -2
  1087. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.cc +1 -1
  1088. data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +6 -4
  1089. data/third_party/abseil-cpp/absl/time/time.h +84 -23
  1090. data/third_party/abseil-cpp/absl/types/internal/span.h +3 -2
  1091. data/third_party/abseil-cpp/absl/types/optional.h +4 -2
  1092. data/third_party/abseil-cpp/absl/types/span.h +85 -43
  1093. data/third_party/boringssl-with-bazel/src/crypto/aes/aes.cc +41 -0
  1094. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.cc +16 -0
  1095. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.cc +15 -0
  1096. data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +19 -3
  1097. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.cc +79 -48
  1098. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.cc +11 -19
  1099. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.cc +3 -7
  1100. data/third_party/boringssl-with-bazel/src/crypto/bcm_support.h +0 -35
  1101. data/third_party/boringssl-with-bazel/src/crypto/bio/connect.cc +0 -2
  1102. data/third_party/boringssl-with-bazel/src/crypto/bio/internal.h +3 -5
  1103. data/third_party/boringssl-with-bazel/src/crypto/bio/socket.cc +0 -3
  1104. data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.cc +0 -2
  1105. data/third_party/boringssl-with-bazel/src/crypto/bn/convert.cc +31 -47
  1106. data/third_party/boringssl-with-bazel/src/crypto/bn/div.cc +100 -0
  1107. data/third_party/boringssl-with-bazel/src/crypto/bn/exponentiation.cc +166 -0
  1108. data/third_party/boringssl-with-bazel/src/crypto/bn/sqrt.cc +93 -0
  1109. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.cc +14 -8
  1110. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.cc +1 -1
  1111. data/third_party/boringssl-with-bazel/src/crypto/bytestring/internal.h +3 -3
  1112. data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +4 -4
  1113. data/third_party/boringssl-with-bazel/src/crypto/cipher/derive_key.cc +13 -15
  1114. data/third_party/boringssl-with-bazel/src/crypto/cipher/e_aeseax.cc +289 -0
  1115. data/third_party/boringssl-with-bazel/src/crypto/cipher/e_aesgcmsiv.cc +179 -102
  1116. data/third_party/boringssl-with-bazel/src/crypto/cipher/internal.h +3 -3
  1117. data/third_party/boringssl-with-bazel/src/crypto/cms/cms.cc +172 -0
  1118. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.cc +0 -2
  1119. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_fuchsia.cc +0 -2
  1120. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_linux.cc +0 -2
  1121. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_openbsd.cc +0 -2
  1122. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.cc +0 -2
  1123. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.cc +0 -2
  1124. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.cc +0 -1
  1125. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.cc +28 -6
  1126. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.h +11 -9
  1127. data/third_party/boringssl-with-bazel/src/crypto/cpu_intel.cc +0 -6
  1128. data/third_party/boringssl-with-bazel/src/crypto/crypto.cc +1 -3
  1129. data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +3 -3
  1130. data/third_party/boringssl-with-bazel/src/crypto/des/internal.h +3 -3
  1131. data/third_party/boringssl-with-bazel/src/crypto/dh/dh_asn1.cc +13 -14
  1132. data/third_party/boringssl-with-bazel/src/crypto/dh/params.cc +27 -61
  1133. data/third_party/boringssl-with-bazel/src/crypto/digest/digest_extra.cc +16 -8
  1134. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.cc +112 -122
  1135. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.cc +23 -35
  1136. data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +3 -3
  1137. data/third_party/boringssl-with-bazel/src/crypto/ec/ec_asn1.cc +47 -63
  1138. data/third_party/boringssl-with-bazel/src/crypto/ec/hash_to_curve.cc +60 -68
  1139. data/third_party/boringssl-with-bazel/src/crypto/ec/internal.h +3 -3
  1140. data/third_party/boringssl-with-bazel/src/crypto/ecdsa/ecdsa_asn1.cc +11 -17
  1141. data/third_party/boringssl-with-bazel/src/crypto/err/err.cc +0 -2
  1142. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.cc +10 -11
  1143. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.cc +10 -11
  1144. data/third_party/boringssl-with-bazel/src/crypto/evp/internal.h +3 -3
  1145. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.cc +6 -6
  1146. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.cc +6 -6
  1147. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519_asn1.cc +6 -6
  1148. data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.cc +6 -6
  1149. data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.cc +6 -6
  1150. data/third_party/boringssl-with-bazel/src/crypto/evp/sign.cc +23 -42
  1151. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.cc.inc +29 -18
  1152. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/gcm.cc.inc +10 -10
  1153. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +16 -45
  1154. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/key_wrap.cc.inc +5 -4
  1155. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.cc.inc +15 -6
  1156. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.cc +3 -3
  1157. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm_interface.h +101 -5
  1158. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.cc.inc +96 -187
  1159. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.cc.inc +24 -512
  1160. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.cc.inc +58 -80
  1161. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.cc.inc +29 -45
  1162. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +27 -25
  1163. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/jacobi.cc.inc +7 -16
  1164. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.cc.inc +27 -48
  1165. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.cc.inc +34 -34
  1166. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.cc.inc +102 -154
  1167. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.h +3 -3
  1168. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/shift.cc.inc +3 -8
  1169. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.cc.inc +1 -78
  1170. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.cc.inc +10 -17
  1171. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/internal.h +3 -3
  1172. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/delocate.h +15 -8
  1173. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/check.cc.inc +40 -53
  1174. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.cc.inc +57 -76
  1175. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.cc.inc +4 -10
  1176. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/internal.h +3 -3
  1177. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/md32_common.h +3 -3
  1178. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.cc.inc +37 -52
  1179. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.cc.inc +13 -20
  1180. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +3 -3
  1181. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.cc.inc +28 -39
  1182. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.h +3 -3
  1183. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.cc.inc +6 -11
  1184. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/keccak/internal.h +3 -3
  1185. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/mldsa/fips_known_values.inc +1345 -0
  1186. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/mldsa/mldsa.cc.inc +335 -28
  1187. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/mlkem/fips_known_values.inc +411 -0
  1188. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/mlkem/mlkem.cc.inc +265 -33
  1189. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +3 -3
  1190. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.cc.inc +1 -1
  1191. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +3 -3
  1192. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.cc.inc +19 -26
  1193. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.cc.inc +7 -7
  1194. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.cc.inc +121 -138
  1195. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.cc.inc +96 -83
  1196. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/internal.h +3 -3
  1197. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +8 -20
  1198. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/fips_known_values.inc +674 -0
  1199. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/slhdsa/slhdsa.cc.inc +235 -60
  1200. data/third_party/boringssl-with-bazel/src/crypto/fuzzer_mode.cc +30 -0
  1201. data/third_party/boringssl-with-bazel/src/crypto/hrss/internal.h +3 -3
  1202. data/third_party/boringssl-with-bazel/src/crypto/internal.h +59 -33
  1203. data/third_party/boringssl-with-bazel/src/crypto/lhash/internal.h +3 -3
  1204. data/third_party/boringssl-with-bazel/src/crypto/md5/internal.h +3 -3
  1205. data/third_party/boringssl-with-bazel/src/crypto/mem.cc +0 -2
  1206. data/third_party/boringssl-with-bazel/src/crypto/obj/obj.cc +2 -8
  1207. data/third_party/boringssl-with-bazel/src/crypto/pem/internal.h +3 -3
  1208. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.cc +8 -13
  1209. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/internal.h +22 -8
  1210. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.cc +19 -17
  1211. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.cc +134 -136
  1212. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +14 -8
  1213. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.cc +25 -21
  1214. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.cc +36 -52
  1215. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.cc +97 -79
  1216. data/third_party/boringssl-with-bazel/src/crypto/poly1305/internal.h +3 -3
  1217. data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +3 -3
  1218. data/third_party/boringssl-with-bazel/src/crypto/rand/deterministic.cc +1 -1
  1219. data/third_party/boringssl-with-bazel/src/crypto/rand/fork_detect.cc +2 -2
  1220. data/third_party/boringssl-with-bazel/src/crypto/rand/getentropy.cc +1 -1
  1221. data/third_party/boringssl-with-bazel/src/crypto/rand/{sysrand_internal.h → internal.h} +22 -4
  1222. data/third_party/boringssl-with-bazel/src/crypto/rand/ios.cc +1 -1
  1223. data/third_party/boringssl-with-bazel/src/crypto/rand/trusty.cc +1 -1
  1224. data/third_party/boringssl-with-bazel/src/crypto/rand/urandom.cc +1 -1
  1225. data/third_party/boringssl-with-bazel/src/crypto/rand/windows.cc +1 -5
  1226. data/third_party/boringssl-with-bazel/src/crypto/rsa/internal.h +3 -3
  1227. data/third_party/boringssl-with-bazel/src/crypto/rsa/rsa_crypt.cc +14 -22
  1228. data/third_party/boringssl-with-bazel/src/crypto/spake2plus/internal.h +3 -3
  1229. data/third_party/boringssl-with-bazel/src/crypto/thread_win.cc +0 -2
  1230. data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +3 -3
  1231. data/third_party/boringssl-with-bazel/src/crypto/x509/a_sign.cc +3 -5
  1232. data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.cc +8 -12
  1233. data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +15 -3
  1234. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_conf.cc +16 -24
  1235. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_info.cc +18 -21
  1236. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.cc +10 -3
  1237. data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.cc +9 -0
  1238. data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.cc +10 -1
  1239. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.cc +64 -85
  1240. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.cc +16 -32
  1241. data/third_party/boringssl-with-bazel/src/gen/crypto/err_data.cc +576 -567
  1242. data/third_party/boringssl-with-bazel/src/include/openssl/aead.h +16 -8
  1243. data/third_party/boringssl-with-bazel/src/include/openssl/aes.h +1 -1
  1244. data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +3 -25
  1245. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +6 -54
  1246. data/third_party/boringssl-with-bazel/src/include/openssl/asn1t.h +1 -1
  1247. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +8 -4
  1248. data/third_party/boringssl-with-bazel/src/include/openssl/base64.h +1 -1
  1249. data/third_party/boringssl-with-bazel/src/include/openssl/bcm_public.h +1 -1
  1250. data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +1 -1
  1251. data/third_party/boringssl-with-bazel/src/include/openssl/blake2.h +1 -1
  1252. data/third_party/boringssl-with-bazel/src/include/openssl/blowfish.h +1 -1
  1253. data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +1 -1
  1254. data/third_party/boringssl-with-bazel/src/include/openssl/buf.h +1 -1
  1255. data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +7 -1
  1256. data/third_party/boringssl-with-bazel/src/include/openssl/cast.h +1 -1
  1257. data/third_party/boringssl-with-bazel/src/include/openssl/chacha.h +1 -1
  1258. data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +1 -1
  1259. data/third_party/boringssl-with-bazel/src/include/openssl/cmac.h +1 -1
  1260. data/third_party/boringssl-with-bazel/src/include/openssl/cms.h +146 -0
  1261. data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +1 -1
  1262. data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +23 -3
  1263. data/third_party/boringssl-with-bazel/src/include/openssl/ctrdrbg.h +1 -1
  1264. data/third_party/boringssl-with-bazel/src/include/openssl/curve25519.h +1 -1
  1265. data/third_party/boringssl-with-bazel/src/include/openssl/des.h +1 -1
  1266. data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +1 -1
  1267. data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +19 -7
  1268. data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +1 -1
  1269. data/third_party/boringssl-with-bazel/src/include/openssl/e_os2.h +1 -1
  1270. data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +1 -1
  1271. data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +1 -1
  1272. data/third_party/boringssl-with-bazel/src/include/openssl/ecdh.h +1 -1
  1273. data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +1 -1
  1274. data/third_party/boringssl-with-bazel/src/include/openssl/engine.h +1 -1
  1275. data/third_party/boringssl-with-bazel/src/include/openssl/err.h +2 -1
  1276. data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +1 -1
  1277. data/third_party/boringssl-with-bazel/src/include/openssl/ex_data.h +1 -1
  1278. data/third_party/boringssl-with-bazel/src/include/openssl/experimental/kyber.h +1 -1
  1279. data/third_party/boringssl-with-bazel/src/include/openssl/hkdf.h +1 -1
  1280. data/third_party/boringssl-with-bazel/src/include/openssl/hmac.h +1 -1
  1281. data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +4 -4
  1282. data/third_party/boringssl-with-bazel/src/include/openssl/hrss.h +1 -1
  1283. data/third_party/boringssl-with-bazel/src/include/openssl/kdf.h +1 -1
  1284. data/third_party/boringssl-with-bazel/src/include/openssl/lhash.h +1 -1
  1285. data/third_party/boringssl-with-bazel/src/include/openssl/md4.h +1 -1
  1286. data/third_party/boringssl-with-bazel/src/include/openssl/md5.h +1 -1
  1287. data/third_party/boringssl-with-bazel/src/include/openssl/mem.h +1 -1
  1288. data/third_party/boringssl-with-bazel/src/include/openssl/mldsa.h +1 -1
  1289. data/third_party/boringssl-with-bazel/src/include/openssl/mlkem.h +1 -1
  1290. data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +1 -1
  1291. data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +1 -1
  1292. data/third_party/boringssl-with-bazel/src/include/openssl/obj_mac.h +1 -1
  1293. data/third_party/boringssl-with-bazel/src/include/openssl/opensslconf.h +10 -4
  1294. data/third_party/boringssl-with-bazel/src/include/openssl/pkcs7.h +1 -1
  1295. data/third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h +19 -6
  1296. data/third_party/boringssl-with-bazel/src/include/openssl/poly1305.h +1 -1
  1297. data/third_party/boringssl-with-bazel/src/include/openssl/pool.h +1 -1
  1298. data/third_party/boringssl-with-bazel/src/include/openssl/posix_time.h +1 -1
  1299. data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +2 -2
  1300. data/third_party/boringssl-with-bazel/src/include/openssl/rc4.h +1 -1
  1301. data/third_party/boringssl-with-bazel/src/include/openssl/ripemd.h +1 -1
  1302. data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +2 -2
  1303. data/third_party/boringssl-with-bazel/src/include/openssl/service_indicator.h +1 -1
  1304. data/third_party/boringssl-with-bazel/src/include/openssl/sha.h +1 -1
  1305. data/third_party/boringssl-with-bazel/src/include/openssl/siphash.h +1 -1
  1306. data/third_party/boringssl-with-bazel/src/include/openssl/slhdsa.h +1 -1
  1307. data/third_party/boringssl-with-bazel/src/include/openssl/span.h +1 -1
  1308. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +291 -40
  1309. data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +1 -1
  1310. data/third_party/boringssl-with-bazel/src/include/openssl/target.h +0 -5
  1311. data/third_party/boringssl-with-bazel/src/include/openssl/thread.h +1 -1
  1312. data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +9 -1
  1313. data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +1 -1
  1314. data/third_party/boringssl-with-bazel/src/include/openssl/type_check.h +1 -1
  1315. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +7 -4
  1316. data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +2 -0
  1317. data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +32 -26
  1318. data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +49 -49
  1319. data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +256 -57
  1320. data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +12 -12
  1321. data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +7 -5
  1322. data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +3 -2
  1323. data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +25 -33
  1324. data/third_party/boringssl-with-bazel/src/ssl/internal.h +106 -10
  1325. data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +6 -12
  1326. data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +18 -4
  1327. data/third_party/boringssl-with-bazel/src/ssl/ssl_credential.cc +85 -8
  1328. data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +1 -1
  1329. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +173 -19
  1330. data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +5 -18
  1331. data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +28 -15
  1332. data/third_party/boringssl-with-bazel/src/ssl/t1_enc.cc +1 -1
  1333. data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +31 -7
  1334. data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +14 -2
  1335. data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +7 -11
  1336. data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +14 -12
  1337. data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +2 -5
  1338. data/third_party/upb/upb/base/internal/log2.h +3 -1
  1339. data/third_party/upb/upb/base/string_view.h +10 -0
  1340. data/third_party/upb/upb/hash/common.c +312 -187
  1341. data/third_party/upb/upb/hash/common.h +44 -43
  1342. data/third_party/upb/upb/hash/int_table.h +29 -5
  1343. data/third_party/upb/upb/hash/str_table.h +6 -0
  1344. data/third_party/upb/upb/json/decode.c +2 -2
  1345. data/third_party/upb/upb/json/decode.h +0 -1
  1346. data/third_party/upb/upb/mem/alloc.h +5 -0
  1347. data/third_party/upb/upb/mem/arena.c +437 -160
  1348. data/third_party/upb/upb/mem/arena.h +57 -11
  1349. data/third_party/upb/upb/mem/arena.hpp +4 -20
  1350. data/third_party/upb/upb/mem/internal/arena.h +65 -29
  1351. data/third_party/upb/upb/message/accessors.c +1 -5
  1352. data/third_party/upb/upb/message/accessors.h +41 -0
  1353. data/third_party/upb/upb/message/array.c +7 -6
  1354. data/third_party/upb/upb/message/array.h +4 -4
  1355. data/third_party/upb/upb/message/compat.c +11 -14
  1356. data/third_party/upb/upb/message/compat.h +4 -3
  1357. data/third_party/upb/upb/message/copy.c +35 -30
  1358. data/third_party/upb/upb/message/internal/accessors.h +142 -13
  1359. data/third_party/upb/upb/message/internal/extension.c +16 -25
  1360. data/third_party/upb/upb/message/internal/extension.h +17 -5
  1361. data/third_party/upb/upb/message/internal/iterator.c +58 -0
  1362. data/third_party/upb/upb/message/internal/iterator.h +29 -0
  1363. data/third_party/upb/upb/message/internal/map.h +76 -22
  1364. data/third_party/upb/upb/message/internal/map_sorter.h +13 -4
  1365. data/third_party/upb/upb/message/internal/message.c +48 -29
  1366. data/third_party/upb/upb/message/internal/message.h +203 -25
  1367. data/third_party/upb/upb/message/map.c +68 -20
  1368. data/third_party/upb/upb/message/map.h +8 -1
  1369. data/third_party/upb/upb/message/map_gencode_util.h +3 -45
  1370. data/third_party/upb/upb/message/map_sorter.c +52 -16
  1371. data/third_party/upb/upb/message/merge.h +3 -3
  1372. data/third_party/upb/upb/message/message.c +200 -42
  1373. data/third_party/upb/upb/message/message.h +69 -4
  1374. data/third_party/upb/upb/message/value.h +9 -0
  1375. data/third_party/upb/upb/mini_descriptor/build_enum.c +16 -6
  1376. data/third_party/upb/upb/mini_descriptor/decode.c +115 -138
  1377. data/third_party/upb/upb/mini_descriptor/decode.h +4 -3
  1378. data/third_party/upb/upb/mini_descriptor/internal/encode.hpp +1 -1
  1379. data/third_party/upb/upb/mini_descriptor/link.c +4 -0
  1380. data/third_party/upb/upb/mini_table/extension.h +8 -1
  1381. data/third_party/upb/upb/mini_table/extension_registry.c +25 -13
  1382. data/third_party/upb/upb/mini_table/extension_registry.h +13 -6
  1383. data/third_party/upb/upb/mini_table/internal/enum.h +1 -1
  1384. data/third_party/upb/upb/mini_table/internal/extension.h +24 -1
  1385. data/third_party/upb/upb/mini_table/internal/field.h +4 -4
  1386. data/third_party/upb/upb/mini_table/internal/message.h +1 -1
  1387. data/third_party/upb/upb/mini_table/message.c +21 -13
  1388. data/third_party/upb/upb/port/atomic.h +134 -7
  1389. data/third_party/upb/upb/port/def.inc +163 -45
  1390. data/third_party/upb/upb/port/undef.inc +12 -1
  1391. data/third_party/upb/upb/reflection/def.hpp +5 -1
  1392. data/third_party/upb/upb/reflection/def_pool.c +10 -3
  1393. data/third_party/upb/upb/reflection/def_pool.h +2 -2
  1394. data/third_party/upb/upb/reflection/descriptor_bootstrap.h +4 -4
  1395. data/third_party/upb/upb/reflection/enum_def.c +4 -4
  1396. data/third_party/upb/upb/reflection/enum_reserved_range.c +1 -1
  1397. data/third_party/upb/upb/reflection/enum_value_def.c +9 -8
  1398. data/third_party/upb/upb/reflection/extension_range.c +1 -2
  1399. data/third_party/upb/upb/reflection/field_def.c +3 -5
  1400. data/third_party/upb/upb/reflection/field_def.h +1 -1
  1401. data/third_party/upb/upb/reflection/file_def.c +16 -10
  1402. data/third_party/upb/upb/reflection/internal/def_builder.c +1 -1
  1403. data/third_party/upb/upb/reflection/internal/def_builder.h +35 -10
  1404. data/third_party/upb/upb/reflection/internal/enum_value_def.h +1 -1
  1405. data/third_party/upb/upb/reflection/internal/upb_edition_defaults.h +1 -1
  1406. data/third_party/upb/upb/reflection/message.c +19 -16
  1407. data/third_party/upb/upb/reflection/message.h +3 -1
  1408. data/third_party/upb/upb/reflection/message_def.c +4 -7
  1409. data/third_party/upb/upb/reflection/message_reserved_range.c +1 -1
  1410. data/third_party/upb/upb/reflection/method_def.c +1 -1
  1411. data/third_party/upb/upb/reflection/oneof_def.c +3 -3
  1412. data/third_party/upb/upb/reflection/service_def.c +2 -5
  1413. data/third_party/upb/upb/text/encode.c +17 -13
  1414. data/third_party/upb/upb/text/internal/encode.c +25 -6
  1415. data/third_party/upb/upb/text/internal/encode.h +6 -1
  1416. data/third_party/upb/upb/wire/decode.c +154 -107
  1417. data/third_party/upb/upb/wire/decode.h +4 -2
  1418. data/third_party/upb/upb/wire/encode.c +114 -55
  1419. data/third_party/upb/upb/wire/encode.h +2 -0
  1420. data/third_party/upb/upb/wire/eps_copy_input_stream.h +18 -20
  1421. data/third_party/upb/upb/wire/internal/decode_fast.c +2 -2
  1422. data/third_party/upb/upb/wire/internal/decode_fast.h +4 -0
  1423. data/third_party/upb/upb/wire/internal/decoder.h +4 -11
  1424. data/third_party/utf8_range/utf8_range.c +15 -275
  1425. data/third_party/utf8_range/utf8_range_neon.inc +117 -0
  1426. data/third_party/utf8_range/utf8_range_sse.inc +272 -0
  1427. data/third_party/zlib/deflate.c +40 -15
  1428. data/third_party/zlib/deflate.h +33 -2
  1429. data/third_party/zlib/gzguts.h +2 -6
  1430. data/third_party/zlib/inflate.c +1 -1
  1431. data/third_party/zlib/inftrees.c +3 -3
  1432. data/third_party/zlib/inftrees.h +2 -2
  1433. data/third_party/zlib/trees.c +18 -4
  1434. data/third_party/zlib/zconf.h +1 -9
  1435. data/third_party/zlib/zlib.h +12 -12
  1436. data/third_party/zlib/zutil.h +4 -25
  1437. metadata +196 -150
  1438. data/include/grpc/grpc_cronet.h +0 -37
  1439. data/src/core/lib/iomgr/executor.cc +0 -441
  1440. data/src/core/lib/iomgr/executor.h +0 -119
  1441. data/src/core/lib/transport/http2_errors.h +0 -43
  1442. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/polyval.cc.inc +0 -89
  1443. data/third_party/upb/upb/message/internal/compare_unknown.c +0 -289
  1444. data/third_party/upb/upb/message/internal/compare_unknown.h +0 -49
@@ -168,83 +168,91 @@ typedef enum {
168
168
  envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_route_specifier_NOT_SET = 0
169
169
  } envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_route_specifier_oneofcases;
170
170
  UPB_INLINE envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_route_specifier_oneofcases envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_route_specifier_case(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
171
- const upb_MiniTableField field = {3, UPB_SIZE(204, 368), UPB_SIZE(-101, -33), 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
171
+ const upb_MiniTableField field = {3, UPB_SIZE(176, 360), UPB_SIZE(-173, -45), 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
172
172
  return (envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_route_specifier_oneofcases)upb_Message_WhichOneofFieldNumber(
173
173
  UPB_UPCAST(msg), &field);
174
174
  }
175
+ UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_route_specifier(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
176
+ const upb_MiniTableField field = {3, UPB_SIZE(176, 360), UPB_SIZE(-173, -45), 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
177
+ upb_Message_ClearOneof(UPB_UPCAST(msg), &envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager_msg_init, &field);
178
+ }
175
179
  typedef enum {
176
180
  envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_strip_port_mode_strip_any_host_port = 42,
177
181
  envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_strip_port_mode_NOT_SET = 0
178
182
  } envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_strip_port_mode_oneofcases;
179
183
  UPB_INLINE envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_strip_port_mode_oneofcases envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_strip_port_mode_case(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
180
- const upb_MiniTableField field = {42, UPB_SIZE(208, 376), UPB_SIZE(-141, -49), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
184
+ const upb_MiniTableField field = {42, UPB_SIZE(184, 368), UPB_SIZE(-181, -49), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
181
185
  return (envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_strip_port_mode_oneofcases)upb_Message_WhichOneofFieldNumber(
182
186
  UPB_UPCAST(msg), &field);
183
187
  }
188
+ UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_strip_port_mode(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
189
+ const upb_MiniTableField field = {42, UPB_SIZE(184, 368), UPB_SIZE(-181, -49), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
190
+ upb_Message_ClearOneof(UPB_UPCAST(msg), &envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager_msg_init, &field);
191
+ }
184
192
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_codec_type(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
185
- const upb_MiniTableField field = {1, 12, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
193
+ const upb_MiniTableField field = {1, 24, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
186
194
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
187
195
  }
188
196
  UPB_INLINE int32_t envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_codec_type(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
189
197
  int32_t default_val = 0;
190
198
  int32_t ret;
191
- const upb_MiniTableField field = {1, 12, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
199
+ const upb_MiniTableField field = {1, 24, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
192
200
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
193
201
  &default_val, &ret);
194
202
  return ret;
195
203
  }
196
204
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_stat_prefix(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
197
- const upb_MiniTableField field = {2, UPB_SIZE(212, 64), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
205
+ const upb_MiniTableField field = {2, UPB_SIZE(188, 56), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
198
206
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
199
207
  }
200
208
  UPB_INLINE upb_StringView envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_stat_prefix(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
201
209
  upb_StringView default_val = upb_StringView_FromString("");
202
210
  upb_StringView ret;
203
- const upb_MiniTableField field = {2, UPB_SIZE(212, 64), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
211
+ const upb_MiniTableField field = {2, UPB_SIZE(188, 56), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
204
212
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
205
213
  &default_val, &ret);
206
214
  return ret;
207
215
  }
208
216
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_rds(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
209
- const upb_MiniTableField field = {3, UPB_SIZE(204, 368), UPB_SIZE(-101, -33), 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
217
+ const upb_MiniTableField field = {3, UPB_SIZE(176, 360), UPB_SIZE(-173, -45), 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
210
218
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
211
219
  }
212
220
  UPB_INLINE const envoy_extensions_filters_network_http_connection_manager_v3_Rds* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_rds(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
213
221
  const envoy_extensions_filters_network_http_connection_manager_v3_Rds* default_val = NULL;
214
222
  const envoy_extensions_filters_network_http_connection_manager_v3_Rds* ret;
215
- const upb_MiniTableField field = {3, UPB_SIZE(204, 368), UPB_SIZE(-101, -33), 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
223
+ const upb_MiniTableField field = {3, UPB_SIZE(176, 360), UPB_SIZE(-173, -45), 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
216
224
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__Rds_msg_init);
217
225
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
218
226
  &default_val, &ret);
219
227
  return ret;
220
228
  }
221
229
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_rds(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
222
- const upb_MiniTableField field = {3, UPB_SIZE(204, 368), UPB_SIZE(-101, -33), 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
230
+ const upb_MiniTableField field = {3, UPB_SIZE(176, 360), UPB_SIZE(-173, -45), 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
223
231
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
224
232
  }
225
233
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_route_config(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
226
- const upb_MiniTableField field = {4, UPB_SIZE(204, 368), UPB_SIZE(-101, -33), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
234
+ const upb_MiniTableField field = {4, UPB_SIZE(176, 360), UPB_SIZE(-173, -45), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
227
235
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
228
236
  }
229
237
  UPB_INLINE const struct envoy_config_route_v3_RouteConfiguration* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_route_config(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
230
238
  const struct envoy_config_route_v3_RouteConfiguration* default_val = NULL;
231
239
  const struct envoy_config_route_v3_RouteConfiguration* ret;
232
- const upb_MiniTableField field = {4, UPB_SIZE(204, 368), UPB_SIZE(-101, -33), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
240
+ const upb_MiniTableField field = {4, UPB_SIZE(176, 360), UPB_SIZE(-173, -45), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
233
241
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteConfiguration_msg_init);
234
242
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
235
243
  &default_val, &ret);
236
244
  return ret;
237
245
  }
238
246
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_route_config(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
239
- const upb_MiniTableField field = {4, UPB_SIZE(204, 368), UPB_SIZE(-101, -33), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
247
+ const upb_MiniTableField field = {4, UPB_SIZE(176, 360), UPB_SIZE(-173, -45), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
240
248
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
241
249
  }
242
250
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_http_filters(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
243
- const upb_MiniTableField field = {5, UPB_SIZE(16, 80), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
251
+ const upb_MiniTableField field = {5, UPB_SIZE(28, 104), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
244
252
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
245
253
  }
246
254
  UPB_INLINE const envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter* const* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_http_filters(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, size_t* size) {
247
- const upb_MiniTableField field = {5, UPB_SIZE(16, 80), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
255
+ const upb_MiniTableField field = {5, UPB_SIZE(28, 104), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
248
256
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__HttpFilter_msg_init);
249
257
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
250
258
  if (arr) {
@@ -256,7 +264,7 @@ UPB_INLINE const envoy_extensions_filters_network_http_connection_manager_v3_Htt
256
264
  }
257
265
  }
258
266
  UPB_INLINE const upb_Array* _envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_http_filters_upb_array(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, size_t* size) {
259
- const upb_MiniTableField field = {5, UPB_SIZE(16, 80), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
267
+ const upb_MiniTableField field = {5, UPB_SIZE(28, 104), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
260
268
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__HttpFilter_msg_init);
261
269
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
262
270
  if (size) {
@@ -265,7 +273,7 @@ UPB_INLINE const upb_Array* _envoy_extensions_filters_network_http_connection_ma
265
273
  return arr;
266
274
  }
267
275
  UPB_INLINE upb_Array* _envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_http_filters_mutable_upb_array(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, size_t* size, upb_Arena* arena) {
268
- const upb_MiniTableField field = {5, UPB_SIZE(16, 80), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
276
+ const upb_MiniTableField field = {5, UPB_SIZE(28, 104), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
269
277
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__HttpFilter_msg_init);
270
278
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
271
279
  &field, arena);
@@ -275,108 +283,108 @@ UPB_INLINE upb_Array* _envoy_extensions_filters_network_http_connection_manager_
275
283
  return arr;
276
284
  }
277
285
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_add_user_agent(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
278
- const upb_MiniTableField field = {6, UPB_SIZE(20, 88), 64, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
286
+ const upb_MiniTableField field = {6, UPB_SIZE(32, 112), 64, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
279
287
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
280
288
  }
281
289
  UPB_INLINE const struct google_protobuf_BoolValue* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_add_user_agent(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
282
290
  const struct google_protobuf_BoolValue* default_val = NULL;
283
291
  const struct google_protobuf_BoolValue* ret;
284
- const upb_MiniTableField field = {6, UPB_SIZE(20, 88), 64, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
292
+ const upb_MiniTableField field = {6, UPB_SIZE(32, 112), 64, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
285
293
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
286
294
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
287
295
  &default_val, &ret);
288
296
  return ret;
289
297
  }
290
298
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_add_user_agent(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
291
- const upb_MiniTableField field = {6, UPB_SIZE(20, 88), 64, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
299
+ const upb_MiniTableField field = {6, UPB_SIZE(32, 112), 64, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
292
300
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
293
301
  }
294
302
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_tracing(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
295
- const upb_MiniTableField field = {7, UPB_SIZE(24, 96), 65, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
303
+ const upb_MiniTableField field = {7, UPB_SIZE(36, 120), 65, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
296
304
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
297
305
  }
298
306
  UPB_INLINE const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_tracing(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
299
307
  const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing* default_val = NULL;
300
308
  const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing* ret;
301
- const upb_MiniTableField field = {7, UPB_SIZE(24, 96), 65, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
309
+ const upb_MiniTableField field = {7, UPB_SIZE(36, 120), 65, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
302
310
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__Tracing_msg_init);
303
311
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
304
312
  &default_val, &ret);
305
313
  return ret;
306
314
  }
307
315
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_tracing(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
308
- const upb_MiniTableField field = {7, UPB_SIZE(24, 96), 65, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
316
+ const upb_MiniTableField field = {7, UPB_SIZE(36, 120), 65, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
309
317
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
310
318
  }
311
319
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_http_protocol_options(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
312
- const upb_MiniTableField field = {8, UPB_SIZE(28, 104), 66, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
320
+ const upb_MiniTableField field = {8, UPB_SIZE(40, 128), 66, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
313
321
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
314
322
  }
315
323
  UPB_INLINE const struct envoy_config_core_v3_Http1ProtocolOptions* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_http_protocol_options(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
316
324
  const struct envoy_config_core_v3_Http1ProtocolOptions* default_val = NULL;
317
325
  const struct envoy_config_core_v3_Http1ProtocolOptions* ret;
318
- const upb_MiniTableField field = {8, UPB_SIZE(28, 104), 66, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
326
+ const upb_MiniTableField field = {8, UPB_SIZE(40, 128), 66, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
319
327
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__Http1ProtocolOptions_msg_init);
320
328
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
321
329
  &default_val, &ret);
322
330
  return ret;
323
331
  }
324
332
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_http_protocol_options(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
325
- const upb_MiniTableField field = {8, UPB_SIZE(28, 104), 66, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
333
+ const upb_MiniTableField field = {8, UPB_SIZE(40, 128), 66, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
326
334
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
327
335
  }
328
336
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_http2_protocol_options(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
329
- const upb_MiniTableField field = {9, UPB_SIZE(32, 112), 67, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
337
+ const upb_MiniTableField field = {9, UPB_SIZE(44, 136), 67, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
330
338
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
331
339
  }
332
340
  UPB_INLINE const struct envoy_config_core_v3_Http2ProtocolOptions* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_http2_protocol_options(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
333
341
  const struct envoy_config_core_v3_Http2ProtocolOptions* default_val = NULL;
334
342
  const struct envoy_config_core_v3_Http2ProtocolOptions* ret;
335
- const upb_MiniTableField field = {9, UPB_SIZE(32, 112), 67, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
343
+ const upb_MiniTableField field = {9, UPB_SIZE(44, 136), 67, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
336
344
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__Http2ProtocolOptions_msg_init);
337
345
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
338
346
  &default_val, &ret);
339
347
  return ret;
340
348
  }
341
349
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_http2_protocol_options(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
342
- const upb_MiniTableField field = {9, UPB_SIZE(32, 112), 67, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
350
+ const upb_MiniTableField field = {9, UPB_SIZE(44, 136), 67, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
343
351
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
344
352
  }
345
353
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_server_name(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
346
- const upb_MiniTableField field = {10, UPB_SIZE(220, 120), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
354
+ const upb_MiniTableField field = {10, UPB_SIZE(196, 72), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
347
355
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
348
356
  }
349
357
  UPB_INLINE upb_StringView envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_server_name(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
350
358
  upb_StringView default_val = upb_StringView_FromString("");
351
359
  upb_StringView ret;
352
- const upb_MiniTableField field = {10, UPB_SIZE(220, 120), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
360
+ const upb_MiniTableField field = {10, UPB_SIZE(196, 72), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
353
361
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
354
362
  &default_val, &ret);
355
363
  return ret;
356
364
  }
357
365
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_drain_timeout(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
358
- const upb_MiniTableField field = {12, UPB_SIZE(36, 136), 68, 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
366
+ const upb_MiniTableField field = {12, UPB_SIZE(48, 144), 68, 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
359
367
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
360
368
  }
361
369
  UPB_INLINE const struct google_protobuf_Duration* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_drain_timeout(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
362
370
  const struct google_protobuf_Duration* default_val = NULL;
363
371
  const struct google_protobuf_Duration* ret;
364
- const upb_MiniTableField field = {12, UPB_SIZE(36, 136), 68, 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
372
+ const upb_MiniTableField field = {12, UPB_SIZE(48, 144), 68, 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
365
373
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
366
374
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
367
375
  &default_val, &ret);
368
376
  return ret;
369
377
  }
370
378
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_drain_timeout(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
371
- const upb_MiniTableField field = {12, UPB_SIZE(36, 136), 68, 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
379
+ const upb_MiniTableField field = {12, UPB_SIZE(48, 144), 68, 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
372
380
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
373
381
  }
374
382
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_access_log(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
375
- const upb_MiniTableField field = {13, UPB_SIZE(40, 144), 0, 8, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
383
+ const upb_MiniTableField field = {13, UPB_SIZE(52, 152), 0, 8, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
376
384
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
377
385
  }
378
386
  UPB_INLINE const struct envoy_config_accesslog_v3_AccessLog* const* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_access_log(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, size_t* size) {
379
- const upb_MiniTableField field = {13, UPB_SIZE(40, 144), 0, 8, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
387
+ const upb_MiniTableField field = {13, UPB_SIZE(52, 152), 0, 8, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
380
388
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__accesslog__v3__AccessLog_msg_init);
381
389
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
382
390
  if (arr) {
@@ -388,7 +396,7 @@ UPB_INLINE const struct envoy_config_accesslog_v3_AccessLog* const* envoy_extens
388
396
  }
389
397
  }
390
398
  UPB_INLINE const upb_Array* _envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_access_log_upb_array(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, size_t* size) {
391
- const upb_MiniTableField field = {13, UPB_SIZE(40, 144), 0, 8, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
399
+ const upb_MiniTableField field = {13, UPB_SIZE(52, 152), 0, 8, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
392
400
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__accesslog__v3__AccessLog_msg_init);
393
401
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
394
402
  if (size) {
@@ -397,7 +405,7 @@ UPB_INLINE const upb_Array* _envoy_extensions_filters_network_http_connection_ma
397
405
  return arr;
398
406
  }
399
407
  UPB_INLINE upb_Array* _envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_access_log_mutable_upb_array(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, size_t* size, upb_Arena* arena) {
400
- const upb_MiniTableField field = {13, UPB_SIZE(40, 144), 0, 8, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
408
+ const upb_MiniTableField field = {13, UPB_SIZE(52, 152), 0, 8, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
401
409
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__accesslog__v3__AccessLog_msg_init);
402
410
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
403
411
  &field, arena);
@@ -407,134 +415,134 @@ UPB_INLINE upb_Array* _envoy_extensions_filters_network_http_connection_manager_
407
415
  return arr;
408
416
  }
409
417
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_use_remote_address(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
410
- const upb_MiniTableField field = {14, UPB_SIZE(44, 152), 69, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
418
+ const upb_MiniTableField field = {14, UPB_SIZE(56, 160), 69, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
411
419
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
412
420
  }
413
421
  UPB_INLINE const struct google_protobuf_BoolValue* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_use_remote_address(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
414
422
  const struct google_protobuf_BoolValue* default_val = NULL;
415
423
  const struct google_protobuf_BoolValue* ret;
416
- const upb_MiniTableField field = {14, UPB_SIZE(44, 152), 69, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
424
+ const upb_MiniTableField field = {14, UPB_SIZE(56, 160), 69, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
417
425
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
418
426
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
419
427
  &default_val, &ret);
420
428
  return ret;
421
429
  }
422
430
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_use_remote_address(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
423
- const upb_MiniTableField field = {14, UPB_SIZE(44, 152), 69, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
431
+ const upb_MiniTableField field = {14, UPB_SIZE(56, 160), 69, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
424
432
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
425
433
  }
426
434
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_generate_request_id(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
427
- const upb_MiniTableField field = {15, UPB_SIZE(48, 160), 70, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
435
+ const upb_MiniTableField field = {15, UPB_SIZE(60, 168), 70, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
428
436
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
429
437
  }
430
438
  UPB_INLINE const struct google_protobuf_BoolValue* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_generate_request_id(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
431
439
  const struct google_protobuf_BoolValue* default_val = NULL;
432
440
  const struct google_protobuf_BoolValue* ret;
433
- const upb_MiniTableField field = {15, UPB_SIZE(48, 160), 70, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
441
+ const upb_MiniTableField field = {15, UPB_SIZE(60, 168), 70, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
434
442
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
435
443
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
436
444
  &default_val, &ret);
437
445
  return ret;
438
446
  }
439
447
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_generate_request_id(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
440
- const upb_MiniTableField field = {15, UPB_SIZE(48, 160), 70, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
448
+ const upb_MiniTableField field = {15, UPB_SIZE(60, 168), 70, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
441
449
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
442
450
  }
443
451
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_forward_client_cert_details(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
444
- const upb_MiniTableField field = {16, UPB_SIZE(52, 16), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
452
+ const upb_MiniTableField field = {16, UPB_SIZE(64, 28), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
445
453
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
446
454
  }
447
455
  UPB_INLINE int32_t envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_forward_client_cert_details(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
448
456
  int32_t default_val = 0;
449
457
  int32_t ret;
450
- const upb_MiniTableField field = {16, UPB_SIZE(52, 16), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
458
+ const upb_MiniTableField field = {16, UPB_SIZE(64, 28), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
451
459
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
452
460
  &default_val, &ret);
453
461
  return ret;
454
462
  }
455
463
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_set_current_client_cert_details(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
456
- const upb_MiniTableField field = {17, UPB_SIZE(56, 168), 71, 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
464
+ const upb_MiniTableField field = {17, UPB_SIZE(68, 176), 71, 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
457
465
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
458
466
  }
459
467
  UPB_INLINE const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_current_client_cert_details(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
460
468
  const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails* default_val = NULL;
461
469
  const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails* ret;
462
- const upb_MiniTableField field = {17, UPB_SIZE(56, 168), 71, 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
470
+ const upb_MiniTableField field = {17, UPB_SIZE(68, 176), 71, 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
463
471
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__SetCurrentClientCertDetails_msg_init);
464
472
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
465
473
  &default_val, &ret);
466
474
  return ret;
467
475
  }
468
476
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_set_current_client_cert_details(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
469
- const upb_MiniTableField field = {17, UPB_SIZE(56, 168), 71, 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
477
+ const upb_MiniTableField field = {17, UPB_SIZE(68, 176), 71, 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
470
478
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
471
479
  }
472
480
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_proxy_100_continue(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
473
- const upb_MiniTableField field = {18, UPB_SIZE(60, 20), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
481
+ const upb_MiniTableField field = {18, 12, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
474
482
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
475
483
  }
476
484
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_proxy_100_continue(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
477
485
  bool default_val = false;
478
486
  bool ret;
479
- const upb_MiniTableField field = {18, UPB_SIZE(60, 20), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
487
+ const upb_MiniTableField field = {18, 12, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
480
488
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
481
489
  &default_val, &ret);
482
490
  return ret;
483
491
  }
484
492
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_xff_num_trusted_hops(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
485
- const upb_MiniTableField field = {19, UPB_SIZE(64, 24), 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
493
+ const upb_MiniTableField field = {19, UPB_SIZE(72, 32), 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
486
494
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
487
495
  }
488
496
  UPB_INLINE uint32_t envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_xff_num_trusted_hops(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
489
497
  uint32_t default_val = (uint32_t)0u;
490
498
  uint32_t ret;
491
- const upb_MiniTableField field = {19, UPB_SIZE(64, 24), 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
499
+ const upb_MiniTableField field = {19, UPB_SIZE(72, 32), 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
492
500
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
493
501
  &default_val, &ret);
494
502
  return ret;
495
503
  }
496
504
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_represent_ipv4_remote_address_as_ipv4_mapped_ipv6(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
497
- const upb_MiniTableField field = {20, UPB_SIZE(68, 28), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
505
+ const upb_MiniTableField field = {20, 13, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
498
506
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
499
507
  }
500
508
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_represent_ipv4_remote_address_as_ipv4_mapped_ipv6(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
501
509
  bool default_val = false;
502
510
  bool ret;
503
- const upb_MiniTableField field = {20, UPB_SIZE(68, 28), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
511
+ const upb_MiniTableField field = {20, 13, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
504
512
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
505
513
  &default_val, &ret);
506
514
  return ret;
507
515
  }
508
516
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_skip_xff_append(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
509
- const upb_MiniTableField field = {21, UPB_SIZE(69, 29), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
517
+ const upb_MiniTableField field = {21, 14, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
510
518
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
511
519
  }
512
520
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_skip_xff_append(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
513
521
  bool default_val = false;
514
522
  bool ret;
515
- const upb_MiniTableField field = {21, UPB_SIZE(69, 29), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
523
+ const upb_MiniTableField field = {21, 14, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
516
524
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
517
525
  &default_val, &ret);
518
526
  return ret;
519
527
  }
520
528
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_via(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
521
- const upb_MiniTableField field = {22, UPB_SIZE(228, 176), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
529
+ const upb_MiniTableField field = {22, UPB_SIZE(204, 88), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
522
530
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
523
531
  }
524
532
  UPB_INLINE upb_StringView envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_via(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
525
533
  upb_StringView default_val = upb_StringView_FromString("");
526
534
  upb_StringView ret;
527
- const upb_MiniTableField field = {22, UPB_SIZE(228, 176), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
535
+ const upb_MiniTableField field = {22, UPB_SIZE(204, 88), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
528
536
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
529
537
  &default_val, &ret);
530
538
  return ret;
531
539
  }
532
540
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_upgrade_configs(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
533
- const upb_MiniTableField field = {23, UPB_SIZE(72, 192), 0, 12, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
541
+ const upb_MiniTableField field = {23, UPB_SIZE(76, 184), 0, 12, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
534
542
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
535
543
  }
536
544
  UPB_INLINE const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_UpgradeConfig* const* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_upgrade_configs(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, size_t* size) {
537
- const upb_MiniTableField field = {23, UPB_SIZE(72, 192), 0, 12, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
545
+ const upb_MiniTableField field = {23, UPB_SIZE(76, 184), 0, 12, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
538
546
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__UpgradeConfig_msg_init);
539
547
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
540
548
  if (arr) {
@@ -546,7 +554,7 @@ UPB_INLINE const envoy_extensions_filters_network_http_connection_manager_v3_Htt
546
554
  }
547
555
  }
548
556
  UPB_INLINE const upb_Array* _envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_upgrade_configs_upb_array(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, size_t* size) {
549
- const upb_MiniTableField field = {23, UPB_SIZE(72, 192), 0, 12, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
557
+ const upb_MiniTableField field = {23, UPB_SIZE(76, 184), 0, 12, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
550
558
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__UpgradeConfig_msg_init);
551
559
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
552
560
  if (size) {
@@ -555,7 +563,7 @@ UPB_INLINE const upb_Array* _envoy_extensions_filters_network_http_connection_ma
555
563
  return arr;
556
564
  }
557
565
  UPB_INLINE upb_Array* _envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_upgrade_configs_mutable_upb_array(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, size_t* size, upb_Arena* arena) {
558
- const upb_MiniTableField field = {23, UPB_SIZE(72, 192), 0, 12, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
566
+ const upb_MiniTableField field = {23, UPB_SIZE(76, 184), 0, 12, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
559
567
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__UpgradeConfig_msg_init);
560
568
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
561
569
  &field, arena);
@@ -565,337 +573,337 @@ UPB_INLINE upb_Array* _envoy_extensions_filters_network_http_connection_manager_
565
573
  return arr;
566
574
  }
567
575
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_stream_idle_timeout(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
568
- const upb_MiniTableField field = {24, UPB_SIZE(76, 200), 72, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
576
+ const upb_MiniTableField field = {24, UPB_SIZE(80, 192), 72, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
569
577
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
570
578
  }
571
579
  UPB_INLINE const struct google_protobuf_Duration* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_stream_idle_timeout(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
572
580
  const struct google_protobuf_Duration* default_val = NULL;
573
581
  const struct google_protobuf_Duration* ret;
574
- const upb_MiniTableField field = {24, UPB_SIZE(76, 200), 72, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
582
+ const upb_MiniTableField field = {24, UPB_SIZE(80, 192), 72, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
575
583
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
576
584
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
577
585
  &default_val, &ret);
578
586
  return ret;
579
587
  }
580
588
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_stream_idle_timeout(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
581
- const upb_MiniTableField field = {24, UPB_SIZE(76, 200), 72, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
589
+ const upb_MiniTableField field = {24, UPB_SIZE(80, 192), 72, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
582
590
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
583
591
  }
584
592
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_internal_address_config(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
585
- const upb_MiniTableField field = {25, UPB_SIZE(80, 208), 73, 14, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
593
+ const upb_MiniTableField field = {25, UPB_SIZE(84, 200), 73, 14, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
586
594
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
587
595
  }
588
596
  UPB_INLINE const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_InternalAddressConfig* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_internal_address_config(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
589
597
  const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_InternalAddressConfig* default_val = NULL;
590
598
  const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_InternalAddressConfig* ret;
591
- const upb_MiniTableField field = {25, UPB_SIZE(80, 208), 73, 14, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
599
+ const upb_MiniTableField field = {25, UPB_SIZE(84, 200), 73, 14, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
592
600
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__InternalAddressConfig_msg_init);
593
601
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
594
602
  &default_val, &ret);
595
603
  return ret;
596
604
  }
597
605
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_internal_address_config(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
598
- const upb_MiniTableField field = {25, UPB_SIZE(80, 208), 73, 14, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
606
+ const upb_MiniTableField field = {25, UPB_SIZE(84, 200), 73, 14, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
599
607
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
600
608
  }
601
609
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_delayed_close_timeout(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
602
- const upb_MiniTableField field = {26, UPB_SIZE(84, 216), 74, 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
610
+ const upb_MiniTableField field = {26, UPB_SIZE(88, 208), 74, 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
603
611
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
604
612
  }
605
613
  UPB_INLINE const struct google_protobuf_Duration* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_delayed_close_timeout(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
606
614
  const struct google_protobuf_Duration* default_val = NULL;
607
615
  const struct google_protobuf_Duration* ret;
608
- const upb_MiniTableField field = {26, UPB_SIZE(84, 216), 74, 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
616
+ const upb_MiniTableField field = {26, UPB_SIZE(88, 208), 74, 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
609
617
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
610
618
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
611
619
  &default_val, &ret);
612
620
  return ret;
613
621
  }
614
622
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_delayed_close_timeout(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
615
- const upb_MiniTableField field = {26, UPB_SIZE(84, 216), 74, 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
623
+ const upb_MiniTableField field = {26, UPB_SIZE(88, 208), 74, 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
616
624
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
617
625
  }
618
626
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_request_timeout(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
619
- const upb_MiniTableField field = {28, UPB_SIZE(88, 224), 75, 16, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
627
+ const upb_MiniTableField field = {28, UPB_SIZE(92, 216), 75, 16, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
620
628
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
621
629
  }
622
630
  UPB_INLINE const struct google_protobuf_Duration* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_request_timeout(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
623
631
  const struct google_protobuf_Duration* default_val = NULL;
624
632
  const struct google_protobuf_Duration* ret;
625
- const upb_MiniTableField field = {28, UPB_SIZE(88, 224), 75, 16, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
633
+ const upb_MiniTableField field = {28, UPB_SIZE(92, 216), 75, 16, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
626
634
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
627
635
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
628
636
  &default_val, &ret);
629
637
  return ret;
630
638
  }
631
639
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_request_timeout(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
632
- const upb_MiniTableField field = {28, UPB_SIZE(88, 224), 75, 16, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
640
+ const upb_MiniTableField field = {28, UPB_SIZE(92, 216), 75, 16, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
633
641
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
634
642
  }
635
643
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_max_request_headers_kb(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
636
- const upb_MiniTableField field = {29, UPB_SIZE(92, 232), 76, 17, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
644
+ const upb_MiniTableField field = {29, UPB_SIZE(96, 224), 76, 17, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
637
645
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
638
646
  }
639
647
  UPB_INLINE const struct google_protobuf_UInt32Value* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_max_request_headers_kb(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
640
648
  const struct google_protobuf_UInt32Value* default_val = NULL;
641
649
  const struct google_protobuf_UInt32Value* ret;
642
- const upb_MiniTableField field = {29, UPB_SIZE(92, 232), 76, 17, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
650
+ const upb_MiniTableField field = {29, UPB_SIZE(96, 224), 76, 17, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
643
651
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
644
652
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
645
653
  &default_val, &ret);
646
654
  return ret;
647
655
  }
648
656
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_max_request_headers_kb(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
649
- const upb_MiniTableField field = {29, UPB_SIZE(92, 232), 76, 17, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
657
+ const upb_MiniTableField field = {29, UPB_SIZE(96, 224), 76, 17, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
650
658
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
651
659
  }
652
660
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_normalize_path(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
653
- const upb_MiniTableField field = {30, UPB_SIZE(96, 240), 77, 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
661
+ const upb_MiniTableField field = {30, UPB_SIZE(100, 232), 77, 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
654
662
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
655
663
  }
656
664
  UPB_INLINE const struct google_protobuf_BoolValue* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_normalize_path(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
657
665
  const struct google_protobuf_BoolValue* default_val = NULL;
658
666
  const struct google_protobuf_BoolValue* ret;
659
- const upb_MiniTableField field = {30, UPB_SIZE(96, 240), 77, 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
667
+ const upb_MiniTableField field = {30, UPB_SIZE(100, 232), 77, 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
660
668
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
661
669
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
662
670
  &default_val, &ret);
663
671
  return ret;
664
672
  }
665
673
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_normalize_path(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
666
- const upb_MiniTableField field = {30, UPB_SIZE(96, 240), 77, 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
674
+ const upb_MiniTableField field = {30, UPB_SIZE(100, 232), 77, 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
667
675
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
668
676
  }
669
677
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_scoped_routes(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
670
- const upb_MiniTableField field = {31, UPB_SIZE(204, 368), UPB_SIZE(-101, -33), 19, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
678
+ const upb_MiniTableField field = {31, UPB_SIZE(176, 360), UPB_SIZE(-173, -45), 19, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
671
679
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
672
680
  }
673
681
  UPB_INLINE const envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_scoped_routes(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
674
682
  const envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes* default_val = NULL;
675
683
  const envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes* ret;
676
- const upb_MiniTableField field = {31, UPB_SIZE(204, 368), UPB_SIZE(-101, -33), 19, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
684
+ const upb_MiniTableField field = {31, UPB_SIZE(176, 360), UPB_SIZE(-173, -45), 19, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
677
685
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__ScopedRoutes_msg_init);
678
686
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
679
687
  &default_val, &ret);
680
688
  return ret;
681
689
  }
682
690
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_scoped_routes(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
683
- const upb_MiniTableField field = {31, UPB_SIZE(204, 368), UPB_SIZE(-101, -33), 19, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
691
+ const upb_MiniTableField field = {31, UPB_SIZE(176, 360), UPB_SIZE(-173, -45), 19, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
684
692
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
685
693
  }
686
694
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_preserve_external_request_id(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
687
- const upb_MiniTableField field = {32, UPB_SIZE(104, 36), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
695
+ const upb_MiniTableField field = {32, 15, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
688
696
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
689
697
  }
690
698
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_preserve_external_request_id(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
691
699
  bool default_val = false;
692
700
  bool ret;
693
- const upb_MiniTableField field = {32, UPB_SIZE(104, 36), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
701
+ const upb_MiniTableField field = {32, 15, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
694
702
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
695
703
  &default_val, &ret);
696
704
  return ret;
697
705
  }
698
706
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_merge_slashes(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
699
- const upb_MiniTableField field = {33, UPB_SIZE(105, 37), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
707
+ const upb_MiniTableField field = {33, 16, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
700
708
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
701
709
  }
702
710
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_merge_slashes(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
703
711
  bool default_val = false;
704
712
  bool ret;
705
- const upb_MiniTableField field = {33, UPB_SIZE(105, 37), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
713
+ const upb_MiniTableField field = {33, 16, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
706
714
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
707
715
  &default_val, &ret);
708
716
  return ret;
709
717
  }
710
718
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_server_header_transformation(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
711
- const upb_MiniTableField field = {34, UPB_SIZE(108, 40), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
719
+ const upb_MiniTableField field = {34, UPB_SIZE(104, 36), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
712
720
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
713
721
  }
714
722
  UPB_INLINE int32_t envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_server_header_transformation(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
715
723
  int32_t default_val = 0;
716
724
  int32_t ret;
717
- const upb_MiniTableField field = {34, UPB_SIZE(108, 40), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
725
+ const upb_MiniTableField field = {34, UPB_SIZE(104, 36), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
718
726
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
719
727
  &default_val, &ret);
720
728
  return ret;
721
729
  }
722
730
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_common_http_protocol_options(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
723
- const upb_MiniTableField field = {35, UPB_SIZE(112, 248), 78, 20, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
731
+ const upb_MiniTableField field = {35, UPB_SIZE(108, 240), 78, 20, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
724
732
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
725
733
  }
726
734
  UPB_INLINE const struct envoy_config_core_v3_HttpProtocolOptions* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_common_http_protocol_options(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
727
735
  const struct envoy_config_core_v3_HttpProtocolOptions* default_val = NULL;
728
736
  const struct envoy_config_core_v3_HttpProtocolOptions* ret;
729
- const upb_MiniTableField field = {35, UPB_SIZE(112, 248), 78, 20, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
737
+ const upb_MiniTableField field = {35, UPB_SIZE(108, 240), 78, 20, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
730
738
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HttpProtocolOptions_msg_init);
731
739
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
732
740
  &default_val, &ret);
733
741
  return ret;
734
742
  }
735
743
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_common_http_protocol_options(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
736
- const upb_MiniTableField field = {35, UPB_SIZE(112, 248), 78, 20, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
744
+ const upb_MiniTableField field = {35, UPB_SIZE(108, 240), 78, 20, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
737
745
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
738
746
  }
739
747
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_request_id_extension(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
740
- const upb_MiniTableField field = {36, UPB_SIZE(116, 256), 79, 21, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
748
+ const upb_MiniTableField field = {36, UPB_SIZE(112, 248), 79, 21, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
741
749
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
742
750
  }
743
751
  UPB_INLINE const envoy_extensions_filters_network_http_connection_manager_v3_RequestIDExtension* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_request_id_extension(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
744
752
  const envoy_extensions_filters_network_http_connection_manager_v3_RequestIDExtension* default_val = NULL;
745
753
  const envoy_extensions_filters_network_http_connection_manager_v3_RequestIDExtension* ret;
746
- const upb_MiniTableField field = {36, UPB_SIZE(116, 256), 79, 21, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
754
+ const upb_MiniTableField field = {36, UPB_SIZE(112, 248), 79, 21, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
747
755
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__RequestIDExtension_msg_init);
748
756
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
749
757
  &default_val, &ret);
750
758
  return ret;
751
759
  }
752
760
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_request_id_extension(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
753
- const upb_MiniTableField field = {36, UPB_SIZE(116, 256), 79, 21, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
761
+ const upb_MiniTableField field = {36, UPB_SIZE(112, 248), 79, 21, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
754
762
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
755
763
  }
756
764
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_always_set_request_id_in_response(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
757
- const upb_MiniTableField field = {37, UPB_SIZE(120, 44), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
765
+ const upb_MiniTableField field = {37, 17, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
758
766
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
759
767
  }
760
768
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_always_set_request_id_in_response(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
761
769
  bool default_val = false;
762
770
  bool ret;
763
- const upb_MiniTableField field = {37, UPB_SIZE(120, 44), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
771
+ const upb_MiniTableField field = {37, 17, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
764
772
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
765
773
  &default_val, &ret);
766
774
  return ret;
767
775
  }
768
776
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_local_reply_config(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
769
- const upb_MiniTableField field = {38, UPB_SIZE(124, 264), 80, 22, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
777
+ const upb_MiniTableField field = {38, UPB_SIZE(116, 256), 80, 22, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
770
778
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
771
779
  }
772
780
  UPB_INLINE const envoy_extensions_filters_network_http_connection_manager_v3_LocalReplyConfig* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_local_reply_config(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
773
781
  const envoy_extensions_filters_network_http_connection_manager_v3_LocalReplyConfig* default_val = NULL;
774
782
  const envoy_extensions_filters_network_http_connection_manager_v3_LocalReplyConfig* ret;
775
- const upb_MiniTableField field = {38, UPB_SIZE(124, 264), 80, 22, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
783
+ const upb_MiniTableField field = {38, UPB_SIZE(116, 256), 80, 22, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
776
784
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__LocalReplyConfig_msg_init);
777
785
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
778
786
  &default_val, &ret);
779
787
  return ret;
780
788
  }
781
789
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_local_reply_config(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
782
- const upb_MiniTableField field = {38, UPB_SIZE(124, 264), 80, 22, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
790
+ const upb_MiniTableField field = {38, UPB_SIZE(116, 256), 80, 22, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
783
791
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
784
792
  }
785
793
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_strip_matching_host_port(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
786
- const upb_MiniTableField field = {39, UPB_SIZE(128, 45), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
794
+ const upb_MiniTableField field = {39, 18, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
787
795
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
788
796
  }
789
797
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_strip_matching_host_port(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
790
798
  bool default_val = false;
791
799
  bool ret;
792
- const upb_MiniTableField field = {39, UPB_SIZE(128, 45), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
800
+ const upb_MiniTableField field = {39, 18, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
793
801
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
794
802
  &default_val, &ret);
795
803
  return ret;
796
804
  }
797
805
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_stream_error_on_invalid_http_message(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
798
- const upb_MiniTableField field = {40, UPB_SIZE(132, 272), 81, 23, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
806
+ const upb_MiniTableField field = {40, UPB_SIZE(120, 264), 81, 23, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
799
807
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
800
808
  }
801
809
  UPB_INLINE const struct google_protobuf_BoolValue* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_stream_error_on_invalid_http_message(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
802
810
  const struct google_protobuf_BoolValue* default_val = NULL;
803
811
  const struct google_protobuf_BoolValue* ret;
804
- const upb_MiniTableField field = {40, UPB_SIZE(132, 272), 81, 23, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
812
+ const upb_MiniTableField field = {40, UPB_SIZE(120, 264), 81, 23, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
805
813
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
806
814
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
807
815
  &default_val, &ret);
808
816
  return ret;
809
817
  }
810
818
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_stream_error_on_invalid_http_message(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
811
- const upb_MiniTableField field = {40, UPB_SIZE(132, 272), 81, 23, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
819
+ const upb_MiniTableField field = {40, UPB_SIZE(120, 264), 81, 23, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
812
820
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
813
821
  }
814
822
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_request_headers_timeout(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
815
- const upb_MiniTableField field = {41, UPB_SIZE(136, 280), 82, 24, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
823
+ const upb_MiniTableField field = {41, UPB_SIZE(124, 272), 82, 24, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
816
824
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
817
825
  }
818
826
  UPB_INLINE const struct google_protobuf_Duration* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_request_headers_timeout(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
819
827
  const struct google_protobuf_Duration* default_val = NULL;
820
828
  const struct google_protobuf_Duration* ret;
821
- const upb_MiniTableField field = {41, UPB_SIZE(136, 280), 82, 24, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
829
+ const upb_MiniTableField field = {41, UPB_SIZE(124, 272), 82, 24, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
822
830
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
823
831
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
824
832
  &default_val, &ret);
825
833
  return ret;
826
834
  }
827
835
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_request_headers_timeout(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
828
- const upb_MiniTableField field = {41, UPB_SIZE(136, 280), 82, 24, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
836
+ const upb_MiniTableField field = {41, UPB_SIZE(124, 272), 82, 24, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
829
837
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
830
838
  }
831
839
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_strip_any_host_port(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
832
- const upb_MiniTableField field = {42, UPB_SIZE(208, 376), UPB_SIZE(-141, -49), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
840
+ const upb_MiniTableField field = {42, UPB_SIZE(184, 368), UPB_SIZE(-181, -49), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
833
841
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
834
842
  }
835
843
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_strip_any_host_port(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
836
844
  bool default_val = false;
837
845
  bool ret;
838
- const upb_MiniTableField field = {42, UPB_SIZE(208, 376), UPB_SIZE(-141, -49), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
846
+ const upb_MiniTableField field = {42, UPB_SIZE(184, 368), UPB_SIZE(-181, -49), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
839
847
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
840
848
  &default_val, &ret);
841
849
  return ret;
842
850
  }
843
851
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_strip_any_host_port(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
844
- const upb_MiniTableField field = {42, UPB_SIZE(208, 376), UPB_SIZE(-141, -49), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
852
+ const upb_MiniTableField field = {42, UPB_SIZE(184, 368), UPB_SIZE(-181, -49), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
845
853
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
846
854
  }
847
855
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_path_normalization_options(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
848
- const upb_MiniTableField field = {43, UPB_SIZE(144, 288), 83, 25, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
856
+ const upb_MiniTableField field = {43, UPB_SIZE(128, 280), 83, 25, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
849
857
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
850
858
  }
851
859
  UPB_INLINE const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_PathNormalizationOptions* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_path_normalization_options(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
852
860
  const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_PathNormalizationOptions* default_val = NULL;
853
861
  const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_PathNormalizationOptions* ret;
854
- const upb_MiniTableField field = {43, UPB_SIZE(144, 288), 83, 25, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
862
+ const upb_MiniTableField field = {43, UPB_SIZE(128, 280), 83, 25, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
855
863
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__PathNormalizationOptions_msg_init);
856
864
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
857
865
  &default_val, &ret);
858
866
  return ret;
859
867
  }
860
868
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_path_normalization_options(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
861
- const upb_MiniTableField field = {43, UPB_SIZE(144, 288), 83, 25, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
869
+ const upb_MiniTableField field = {43, UPB_SIZE(128, 280), 83, 25, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
862
870
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
863
871
  }
864
872
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_http3_protocol_options(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
865
- const upb_MiniTableField field = {44, UPB_SIZE(148, 296), 84, 26, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
873
+ const upb_MiniTableField field = {44, UPB_SIZE(132, 288), 84, 26, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
866
874
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
867
875
  }
868
876
  UPB_INLINE const struct envoy_config_core_v3_Http3ProtocolOptions* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_http3_protocol_options(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
869
877
  const struct envoy_config_core_v3_Http3ProtocolOptions* default_val = NULL;
870
878
  const struct envoy_config_core_v3_Http3ProtocolOptions* ret;
871
- const upb_MiniTableField field = {44, UPB_SIZE(148, 296), 84, 26, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
879
+ const upb_MiniTableField field = {44, UPB_SIZE(132, 288), 84, 26, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
872
880
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__Http3ProtocolOptions_msg_init);
873
881
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
874
882
  &default_val, &ret);
875
883
  return ret;
876
884
  }
877
885
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_http3_protocol_options(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
878
- const upb_MiniTableField field = {44, UPB_SIZE(148, 296), 84, 26, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
886
+ const upb_MiniTableField field = {44, UPB_SIZE(132, 288), 84, 26, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
879
887
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
880
888
  }
881
889
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_path_with_escaped_slashes_action(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
882
- const upb_MiniTableField field = {45, UPB_SIZE(152, 52), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
890
+ const upb_MiniTableField field = {45, UPB_SIZE(136, 40), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
883
891
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
884
892
  }
885
893
  UPB_INLINE int32_t envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_path_with_escaped_slashes_action(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
886
894
  int32_t default_val = 0;
887
895
  int32_t ret;
888
- const upb_MiniTableField field = {45, UPB_SIZE(152, 52), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
896
+ const upb_MiniTableField field = {45, UPB_SIZE(136, 40), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
889
897
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
890
898
  &default_val, &ret);
891
899
  return ret;
892
900
  }
893
901
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_original_ip_detection_extensions(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
894
- const upb_MiniTableField field = {46, UPB_SIZE(156, 304), 0, 27, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
902
+ const upb_MiniTableField field = {46, UPB_SIZE(140, 296), 0, 27, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
895
903
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
896
904
  }
897
905
  UPB_INLINE const struct envoy_config_core_v3_TypedExtensionConfig* const* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_original_ip_detection_extensions(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, size_t* size) {
898
- const upb_MiniTableField field = {46, UPB_SIZE(156, 304), 0, 27, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
906
+ const upb_MiniTableField field = {46, UPB_SIZE(140, 296), 0, 27, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
899
907
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
900
908
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
901
909
  if (arr) {
@@ -907,7 +915,7 @@ UPB_INLINE const struct envoy_config_core_v3_TypedExtensionConfig* const* envoy_
907
915
  }
908
916
  }
909
917
  UPB_INLINE const upb_Array* _envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_original_ip_detection_extensions_upb_array(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, size_t* size) {
910
- const upb_MiniTableField field = {46, UPB_SIZE(156, 304), 0, 27, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
918
+ const upb_MiniTableField field = {46, UPB_SIZE(140, 296), 0, 27, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
911
919
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
912
920
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
913
921
  if (size) {
@@ -916,7 +924,7 @@ UPB_INLINE const upb_Array* _envoy_extensions_filters_network_http_connection_ma
916
924
  return arr;
917
925
  }
918
926
  UPB_INLINE upb_Array* _envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_original_ip_detection_extensions_mutable_upb_array(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, size_t* size, upb_Arena* arena) {
919
- const upb_MiniTableField field = {46, UPB_SIZE(156, 304), 0, 27, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
927
+ const upb_MiniTableField field = {46, UPB_SIZE(140, 296), 0, 27, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
920
928
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
921
929
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
922
930
  &field, arena);
@@ -926,86 +934,86 @@ UPB_INLINE upb_Array* _envoy_extensions_filters_network_http_connection_manager_
926
934
  return arr;
927
935
  }
928
936
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_strip_trailing_host_dot(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
929
- const upb_MiniTableField field = {47, UPB_SIZE(160, 56), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
937
+ const upb_MiniTableField field = {47, 19, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
930
938
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
931
939
  }
932
940
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_strip_trailing_host_dot(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
933
941
  bool default_val = false;
934
942
  bool ret;
935
- const upb_MiniTableField field = {47, UPB_SIZE(160, 56), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
943
+ const upb_MiniTableField field = {47, 19, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
936
944
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
937
945
  &default_val, &ret);
938
946
  return ret;
939
947
  }
940
948
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_scheme_header_transformation(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
941
- const upb_MiniTableField field = {48, UPB_SIZE(164, 312), 85, 28, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
949
+ const upb_MiniTableField field = {48, UPB_SIZE(144, 304), 85, 28, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
942
950
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
943
951
  }
944
952
  UPB_INLINE const struct envoy_config_core_v3_SchemeHeaderTransformation* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_scheme_header_transformation(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
945
953
  const struct envoy_config_core_v3_SchemeHeaderTransformation* default_val = NULL;
946
954
  const struct envoy_config_core_v3_SchemeHeaderTransformation* ret;
947
- const upb_MiniTableField field = {48, UPB_SIZE(164, 312), 85, 28, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
955
+ const upb_MiniTableField field = {48, UPB_SIZE(144, 304), 85, 28, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
948
956
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__SchemeHeaderTransformation_msg_init);
949
957
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
950
958
  &default_val, &ret);
951
959
  return ret;
952
960
  }
953
961
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_scheme_header_transformation(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
954
- const upb_MiniTableField field = {48, UPB_SIZE(164, 312), 85, 28, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
962
+ const upb_MiniTableField field = {48, UPB_SIZE(144, 304), 85, 28, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
955
963
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
956
964
  }
957
965
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_proxy_status_config(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
958
- const upb_MiniTableField field = {49, UPB_SIZE(168, 320), 86, 29, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
966
+ const upb_MiniTableField field = {49, UPB_SIZE(148, 312), 86, 29, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
959
967
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
960
968
  }
961
969
  UPB_INLINE const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_ProxyStatusConfig* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_proxy_status_config(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
962
970
  const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_ProxyStatusConfig* default_val = NULL;
963
971
  const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_ProxyStatusConfig* ret;
964
- const upb_MiniTableField field = {49, UPB_SIZE(168, 320), 86, 29, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
972
+ const upb_MiniTableField field = {49, UPB_SIZE(148, 312), 86, 29, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
965
973
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__ProxyStatusConfig_msg_init);
966
974
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
967
975
  &default_val, &ret);
968
976
  return ret;
969
977
  }
970
978
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_proxy_status_config(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
971
- const upb_MiniTableField field = {49, UPB_SIZE(168, 320), 86, 29, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
979
+ const upb_MiniTableField field = {49, UPB_SIZE(148, 312), 86, 29, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
972
980
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
973
981
  }
974
982
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_typed_header_validation_config(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
975
- const upb_MiniTableField field = {50, UPB_SIZE(172, 328), 87, 30, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
983
+ const upb_MiniTableField field = {50, UPB_SIZE(152, 320), 87, 30, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
976
984
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
977
985
  }
978
986
  UPB_INLINE const struct envoy_config_core_v3_TypedExtensionConfig* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_typed_header_validation_config(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
979
987
  const struct envoy_config_core_v3_TypedExtensionConfig* default_val = NULL;
980
988
  const struct envoy_config_core_v3_TypedExtensionConfig* ret;
981
- const upb_MiniTableField field = {50, UPB_SIZE(172, 328), 87, 30, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
989
+ const upb_MiniTableField field = {50, UPB_SIZE(152, 320), 87, 30, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
982
990
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
983
991
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
984
992
  &default_val, &ret);
985
993
  return ret;
986
994
  }
987
995
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_typed_header_validation_config(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
988
- const upb_MiniTableField field = {50, UPB_SIZE(172, 328), 87, 30, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
996
+ const upb_MiniTableField field = {50, UPB_SIZE(152, 320), 87, 30, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
989
997
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
990
998
  }
991
999
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_append_x_forwarded_port(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
992
- const upb_MiniTableField field = {51, UPB_SIZE(176, 57), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1000
+ const upb_MiniTableField field = {51, 20, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
993
1001
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
994
1002
  }
995
1003
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_append_x_forwarded_port(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
996
1004
  bool default_val = false;
997
1005
  bool ret;
998
- const upb_MiniTableField field = {51, UPB_SIZE(176, 57), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1006
+ const upb_MiniTableField field = {51, 20, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
999
1007
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
1000
1008
  &default_val, &ret);
1001
1009
  return ret;
1002
1010
  }
1003
1011
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_early_header_mutation_extensions(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
1004
- const upb_MiniTableField field = {52, UPB_SIZE(180, 336), 0, 31, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1012
+ const upb_MiniTableField field = {52, UPB_SIZE(156, 328), 0, 31, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1005
1013
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
1006
1014
  }
1007
1015
  UPB_INLINE const struct envoy_config_core_v3_TypedExtensionConfig* const* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_early_header_mutation_extensions(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, size_t* size) {
1008
- const upb_MiniTableField field = {52, UPB_SIZE(180, 336), 0, 31, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1016
+ const upb_MiniTableField field = {52, UPB_SIZE(156, 328), 0, 31, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1009
1017
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
1010
1018
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1011
1019
  if (arr) {
@@ -1017,7 +1025,7 @@ UPB_INLINE const struct envoy_config_core_v3_TypedExtensionConfig* const* envoy_
1017
1025
  }
1018
1026
  }
1019
1027
  UPB_INLINE const upb_Array* _envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_early_header_mutation_extensions_upb_array(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, size_t* size) {
1020
- const upb_MiniTableField field = {52, UPB_SIZE(180, 336), 0, 31, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1028
+ const upb_MiniTableField field = {52, UPB_SIZE(156, 328), 0, 31, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1021
1029
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
1022
1030
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1023
1031
  if (size) {
@@ -1026,7 +1034,7 @@ UPB_INLINE const upb_Array* _envoy_extensions_filters_network_http_connection_ma
1026
1034
  return arr;
1027
1035
  }
1028
1036
  UPB_INLINE upb_Array* _envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_early_header_mutation_extensions_mutable_upb_array(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, size_t* size, upb_Arena* arena) {
1029
- const upb_MiniTableField field = {52, UPB_SIZE(180, 336), 0, 31, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1037
+ const upb_MiniTableField field = {52, UPB_SIZE(156, 328), 0, 31, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1030
1038
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
1031
1039
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
1032
1040
  &field, arena);
@@ -1036,103 +1044,103 @@ UPB_INLINE upb_Array* _envoy_extensions_filters_network_http_connection_manager_
1036
1044
  return arr;
1037
1045
  }
1038
1046
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_add_proxy_protocol_connection_state(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
1039
- const upb_MiniTableField field = {53, UPB_SIZE(184, 344), 88, 32, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1047
+ const upb_MiniTableField field = {53, UPB_SIZE(160, 336), 88, 32, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1040
1048
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
1041
1049
  }
1042
1050
  UPB_INLINE const struct google_protobuf_BoolValue* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_add_proxy_protocol_connection_state(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
1043
1051
  const struct google_protobuf_BoolValue* default_val = NULL;
1044
1052
  const struct google_protobuf_BoolValue* ret;
1045
- const upb_MiniTableField field = {53, UPB_SIZE(184, 344), 88, 32, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1053
+ const upb_MiniTableField field = {53, UPB_SIZE(160, 336), 88, 32, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1046
1054
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
1047
1055
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
1048
1056
  &default_val, &ret);
1049
1057
  return ret;
1050
1058
  }
1051
1059
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_add_proxy_protocol_connection_state(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
1052
- const upb_MiniTableField field = {53, UPB_SIZE(184, 344), 88, 32, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1060
+ const upb_MiniTableField field = {53, UPB_SIZE(160, 336), 88, 32, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1053
1061
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
1054
1062
  }
1055
1063
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_access_log_flush_interval(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
1056
- const upb_MiniTableField field = {54, UPB_SIZE(188, 352), 89, 33, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1064
+ const upb_MiniTableField field = {54, UPB_SIZE(164, 344), 89, 33, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1057
1065
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
1058
1066
  }
1059
1067
  UPB_INLINE const struct google_protobuf_Duration* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_access_log_flush_interval(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
1060
1068
  const struct google_protobuf_Duration* default_val = NULL;
1061
1069
  const struct google_protobuf_Duration* ret;
1062
- const upb_MiniTableField field = {54, UPB_SIZE(188, 352), 89, 33, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1070
+ const upb_MiniTableField field = {54, UPB_SIZE(164, 344), 89, 33, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1063
1071
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
1064
1072
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
1065
1073
  &default_val, &ret);
1066
1074
  return ret;
1067
1075
  }
1068
1076
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_access_log_flush_interval(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
1069
- const upb_MiniTableField field = {54, UPB_SIZE(188, 352), 89, 33, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1077
+ const upb_MiniTableField field = {54, UPB_SIZE(164, 344), 89, 33, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1070
1078
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
1071
1079
  }
1072
1080
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_flush_access_log_on_new_request(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
1073
- const upb_MiniTableField field = {55, UPB_SIZE(192, 58), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1081
+ const upb_MiniTableField field = {55, 21, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1074
1082
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
1075
1083
  }
1076
1084
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_flush_access_log_on_new_request(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
1077
1085
  bool default_val = false;
1078
1086
  bool ret;
1079
- const upb_MiniTableField field = {55, UPB_SIZE(192, 58), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1087
+ const upb_MiniTableField field = {55, 21, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1080
1088
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
1081
1089
  &default_val, &ret);
1082
1090
  return ret;
1083
1091
  }
1084
1092
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_access_log_options(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
1085
- const upb_MiniTableField field = {56, UPB_SIZE(196, 360), 90, 34, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1093
+ const upb_MiniTableField field = {56, UPB_SIZE(168, 352), 90, 34, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1086
1094
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
1087
1095
  }
1088
1096
  UPB_INLINE const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_HcmAccessLogOptions* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_access_log_options(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
1089
1097
  const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_HcmAccessLogOptions* default_val = NULL;
1090
1098
  const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_HcmAccessLogOptions* ret;
1091
- const upb_MiniTableField field = {56, UPB_SIZE(196, 360), 90, 34, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1099
+ const upb_MiniTableField field = {56, UPB_SIZE(168, 352), 90, 34, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1092
1100
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__HcmAccessLogOptions_msg_init);
1093
1101
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
1094
1102
  &default_val, &ret);
1095
1103
  return ret;
1096
1104
  }
1097
1105
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_access_log_options(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
1098
- const upb_MiniTableField field = {56, UPB_SIZE(196, 360), 90, 34, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1106
+ const upb_MiniTableField field = {56, UPB_SIZE(168, 352), 90, 34, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1099
1107
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
1100
1108
  }
1101
1109
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_append_local_overload(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
1102
- const upb_MiniTableField field = {57, UPB_SIZE(200, 59), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1110
+ const upb_MiniTableField field = {57, 22, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1103
1111
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
1104
1112
  }
1105
1113
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_append_local_overload(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
1106
1114
  bool default_val = false;
1107
1115
  bool ret;
1108
- const upb_MiniTableField field = {57, UPB_SIZE(200, 59), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1116
+ const upb_MiniTableField field = {57, 22, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1109
1117
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
1110
1118
  &default_val, &ret);
1111
1119
  return ret;
1112
1120
  }
1113
1121
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_clear_http1_safe_max_connection_duration(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
1114
- const upb_MiniTableField field = {58, UPB_SIZE(201, 60), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1122
+ const upb_MiniTableField field = {58, 23, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1115
1123
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
1116
1124
  }
1117
1125
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_http1_safe_max_connection_duration(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg) {
1118
1126
  bool default_val = false;
1119
1127
  bool ret;
1120
- const upb_MiniTableField field = {58, UPB_SIZE(201, 60), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1128
+ const upb_MiniTableField field = {58, 23, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1121
1129
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
1122
1130
  &default_val, &ret);
1123
1131
  return ret;
1124
1132
  }
1125
1133
 
1126
1134
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_codec_type(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, int32_t value) {
1127
- const upb_MiniTableField field = {1, 12, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
1135
+ const upb_MiniTableField field = {1, 24, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
1128
1136
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1129
1137
  }
1130
1138
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_stat_prefix(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, upb_StringView value) {
1131
- const upb_MiniTableField field = {2, UPB_SIZE(212, 64), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
1139
+ const upb_MiniTableField field = {2, UPB_SIZE(188, 56), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
1132
1140
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1133
1141
  }
1134
1142
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_rds(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, envoy_extensions_filters_network_http_connection_manager_v3_Rds* value) {
1135
- const upb_MiniTableField field = {3, UPB_SIZE(204, 368), UPB_SIZE(-101, -33), 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1143
+ const upb_MiniTableField field = {3, UPB_SIZE(176, 360), UPB_SIZE(-173, -45), 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1136
1144
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__Rds_msg_init);
1137
1145
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1138
1146
  }
@@ -1145,7 +1153,7 @@ UPB_INLINE struct envoy_extensions_filters_network_http_connection_manager_v3_Rd
1145
1153
  return sub;
1146
1154
  }
1147
1155
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_route_config(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, struct envoy_config_route_v3_RouteConfiguration* value) {
1148
- const upb_MiniTableField field = {4, UPB_SIZE(204, 368), UPB_SIZE(-101, -33), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1156
+ const upb_MiniTableField field = {4, UPB_SIZE(176, 360), UPB_SIZE(-173, -45), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1149
1157
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__route__v3__RouteConfiguration_msg_init);
1150
1158
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1151
1159
  }
@@ -1158,7 +1166,7 @@ UPB_INLINE struct envoy_config_route_v3_RouteConfiguration* envoy_extensions_fil
1158
1166
  return sub;
1159
1167
  }
1160
1168
  UPB_INLINE envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter** envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_mutable_http_filters(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, size_t* size) {
1161
- upb_MiniTableField field = {5, UPB_SIZE(16, 80), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1169
+ upb_MiniTableField field = {5, UPB_SIZE(28, 104), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1162
1170
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__HttpFilter_msg_init);
1163
1171
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1164
1172
  if (arr) {
@@ -1170,12 +1178,12 @@ UPB_INLINE envoy_extensions_filters_network_http_connection_manager_v3_HttpFilte
1170
1178
  }
1171
1179
  }
1172
1180
  UPB_INLINE envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter** envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_resize_http_filters(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, size_t size, upb_Arena* arena) {
1173
- upb_MiniTableField field = {5, UPB_SIZE(16, 80), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1181
+ upb_MiniTableField field = {5, UPB_SIZE(28, 104), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1174
1182
  return (envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
1175
1183
  &field, size, arena);
1176
1184
  }
1177
1185
  UPB_INLINE struct envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_add_http_filters(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, upb_Arena* arena) {
1178
- upb_MiniTableField field = {5, UPB_SIZE(16, 80), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1186
+ upb_MiniTableField field = {5, UPB_SIZE(28, 104), 0, 2, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1179
1187
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__HttpFilter_msg_init);
1180
1188
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1181
1189
  UPB_UPCAST(msg), &field, arena);
@@ -1190,7 +1198,7 @@ UPB_INLINE struct envoy_extensions_filters_network_http_connection_manager_v3_Ht
1190
1198
  return sub;
1191
1199
  }
1192
1200
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_add_user_agent(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, struct google_protobuf_BoolValue* value) {
1193
- const upb_MiniTableField field = {6, UPB_SIZE(20, 88), 64, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1201
+ const upb_MiniTableField field = {6, UPB_SIZE(32, 112), 64, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1194
1202
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
1195
1203
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1196
1204
  }
@@ -1203,7 +1211,7 @@ UPB_INLINE struct google_protobuf_BoolValue* envoy_extensions_filters_network_ht
1203
1211
  return sub;
1204
1212
  }
1205
1213
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_tracing(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing* value) {
1206
- const upb_MiniTableField field = {7, UPB_SIZE(24, 96), 65, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1214
+ const upb_MiniTableField field = {7, UPB_SIZE(36, 120), 65, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1207
1215
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__Tracing_msg_init);
1208
1216
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1209
1217
  }
@@ -1216,7 +1224,7 @@ UPB_INLINE struct envoy_extensions_filters_network_http_connection_manager_v3_Ht
1216
1224
  return sub;
1217
1225
  }
1218
1226
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_http_protocol_options(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, struct envoy_config_core_v3_Http1ProtocolOptions* value) {
1219
- const upb_MiniTableField field = {8, UPB_SIZE(28, 104), 66, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1227
+ const upb_MiniTableField field = {8, UPB_SIZE(40, 128), 66, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1220
1228
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__Http1ProtocolOptions_msg_init);
1221
1229
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1222
1230
  }
@@ -1229,7 +1237,7 @@ UPB_INLINE struct envoy_config_core_v3_Http1ProtocolOptions* envoy_extensions_fi
1229
1237
  return sub;
1230
1238
  }
1231
1239
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_http2_protocol_options(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, struct envoy_config_core_v3_Http2ProtocolOptions* value) {
1232
- const upb_MiniTableField field = {9, UPB_SIZE(32, 112), 67, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1240
+ const upb_MiniTableField field = {9, UPB_SIZE(44, 136), 67, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1233
1241
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__Http2ProtocolOptions_msg_init);
1234
1242
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1235
1243
  }
@@ -1242,11 +1250,11 @@ UPB_INLINE struct envoy_config_core_v3_Http2ProtocolOptions* envoy_extensions_fi
1242
1250
  return sub;
1243
1251
  }
1244
1252
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_server_name(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, upb_StringView value) {
1245
- const upb_MiniTableField field = {10, UPB_SIZE(220, 120), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
1253
+ const upb_MiniTableField field = {10, UPB_SIZE(196, 72), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
1246
1254
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1247
1255
  }
1248
1256
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_drain_timeout(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, struct google_protobuf_Duration* value) {
1249
- const upb_MiniTableField field = {12, UPB_SIZE(36, 136), 68, 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1257
+ const upb_MiniTableField field = {12, UPB_SIZE(48, 144), 68, 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1250
1258
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
1251
1259
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1252
1260
  }
@@ -1259,7 +1267,7 @@ UPB_INLINE struct google_protobuf_Duration* envoy_extensions_filters_network_htt
1259
1267
  return sub;
1260
1268
  }
1261
1269
  UPB_INLINE struct envoy_config_accesslog_v3_AccessLog** envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_mutable_access_log(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, size_t* size) {
1262
- upb_MiniTableField field = {13, UPB_SIZE(40, 144), 0, 8, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1270
+ upb_MiniTableField field = {13, UPB_SIZE(52, 152), 0, 8, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1263
1271
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__accesslog__v3__AccessLog_msg_init);
1264
1272
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1265
1273
  if (arr) {
@@ -1271,12 +1279,12 @@ UPB_INLINE struct envoy_config_accesslog_v3_AccessLog** envoy_extensions_filters
1271
1279
  }
1272
1280
  }
1273
1281
  UPB_INLINE struct envoy_config_accesslog_v3_AccessLog** envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_resize_access_log(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, size_t size, upb_Arena* arena) {
1274
- upb_MiniTableField field = {13, UPB_SIZE(40, 144), 0, 8, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1282
+ upb_MiniTableField field = {13, UPB_SIZE(52, 152), 0, 8, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1275
1283
  return (struct envoy_config_accesslog_v3_AccessLog**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
1276
1284
  &field, size, arena);
1277
1285
  }
1278
1286
  UPB_INLINE struct envoy_config_accesslog_v3_AccessLog* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_add_access_log(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, upb_Arena* arena) {
1279
- upb_MiniTableField field = {13, UPB_SIZE(40, 144), 0, 8, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1287
+ upb_MiniTableField field = {13, UPB_SIZE(52, 152), 0, 8, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1280
1288
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__accesslog__v3__AccessLog_msg_init);
1281
1289
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1282
1290
  UPB_UPCAST(msg), &field, arena);
@@ -1291,7 +1299,7 @@ UPB_INLINE struct envoy_config_accesslog_v3_AccessLog* envoy_extensions_filters_
1291
1299
  return sub;
1292
1300
  }
1293
1301
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_use_remote_address(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, struct google_protobuf_BoolValue* value) {
1294
- const upb_MiniTableField field = {14, UPB_SIZE(44, 152), 69, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1302
+ const upb_MiniTableField field = {14, UPB_SIZE(56, 160), 69, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1295
1303
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
1296
1304
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1297
1305
  }
@@ -1304,7 +1312,7 @@ UPB_INLINE struct google_protobuf_BoolValue* envoy_extensions_filters_network_ht
1304
1312
  return sub;
1305
1313
  }
1306
1314
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_generate_request_id(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, struct google_protobuf_BoolValue* value) {
1307
- const upb_MiniTableField field = {15, UPB_SIZE(48, 160), 70, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1315
+ const upb_MiniTableField field = {15, UPB_SIZE(60, 168), 70, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1308
1316
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
1309
1317
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1310
1318
  }
@@ -1317,11 +1325,11 @@ UPB_INLINE struct google_protobuf_BoolValue* envoy_extensions_filters_network_ht
1317
1325
  return sub;
1318
1326
  }
1319
1327
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_forward_client_cert_details(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, int32_t value) {
1320
- const upb_MiniTableField field = {16, UPB_SIZE(52, 16), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
1328
+ const upb_MiniTableField field = {16, UPB_SIZE(64, 28), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
1321
1329
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1322
1330
  }
1323
1331
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_set_current_client_cert_details(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails* value) {
1324
- const upb_MiniTableField field = {17, UPB_SIZE(56, 168), 71, 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1332
+ const upb_MiniTableField field = {17, UPB_SIZE(68, 176), 71, 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1325
1333
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__SetCurrentClientCertDetails_msg_init);
1326
1334
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1327
1335
  }
@@ -1334,27 +1342,27 @@ UPB_INLINE struct envoy_extensions_filters_network_http_connection_manager_v3_Ht
1334
1342
  return sub;
1335
1343
  }
1336
1344
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_proxy_100_continue(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, bool value) {
1337
- const upb_MiniTableField field = {18, UPB_SIZE(60, 20), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1345
+ const upb_MiniTableField field = {18, 12, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1338
1346
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1339
1347
  }
1340
1348
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_xff_num_trusted_hops(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, uint32_t value) {
1341
- const upb_MiniTableField field = {19, UPB_SIZE(64, 24), 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
1349
+ const upb_MiniTableField field = {19, UPB_SIZE(72, 32), 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
1342
1350
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1343
1351
  }
1344
1352
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_represent_ipv4_remote_address_as_ipv4_mapped_ipv6(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, bool value) {
1345
- const upb_MiniTableField field = {20, UPB_SIZE(68, 28), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1353
+ const upb_MiniTableField field = {20, 13, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1346
1354
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1347
1355
  }
1348
1356
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_skip_xff_append(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, bool value) {
1349
- const upb_MiniTableField field = {21, UPB_SIZE(69, 29), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1357
+ const upb_MiniTableField field = {21, 14, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1350
1358
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1351
1359
  }
1352
1360
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_via(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, upb_StringView value) {
1353
- const upb_MiniTableField field = {22, UPB_SIZE(228, 176), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
1361
+ const upb_MiniTableField field = {22, UPB_SIZE(204, 88), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
1354
1362
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1355
1363
  }
1356
1364
  UPB_INLINE envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_UpgradeConfig** envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_mutable_upgrade_configs(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, size_t* size) {
1357
- upb_MiniTableField field = {23, UPB_SIZE(72, 192), 0, 12, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1365
+ upb_MiniTableField field = {23, UPB_SIZE(76, 184), 0, 12, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1358
1366
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__UpgradeConfig_msg_init);
1359
1367
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1360
1368
  if (arr) {
@@ -1366,12 +1374,12 @@ UPB_INLINE envoy_extensions_filters_network_http_connection_manager_v3_HttpConne
1366
1374
  }
1367
1375
  }
1368
1376
  UPB_INLINE envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_UpgradeConfig** envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_resize_upgrade_configs(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, size_t size, upb_Arena* arena) {
1369
- upb_MiniTableField field = {23, UPB_SIZE(72, 192), 0, 12, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1377
+ upb_MiniTableField field = {23, UPB_SIZE(76, 184), 0, 12, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1370
1378
  return (envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_UpgradeConfig**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
1371
1379
  &field, size, arena);
1372
1380
  }
1373
1381
  UPB_INLINE struct envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_UpgradeConfig* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_add_upgrade_configs(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, upb_Arena* arena) {
1374
- upb_MiniTableField field = {23, UPB_SIZE(72, 192), 0, 12, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1382
+ upb_MiniTableField field = {23, UPB_SIZE(76, 184), 0, 12, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1375
1383
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__UpgradeConfig_msg_init);
1376
1384
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1377
1385
  UPB_UPCAST(msg), &field, arena);
@@ -1386,7 +1394,7 @@ UPB_INLINE struct envoy_extensions_filters_network_http_connection_manager_v3_Ht
1386
1394
  return sub;
1387
1395
  }
1388
1396
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_stream_idle_timeout(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, struct google_protobuf_Duration* value) {
1389
- const upb_MiniTableField field = {24, UPB_SIZE(76, 200), 72, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1397
+ const upb_MiniTableField field = {24, UPB_SIZE(80, 192), 72, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1390
1398
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
1391
1399
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1392
1400
  }
@@ -1399,7 +1407,7 @@ UPB_INLINE struct google_protobuf_Duration* envoy_extensions_filters_network_htt
1399
1407
  return sub;
1400
1408
  }
1401
1409
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_internal_address_config(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_InternalAddressConfig* value) {
1402
- const upb_MiniTableField field = {25, UPB_SIZE(80, 208), 73, 14, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1410
+ const upb_MiniTableField field = {25, UPB_SIZE(84, 200), 73, 14, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1403
1411
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__InternalAddressConfig_msg_init);
1404
1412
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1405
1413
  }
@@ -1412,7 +1420,7 @@ UPB_INLINE struct envoy_extensions_filters_network_http_connection_manager_v3_Ht
1412
1420
  return sub;
1413
1421
  }
1414
1422
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_delayed_close_timeout(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, struct google_protobuf_Duration* value) {
1415
- const upb_MiniTableField field = {26, UPB_SIZE(84, 216), 74, 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1423
+ const upb_MiniTableField field = {26, UPB_SIZE(88, 208), 74, 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1416
1424
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
1417
1425
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1418
1426
  }
@@ -1425,7 +1433,7 @@ UPB_INLINE struct google_protobuf_Duration* envoy_extensions_filters_network_htt
1425
1433
  return sub;
1426
1434
  }
1427
1435
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_request_timeout(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, struct google_protobuf_Duration* value) {
1428
- const upb_MiniTableField field = {28, UPB_SIZE(88, 224), 75, 16, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1436
+ const upb_MiniTableField field = {28, UPB_SIZE(92, 216), 75, 16, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1429
1437
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
1430
1438
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1431
1439
  }
@@ -1438,7 +1446,7 @@ UPB_INLINE struct google_protobuf_Duration* envoy_extensions_filters_network_htt
1438
1446
  return sub;
1439
1447
  }
1440
1448
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_max_request_headers_kb(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, struct google_protobuf_UInt32Value* value) {
1441
- const upb_MiniTableField field = {29, UPB_SIZE(92, 232), 76, 17, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1449
+ const upb_MiniTableField field = {29, UPB_SIZE(96, 224), 76, 17, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1442
1450
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
1443
1451
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1444
1452
  }
@@ -1451,7 +1459,7 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_extensions_filters_network_
1451
1459
  return sub;
1452
1460
  }
1453
1461
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_normalize_path(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, struct google_protobuf_BoolValue* value) {
1454
- const upb_MiniTableField field = {30, UPB_SIZE(96, 240), 77, 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1462
+ const upb_MiniTableField field = {30, UPB_SIZE(100, 232), 77, 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1455
1463
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
1456
1464
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1457
1465
  }
@@ -1464,7 +1472,7 @@ UPB_INLINE struct google_protobuf_BoolValue* envoy_extensions_filters_network_ht
1464
1472
  return sub;
1465
1473
  }
1466
1474
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_scoped_routes(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes* value) {
1467
- const upb_MiniTableField field = {31, UPB_SIZE(204, 368), UPB_SIZE(-101, -33), 19, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1475
+ const upb_MiniTableField field = {31, UPB_SIZE(176, 360), UPB_SIZE(-173, -45), 19, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1468
1476
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__ScopedRoutes_msg_init);
1469
1477
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1470
1478
  }
@@ -1477,19 +1485,19 @@ UPB_INLINE struct envoy_extensions_filters_network_http_connection_manager_v3_Sc
1477
1485
  return sub;
1478
1486
  }
1479
1487
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_preserve_external_request_id(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, bool value) {
1480
- const upb_MiniTableField field = {32, UPB_SIZE(104, 36), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1488
+ const upb_MiniTableField field = {32, 15, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1481
1489
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1482
1490
  }
1483
1491
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_merge_slashes(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, bool value) {
1484
- const upb_MiniTableField field = {33, UPB_SIZE(105, 37), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1492
+ const upb_MiniTableField field = {33, 16, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1485
1493
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1486
1494
  }
1487
1495
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_server_header_transformation(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, int32_t value) {
1488
- const upb_MiniTableField field = {34, UPB_SIZE(108, 40), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
1496
+ const upb_MiniTableField field = {34, UPB_SIZE(104, 36), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
1489
1497
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1490
1498
  }
1491
1499
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_common_http_protocol_options(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, struct envoy_config_core_v3_HttpProtocolOptions* value) {
1492
- const upb_MiniTableField field = {35, UPB_SIZE(112, 248), 78, 20, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1500
+ const upb_MiniTableField field = {35, UPB_SIZE(108, 240), 78, 20, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1493
1501
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__HttpProtocolOptions_msg_init);
1494
1502
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1495
1503
  }
@@ -1502,7 +1510,7 @@ UPB_INLINE struct envoy_config_core_v3_HttpProtocolOptions* envoy_extensions_fil
1502
1510
  return sub;
1503
1511
  }
1504
1512
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_request_id_extension(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, envoy_extensions_filters_network_http_connection_manager_v3_RequestIDExtension* value) {
1505
- const upb_MiniTableField field = {36, UPB_SIZE(116, 256), 79, 21, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1513
+ const upb_MiniTableField field = {36, UPB_SIZE(112, 248), 79, 21, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1506
1514
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__RequestIDExtension_msg_init);
1507
1515
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1508
1516
  }
@@ -1515,11 +1523,11 @@ UPB_INLINE struct envoy_extensions_filters_network_http_connection_manager_v3_Re
1515
1523
  return sub;
1516
1524
  }
1517
1525
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_always_set_request_id_in_response(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, bool value) {
1518
- const upb_MiniTableField field = {37, UPB_SIZE(120, 44), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1526
+ const upb_MiniTableField field = {37, 17, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1519
1527
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1520
1528
  }
1521
1529
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_local_reply_config(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, envoy_extensions_filters_network_http_connection_manager_v3_LocalReplyConfig* value) {
1522
- const upb_MiniTableField field = {38, UPB_SIZE(124, 264), 80, 22, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1530
+ const upb_MiniTableField field = {38, UPB_SIZE(116, 256), 80, 22, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1523
1531
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__LocalReplyConfig_msg_init);
1524
1532
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1525
1533
  }
@@ -1532,11 +1540,11 @@ UPB_INLINE struct envoy_extensions_filters_network_http_connection_manager_v3_Lo
1532
1540
  return sub;
1533
1541
  }
1534
1542
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_strip_matching_host_port(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, bool value) {
1535
- const upb_MiniTableField field = {39, UPB_SIZE(128, 45), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1543
+ const upb_MiniTableField field = {39, 18, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1536
1544
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1537
1545
  }
1538
1546
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_stream_error_on_invalid_http_message(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, struct google_protobuf_BoolValue* value) {
1539
- const upb_MiniTableField field = {40, UPB_SIZE(132, 272), 81, 23, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1547
+ const upb_MiniTableField field = {40, UPB_SIZE(120, 264), 81, 23, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1540
1548
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
1541
1549
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1542
1550
  }
@@ -1549,7 +1557,7 @@ UPB_INLINE struct google_protobuf_BoolValue* envoy_extensions_filters_network_ht
1549
1557
  return sub;
1550
1558
  }
1551
1559
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_request_headers_timeout(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, struct google_protobuf_Duration* value) {
1552
- const upb_MiniTableField field = {41, UPB_SIZE(136, 280), 82, 24, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1560
+ const upb_MiniTableField field = {41, UPB_SIZE(124, 272), 82, 24, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1553
1561
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
1554
1562
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1555
1563
  }
@@ -1562,11 +1570,11 @@ UPB_INLINE struct google_protobuf_Duration* envoy_extensions_filters_network_htt
1562
1570
  return sub;
1563
1571
  }
1564
1572
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_strip_any_host_port(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, bool value) {
1565
- const upb_MiniTableField field = {42, UPB_SIZE(208, 376), UPB_SIZE(-141, -49), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1573
+ const upb_MiniTableField field = {42, UPB_SIZE(184, 368), UPB_SIZE(-181, -49), kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1566
1574
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1567
1575
  }
1568
1576
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_path_normalization_options(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_PathNormalizationOptions* value) {
1569
- const upb_MiniTableField field = {43, UPB_SIZE(144, 288), 83, 25, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1577
+ const upb_MiniTableField field = {43, UPB_SIZE(128, 280), 83, 25, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1570
1578
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__PathNormalizationOptions_msg_init);
1571
1579
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1572
1580
  }
@@ -1579,7 +1587,7 @@ UPB_INLINE struct envoy_extensions_filters_network_http_connection_manager_v3_Ht
1579
1587
  return sub;
1580
1588
  }
1581
1589
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_http3_protocol_options(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, struct envoy_config_core_v3_Http3ProtocolOptions* value) {
1582
- const upb_MiniTableField field = {44, UPB_SIZE(148, 296), 84, 26, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1590
+ const upb_MiniTableField field = {44, UPB_SIZE(132, 288), 84, 26, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1583
1591
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__Http3ProtocolOptions_msg_init);
1584
1592
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1585
1593
  }
@@ -1592,11 +1600,11 @@ UPB_INLINE struct envoy_config_core_v3_Http3ProtocolOptions* envoy_extensions_fi
1592
1600
  return sub;
1593
1601
  }
1594
1602
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_path_with_escaped_slashes_action(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, int32_t value) {
1595
- const upb_MiniTableField field = {45, UPB_SIZE(152, 52), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
1603
+ const upb_MiniTableField field = {45, UPB_SIZE(136, 40), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
1596
1604
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1597
1605
  }
1598
1606
  UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig** envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_mutable_original_ip_detection_extensions(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, size_t* size) {
1599
- upb_MiniTableField field = {46, UPB_SIZE(156, 304), 0, 27, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1607
+ upb_MiniTableField field = {46, UPB_SIZE(140, 296), 0, 27, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1600
1608
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
1601
1609
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1602
1610
  if (arr) {
@@ -1608,12 +1616,12 @@ UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig** envoy_extensions_f
1608
1616
  }
1609
1617
  }
1610
1618
  UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig** envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_resize_original_ip_detection_extensions(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, size_t size, upb_Arena* arena) {
1611
- upb_MiniTableField field = {46, UPB_SIZE(156, 304), 0, 27, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1619
+ upb_MiniTableField field = {46, UPB_SIZE(140, 296), 0, 27, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1612
1620
  return (struct envoy_config_core_v3_TypedExtensionConfig**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
1613
1621
  &field, size, arena);
1614
1622
  }
1615
1623
  UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_add_original_ip_detection_extensions(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, upb_Arena* arena) {
1616
- upb_MiniTableField field = {46, UPB_SIZE(156, 304), 0, 27, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1624
+ upb_MiniTableField field = {46, UPB_SIZE(140, 296), 0, 27, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1617
1625
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
1618
1626
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1619
1627
  UPB_UPCAST(msg), &field, arena);
@@ -1628,11 +1636,11 @@ UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_extensions_fi
1628
1636
  return sub;
1629
1637
  }
1630
1638
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_strip_trailing_host_dot(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, bool value) {
1631
- const upb_MiniTableField field = {47, UPB_SIZE(160, 56), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1639
+ const upb_MiniTableField field = {47, 19, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1632
1640
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1633
1641
  }
1634
1642
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_scheme_header_transformation(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, struct envoy_config_core_v3_SchemeHeaderTransformation* value) {
1635
- const upb_MiniTableField field = {48, UPB_SIZE(164, 312), 85, 28, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1643
+ const upb_MiniTableField field = {48, UPB_SIZE(144, 304), 85, 28, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1636
1644
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__SchemeHeaderTransformation_msg_init);
1637
1645
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1638
1646
  }
@@ -1645,7 +1653,7 @@ UPB_INLINE struct envoy_config_core_v3_SchemeHeaderTransformation* envoy_extensi
1645
1653
  return sub;
1646
1654
  }
1647
1655
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_proxy_status_config(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_ProxyStatusConfig* value) {
1648
- const upb_MiniTableField field = {49, UPB_SIZE(168, 320), 86, 29, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1656
+ const upb_MiniTableField field = {49, UPB_SIZE(148, 312), 86, 29, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1649
1657
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__ProxyStatusConfig_msg_init);
1650
1658
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1651
1659
  }
@@ -1658,7 +1666,7 @@ UPB_INLINE struct envoy_extensions_filters_network_http_connection_manager_v3_Ht
1658
1666
  return sub;
1659
1667
  }
1660
1668
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_typed_header_validation_config(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, struct envoy_config_core_v3_TypedExtensionConfig* value) {
1661
- const upb_MiniTableField field = {50, UPB_SIZE(172, 328), 87, 30, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1669
+ const upb_MiniTableField field = {50, UPB_SIZE(152, 320), 87, 30, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1662
1670
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
1663
1671
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1664
1672
  }
@@ -1671,11 +1679,11 @@ UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_extensions_fi
1671
1679
  return sub;
1672
1680
  }
1673
1681
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_append_x_forwarded_port(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, bool value) {
1674
- const upb_MiniTableField field = {51, UPB_SIZE(176, 57), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1682
+ const upb_MiniTableField field = {51, 20, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1675
1683
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1676
1684
  }
1677
1685
  UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig** envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_mutable_early_header_mutation_extensions(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, size_t* size) {
1678
- upb_MiniTableField field = {52, UPB_SIZE(180, 336), 0, 31, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1686
+ upb_MiniTableField field = {52, UPB_SIZE(156, 328), 0, 31, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1679
1687
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
1680
1688
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
1681
1689
  if (arr) {
@@ -1687,12 +1695,12 @@ UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig** envoy_extensions_f
1687
1695
  }
1688
1696
  }
1689
1697
  UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig** envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_resize_early_header_mutation_extensions(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, size_t size, upb_Arena* arena) {
1690
- upb_MiniTableField field = {52, UPB_SIZE(180, 336), 0, 31, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1698
+ upb_MiniTableField field = {52, UPB_SIZE(156, 328), 0, 31, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1691
1699
  return (struct envoy_config_core_v3_TypedExtensionConfig**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
1692
1700
  &field, size, arena);
1693
1701
  }
1694
1702
  UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_add_early_header_mutation_extensions(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager* msg, upb_Arena* arena) {
1695
- upb_MiniTableField field = {52, UPB_SIZE(180, 336), 0, 31, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1703
+ upb_MiniTableField field = {52, UPB_SIZE(156, 328), 0, 31, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1696
1704
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__TypedExtensionConfig_msg_init);
1697
1705
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
1698
1706
  UPB_UPCAST(msg), &field, arena);
@@ -1707,7 +1715,7 @@ UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_extensions_fi
1707
1715
  return sub;
1708
1716
  }
1709
1717
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_add_proxy_protocol_connection_state(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, struct google_protobuf_BoolValue* value) {
1710
- const upb_MiniTableField field = {53, UPB_SIZE(184, 344), 88, 32, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1718
+ const upb_MiniTableField field = {53, UPB_SIZE(160, 336), 88, 32, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1711
1719
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
1712
1720
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1713
1721
  }
@@ -1720,7 +1728,7 @@ UPB_INLINE struct google_protobuf_BoolValue* envoy_extensions_filters_network_ht
1720
1728
  return sub;
1721
1729
  }
1722
1730
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_access_log_flush_interval(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, struct google_protobuf_Duration* value) {
1723
- const upb_MiniTableField field = {54, UPB_SIZE(188, 352), 89, 33, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1731
+ const upb_MiniTableField field = {54, UPB_SIZE(164, 344), 89, 33, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1724
1732
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Duration_msg_init);
1725
1733
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1726
1734
  }
@@ -1733,11 +1741,11 @@ UPB_INLINE struct google_protobuf_Duration* envoy_extensions_filters_network_htt
1733
1741
  return sub;
1734
1742
  }
1735
1743
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_flush_access_log_on_new_request(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, bool value) {
1736
- const upb_MiniTableField field = {55, UPB_SIZE(192, 58), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1744
+ const upb_MiniTableField field = {55, 21, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1737
1745
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1738
1746
  }
1739
1747
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_access_log_options(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_HcmAccessLogOptions* value) {
1740
- const upb_MiniTableField field = {56, UPB_SIZE(196, 360), 90, 34, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1748
+ const upb_MiniTableField field = {56, UPB_SIZE(168, 352), 90, 34, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1741
1749
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__HcmAccessLogOptions_msg_init);
1742
1750
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1743
1751
  }
@@ -1750,11 +1758,11 @@ UPB_INLINE struct envoy_extensions_filters_network_http_connection_manager_v3_Ht
1750
1758
  return sub;
1751
1759
  }
1752
1760
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_append_local_overload(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, bool value) {
1753
- const upb_MiniTableField field = {57, UPB_SIZE(200, 59), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1761
+ const upb_MiniTableField field = {57, 22, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1754
1762
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1755
1763
  }
1756
1764
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_set_http1_safe_max_connection_duration(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager *msg, bool value) {
1757
- const upb_MiniTableField field = {58, UPB_SIZE(201, 60), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1765
+ const upb_MiniTableField field = {58, 23, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1758
1766
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1759
1767
  }
1760
1768
 
@@ -1846,40 +1854,40 @@ UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_Http
1846
1854
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
1847
1855
  }
1848
1856
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing_clear_verbose(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing* msg) {
1849
- const upb_MiniTableField field = {6, UPB_SIZE(24, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1857
+ const upb_MiniTableField field = {6, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1850
1858
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
1851
1859
  }
1852
1860
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing_verbose(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing* msg) {
1853
1861
  bool default_val = false;
1854
1862
  bool ret;
1855
- const upb_MiniTableField field = {6, UPB_SIZE(24, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1863
+ const upb_MiniTableField field = {6, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1856
1864
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
1857
1865
  &default_val, &ret);
1858
1866
  return ret;
1859
1867
  }
1860
1868
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing_clear_max_path_tag_length(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing* msg) {
1861
- const upb_MiniTableField field = {7, UPB_SIZE(28, 40), 67, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1869
+ const upb_MiniTableField field = {7, UPB_SIZE(24, 40), 67, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1862
1870
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
1863
1871
  }
1864
1872
  UPB_INLINE const struct google_protobuf_UInt32Value* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing_max_path_tag_length(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing* msg) {
1865
1873
  const struct google_protobuf_UInt32Value* default_val = NULL;
1866
1874
  const struct google_protobuf_UInt32Value* ret;
1867
- const upb_MiniTableField field = {7, UPB_SIZE(28, 40), 67, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1875
+ const upb_MiniTableField field = {7, UPB_SIZE(24, 40), 67, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1868
1876
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
1869
1877
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
1870
1878
  &default_val, &ret);
1871
1879
  return ret;
1872
1880
  }
1873
1881
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing_has_max_path_tag_length(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing* msg) {
1874
- const upb_MiniTableField field = {7, UPB_SIZE(28, 40), 67, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1882
+ const upb_MiniTableField field = {7, UPB_SIZE(24, 40), 67, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1875
1883
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
1876
1884
  }
1877
1885
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing_clear_custom_tags(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing* msg) {
1878
- const upb_MiniTableField field = {8, UPB_SIZE(32, 48), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1886
+ const upb_MiniTableField field = {8, UPB_SIZE(28, 48), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1879
1887
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
1880
1888
  }
1881
1889
  UPB_INLINE const struct envoy_type_tracing_v3_CustomTag* const* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing_custom_tags(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing* msg, size_t* size) {
1882
- const upb_MiniTableField field = {8, UPB_SIZE(32, 48), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1890
+ const upb_MiniTableField field = {8, UPB_SIZE(28, 48), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1883
1891
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__tracing__v3__CustomTag_msg_init);
1884
1892
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1885
1893
  if (arr) {
@@ -1891,7 +1899,7 @@ UPB_INLINE const struct envoy_type_tracing_v3_CustomTag* const* envoy_extensions
1891
1899
  }
1892
1900
  }
1893
1901
  UPB_INLINE const upb_Array* _envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing_custom_tags_upb_array(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing* msg, size_t* size) {
1894
- const upb_MiniTableField field = {8, UPB_SIZE(32, 48), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1902
+ const upb_MiniTableField field = {8, UPB_SIZE(28, 48), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1895
1903
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__tracing__v3__CustomTag_msg_init);
1896
1904
  const upb_Array* arr = upb_Message_GetArray(UPB_UPCAST(msg), &field);
1897
1905
  if (size) {
@@ -1900,7 +1908,7 @@ UPB_INLINE const upb_Array* _envoy_extensions_filters_network_http_connection_ma
1900
1908
  return arr;
1901
1909
  }
1902
1910
  UPB_INLINE upb_Array* _envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing_custom_tags_mutable_upb_array(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing* msg, size_t* size, upb_Arena* arena) {
1903
- const upb_MiniTableField field = {8, UPB_SIZE(32, 48), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1911
+ const upb_MiniTableField field = {8, UPB_SIZE(28, 48), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1904
1912
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__tracing__v3__CustomTag_msg_init);
1905
1913
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(UPB_UPCAST(msg),
1906
1914
  &field, arena);
@@ -1910,37 +1918,37 @@ UPB_INLINE upb_Array* _envoy_extensions_filters_network_http_connection_manager_
1910
1918
  return arr;
1911
1919
  }
1912
1920
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing_clear_provider(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing* msg) {
1913
- const upb_MiniTableField field = {9, UPB_SIZE(36, 56), 68, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1921
+ const upb_MiniTableField field = {9, UPB_SIZE(32, 56), 68, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1914
1922
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
1915
1923
  }
1916
1924
  UPB_INLINE const struct envoy_config_trace_v3_Tracing_Http* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing_provider(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing* msg) {
1917
1925
  const struct envoy_config_trace_v3_Tracing_Http* default_val = NULL;
1918
1926
  const struct envoy_config_trace_v3_Tracing_Http* ret;
1919
- const upb_MiniTableField field = {9, UPB_SIZE(36, 56), 68, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1927
+ const upb_MiniTableField field = {9, UPB_SIZE(32, 56), 68, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1920
1928
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__trace__v3__Tracing__Http_msg_init);
1921
1929
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
1922
1930
  &default_val, &ret);
1923
1931
  return ret;
1924
1932
  }
1925
1933
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing_has_provider(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing* msg) {
1926
- const upb_MiniTableField field = {9, UPB_SIZE(36, 56), 68, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1934
+ const upb_MiniTableField field = {9, UPB_SIZE(32, 56), 68, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1927
1935
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
1928
1936
  }
1929
1937
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing_clear_spawn_upstream_span(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing* msg) {
1930
- const upb_MiniTableField field = {10, UPB_SIZE(40, 64), 69, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1938
+ const upb_MiniTableField field = {10, UPB_SIZE(36, 64), 69, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1931
1939
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
1932
1940
  }
1933
1941
  UPB_INLINE const struct google_protobuf_BoolValue* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing_spawn_upstream_span(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing* msg) {
1934
1942
  const struct google_protobuf_BoolValue* default_val = NULL;
1935
1943
  const struct google_protobuf_BoolValue* ret;
1936
- const upb_MiniTableField field = {10, UPB_SIZE(40, 64), 69, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1944
+ const upb_MiniTableField field = {10, UPB_SIZE(36, 64), 69, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1937
1945
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
1938
1946
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
1939
1947
  &default_val, &ret);
1940
1948
  return ret;
1941
1949
  }
1942
1950
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing_has_spawn_upstream_span(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing* msg) {
1943
- const upb_MiniTableField field = {10, UPB_SIZE(40, 64), 69, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1951
+ const upb_MiniTableField field = {10, UPB_SIZE(36, 64), 69, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1944
1952
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
1945
1953
  }
1946
1954
 
@@ -1984,11 +1992,11 @@ UPB_INLINE struct envoy_type_v3_Percent* envoy_extensions_filters_network_http_c
1984
1992
  return sub;
1985
1993
  }
1986
1994
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing_set_verbose(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing *msg, bool value) {
1987
- const upb_MiniTableField field = {6, UPB_SIZE(24, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1995
+ const upb_MiniTableField field = {6, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1988
1996
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1989
1997
  }
1990
1998
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing_set_max_path_tag_length(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing *msg, struct google_protobuf_UInt32Value* value) {
1991
- const upb_MiniTableField field = {7, UPB_SIZE(28, 40), 67, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1999
+ const upb_MiniTableField field = {7, UPB_SIZE(24, 40), 67, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1992
2000
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__UInt32Value_msg_init);
1993
2001
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1994
2002
  }
@@ -2001,7 +2009,7 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_extensions_filters_network_
2001
2009
  return sub;
2002
2010
  }
2003
2011
  UPB_INLINE struct envoy_type_tracing_v3_CustomTag** envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing_mutable_custom_tags(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing* msg, size_t* size) {
2004
- upb_MiniTableField field = {8, UPB_SIZE(32, 48), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2012
+ upb_MiniTableField field = {8, UPB_SIZE(28, 48), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2005
2013
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__tracing__v3__CustomTag_msg_init);
2006
2014
  upb_Array* arr = upb_Message_GetMutableArray(UPB_UPCAST(msg), &field);
2007
2015
  if (arr) {
@@ -2013,12 +2021,12 @@ UPB_INLINE struct envoy_type_tracing_v3_CustomTag** envoy_extensions_filters_net
2013
2021
  }
2014
2022
  }
2015
2023
  UPB_INLINE struct envoy_type_tracing_v3_CustomTag** envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing_resize_custom_tags(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing* msg, size_t size, upb_Arena* arena) {
2016
- upb_MiniTableField field = {8, UPB_SIZE(32, 48), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2024
+ upb_MiniTableField field = {8, UPB_SIZE(28, 48), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2017
2025
  return (struct envoy_type_tracing_v3_CustomTag**)upb_Message_ResizeArrayUninitialized(UPB_UPCAST(msg),
2018
2026
  &field, size, arena);
2019
2027
  }
2020
2028
  UPB_INLINE struct envoy_type_tracing_v3_CustomTag* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing_add_custom_tags(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing* msg, upb_Arena* arena) {
2021
- upb_MiniTableField field = {8, UPB_SIZE(32, 48), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2029
+ upb_MiniTableField field = {8, UPB_SIZE(28, 48), 0, 4, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2022
2030
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__type__tracing__v3__CustomTag_msg_init);
2023
2031
  upb_Array* arr = upb_Message_GetOrCreateMutableArray(
2024
2032
  UPB_UPCAST(msg), &field, arena);
@@ -2033,7 +2041,7 @@ UPB_INLINE struct envoy_type_tracing_v3_CustomTag* envoy_extensions_filters_netw
2033
2041
  return sub;
2034
2042
  }
2035
2043
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing_set_provider(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing *msg, struct envoy_config_trace_v3_Tracing_Http* value) {
2036
- const upb_MiniTableField field = {9, UPB_SIZE(36, 56), 68, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2044
+ const upb_MiniTableField field = {9, UPB_SIZE(32, 56), 68, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2037
2045
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__trace__v3__Tracing__Http_msg_init);
2038
2046
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2039
2047
  }
@@ -2046,7 +2054,7 @@ UPB_INLINE struct envoy_config_trace_v3_Tracing_Http* envoy_extensions_filters_n
2046
2054
  return sub;
2047
2055
  }
2048
2056
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing_set_spawn_upstream_span(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_Tracing *msg, struct google_protobuf_BoolValue* value) {
2049
- const upb_MiniTableField field = {10, UPB_SIZE(40, 64), 69, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2057
+ const upb_MiniTableField field = {10, UPB_SIZE(36, 64), 69, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2050
2058
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
2051
2059
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2052
2060
  }
@@ -2217,73 +2225,73 @@ UPB_INLINE char* envoy_extensions_filters_network_http_connection_manager_v3_Htt
2217
2225
  return ptr;
2218
2226
  }
2219
2227
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails_clear_subject(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails* msg) {
2220
- const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2228
+ const upb_MiniTableField field = {1, 16, 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2221
2229
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
2222
2230
  }
2223
2231
  UPB_INLINE const struct google_protobuf_BoolValue* envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails_subject(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails* msg) {
2224
2232
  const struct google_protobuf_BoolValue* default_val = NULL;
2225
2233
  const struct google_protobuf_BoolValue* ret;
2226
- const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2234
+ const upb_MiniTableField field = {1, 16, 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2227
2235
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
2228
2236
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2229
2237
  &default_val, &ret);
2230
2238
  return ret;
2231
2239
  }
2232
2240
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails_has_subject(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails* msg) {
2233
- const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2241
+ const upb_MiniTableField field = {1, 16, 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2234
2242
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
2235
2243
  }
2236
2244
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails_clear_cert(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails* msg) {
2237
- const upb_MiniTableField field = {3, UPB_SIZE(16, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2245
+ const upb_MiniTableField field = {3, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2238
2246
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
2239
2247
  }
2240
2248
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails_cert(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails* msg) {
2241
2249
  bool default_val = false;
2242
2250
  bool ret;
2243
- const upb_MiniTableField field = {3, UPB_SIZE(16, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2251
+ const upb_MiniTableField field = {3, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2244
2252
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2245
2253
  &default_val, &ret);
2246
2254
  return ret;
2247
2255
  }
2248
2256
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails_clear_dns(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails* msg) {
2249
- const upb_MiniTableField field = {4, UPB_SIZE(17, 10), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2257
+ const upb_MiniTableField field = {4, 10, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2250
2258
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
2251
2259
  }
2252
2260
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails_dns(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails* msg) {
2253
2261
  bool default_val = false;
2254
2262
  bool ret;
2255
- const upb_MiniTableField field = {4, UPB_SIZE(17, 10), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2263
+ const upb_MiniTableField field = {4, 10, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2256
2264
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2257
2265
  &default_val, &ret);
2258
2266
  return ret;
2259
2267
  }
2260
2268
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails_clear_uri(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails* msg) {
2261
- const upb_MiniTableField field = {5, UPB_SIZE(18, 11), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2269
+ const upb_MiniTableField field = {5, 11, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2262
2270
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
2263
2271
  }
2264
2272
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails_uri(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails* msg) {
2265
2273
  bool default_val = false;
2266
2274
  bool ret;
2267
- const upb_MiniTableField field = {5, UPB_SIZE(18, 11), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2275
+ const upb_MiniTableField field = {5, 11, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2268
2276
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2269
2277
  &default_val, &ret);
2270
2278
  return ret;
2271
2279
  }
2272
2280
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails_clear_chain(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails* msg) {
2273
- const upb_MiniTableField field = {6, UPB_SIZE(19, 12), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2281
+ const upb_MiniTableField field = {6, 12, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2274
2282
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
2275
2283
  }
2276
2284
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails_chain(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails* msg) {
2277
2285
  bool default_val = false;
2278
2286
  bool ret;
2279
- const upb_MiniTableField field = {6, UPB_SIZE(19, 12), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2287
+ const upb_MiniTableField field = {6, 12, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2280
2288
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2281
2289
  &default_val, &ret);
2282
2290
  return ret;
2283
2291
  }
2284
2292
 
2285
2293
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails_set_subject(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails *msg, struct google_protobuf_BoolValue* value) {
2286
- const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2294
+ const upb_MiniTableField field = {1, 16, 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2287
2295
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__BoolValue_msg_init);
2288
2296
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2289
2297
  }
@@ -2296,19 +2304,19 @@ UPB_INLINE struct google_protobuf_BoolValue* envoy_extensions_filters_network_ht
2296
2304
  return sub;
2297
2305
  }
2298
2306
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails_set_cert(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails *msg, bool value) {
2299
- const upb_MiniTableField field = {3, UPB_SIZE(16, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2307
+ const upb_MiniTableField field = {3, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2300
2308
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2301
2309
  }
2302
2310
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails_set_dns(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails *msg, bool value) {
2303
- const upb_MiniTableField field = {4, UPB_SIZE(17, 10), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2311
+ const upb_MiniTableField field = {4, 10, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2304
2312
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2305
2313
  }
2306
2314
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails_set_uri(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails *msg, bool value) {
2307
- const upb_MiniTableField field = {5, UPB_SIZE(18, 11), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2315
+ const upb_MiniTableField field = {5, 11, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2308
2316
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2309
2317
  }
2310
2318
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails_set_chain(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_SetCurrentClientCertDetails *msg, bool value) {
2311
- const upb_MiniTableField field = {6, UPB_SIZE(19, 12), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2319
+ const upb_MiniTableField field = {6, 12, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2312
2320
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2313
2321
  }
2314
2322
 
@@ -2607,6 +2615,10 @@ UPB_INLINE envoy_extensions_filters_network_http_connection_manager_v3_HttpConne
2607
2615
  return (envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_ProxyStatusConfig_proxy_name_oneofcases)upb_Message_WhichOneofFieldNumber(
2608
2616
  UPB_UPCAST(msg), &field);
2609
2617
  }
2618
+ UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_ProxyStatusConfig_clear_proxy_name(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_ProxyStatusConfig* msg) {
2619
+ const upb_MiniTableField field = {5, 16, -13, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2620
+ upb_Message_ClearOneof(UPB_UPCAST(msg), &envoy__extensions__filters__network__http_0connection_0manager__v3__HttpConnectionManager__ProxyStatusConfig_msg_init, &field);
2621
+ }
2610
2622
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_ProxyStatusConfig_clear_remove_details(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_ProxyStatusConfig* msg) {
2611
2623
  const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2612
2624
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
@@ -2767,25 +2779,25 @@ UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_Http
2767
2779
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
2768
2780
  }
2769
2781
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_HcmAccessLogOptions_clear_flush_access_log_on_new_request(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_HcmAccessLogOptions* msg) {
2770
- const upb_MiniTableField field = {2, UPB_SIZE(16, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2782
+ const upb_MiniTableField field = {2, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2771
2783
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
2772
2784
  }
2773
2785
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_HcmAccessLogOptions_flush_access_log_on_new_request(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_HcmAccessLogOptions* msg) {
2774
2786
  bool default_val = false;
2775
2787
  bool ret;
2776
- const upb_MiniTableField field = {2, UPB_SIZE(16, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2788
+ const upb_MiniTableField field = {2, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2777
2789
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2778
2790
  &default_val, &ret);
2779
2791
  return ret;
2780
2792
  }
2781
2793
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_HcmAccessLogOptions_clear_flush_log_on_tunnel_successfully_established(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_HcmAccessLogOptions* msg) {
2782
- const upb_MiniTableField field = {3, UPB_SIZE(17, 10), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2794
+ const upb_MiniTableField field = {3, 10, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2783
2795
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
2784
2796
  }
2785
2797
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_HcmAccessLogOptions_flush_log_on_tunnel_successfully_established(const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_HcmAccessLogOptions* msg) {
2786
2798
  bool default_val = false;
2787
2799
  bool ret;
2788
- const upb_MiniTableField field = {3, UPB_SIZE(17, 10), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2800
+ const upb_MiniTableField field = {3, 10, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2789
2801
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
2790
2802
  &default_val, &ret);
2791
2803
  return ret;
@@ -2805,11 +2817,11 @@ UPB_INLINE struct google_protobuf_Duration* envoy_extensions_filters_network_htt
2805
2817
  return sub;
2806
2818
  }
2807
2819
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_HcmAccessLogOptions_set_flush_access_log_on_new_request(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_HcmAccessLogOptions *msg, bool value) {
2808
- const upb_MiniTableField field = {2, UPB_SIZE(16, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2820
+ const upb_MiniTableField field = {2, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2809
2821
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2810
2822
  }
2811
2823
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_HcmAccessLogOptions_set_flush_log_on_tunnel_successfully_established(envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_HcmAccessLogOptions *msg, bool value) {
2812
- const upb_MiniTableField field = {3, UPB_SIZE(17, 10), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2824
+ const upb_MiniTableField field = {3, 10, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2813
2825
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2814
2826
  }
2815
2827
 
@@ -3210,37 +3222,37 @@ UPB_INLINE char* envoy_extensions_filters_network_http_connection_manager_v3_Rds
3210
3222
  return ptr;
3211
3223
  }
3212
3224
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_Rds_clear_config_source(envoy_extensions_filters_network_http_connection_manager_v3_Rds* msg) {
3213
- const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3225
+ const upb_MiniTableField field = {1, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3214
3226
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
3215
3227
  }
3216
3228
  UPB_INLINE const struct envoy_config_core_v3_ConfigSource* envoy_extensions_filters_network_http_connection_manager_v3_Rds_config_source(const envoy_extensions_filters_network_http_connection_manager_v3_Rds* msg) {
3217
3229
  const struct envoy_config_core_v3_ConfigSource* default_val = NULL;
3218
3230
  const struct envoy_config_core_v3_ConfigSource* ret;
3219
- const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3231
+ const upb_MiniTableField field = {1, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3220
3232
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__ConfigSource_msg_init);
3221
3233
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3222
3234
  &default_val, &ret);
3223
3235
  return ret;
3224
3236
  }
3225
3237
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_Rds_has_config_source(const envoy_extensions_filters_network_http_connection_manager_v3_Rds* msg) {
3226
- const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3238
+ const upb_MiniTableField field = {1, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3227
3239
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
3228
3240
  }
3229
3241
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_Rds_clear_route_config_name(envoy_extensions_filters_network_http_connection_manager_v3_Rds* msg) {
3230
- const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3242
+ const upb_MiniTableField field = {2, 16, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3231
3243
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
3232
3244
  }
3233
3245
  UPB_INLINE upb_StringView envoy_extensions_filters_network_http_connection_manager_v3_Rds_route_config_name(const envoy_extensions_filters_network_http_connection_manager_v3_Rds* msg) {
3234
3246
  upb_StringView default_val = upb_StringView_FromString("");
3235
3247
  upb_StringView ret;
3236
- const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3248
+ const upb_MiniTableField field = {2, 16, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3237
3249
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3238
3250
  &default_val, &ret);
3239
3251
  return ret;
3240
3252
  }
3241
3253
 
3242
3254
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_Rds_set_config_source(envoy_extensions_filters_network_http_connection_manager_v3_Rds *msg, struct envoy_config_core_v3_ConfigSource* value) {
3243
- const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3255
+ const upb_MiniTableField field = {1, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3244
3256
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__ConfigSource_msg_init);
3245
3257
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3246
3258
  }
@@ -3253,7 +3265,7 @@ UPB_INLINE struct envoy_config_core_v3_ConfigSource* envoy_extensions_filters_ne
3253
3265
  return sub;
3254
3266
  }
3255
3267
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_Rds_set_route_config_name(envoy_extensions_filters_network_http_connection_manager_v3_Rds *msg, upb_StringView value) {
3256
- const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3268
+ const upb_MiniTableField field = {2, 16, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3257
3269
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3258
3270
  }
3259
3271
 
@@ -3408,6 +3420,10 @@ UPB_INLINE envoy_extensions_filters_network_http_connection_manager_v3_ScopedRou
3408
3420
  return (envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes_config_specifier_oneofcases)upb_Message_WhichOneofFieldNumber(
3409
3421
  UPB_UPCAST(msg), &field);
3410
3422
  }
3423
+ UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes_clear_config_specifier(envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes* msg) {
3424
+ const upb_MiniTableField field = {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)};
3425
+ upb_Message_ClearOneof(UPB_UPCAST(msg), &envoy__extensions__filters__network__http_0connection_0manager__v3__ScopedRoutes_msg_init, &field);
3426
+ }
3411
3427
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes_clear_name(envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes* msg) {
3412
3428
  const upb_MiniTableField field = {1, UPB_SIZE(28, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3413
3429
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
@@ -3696,6 +3712,10 @@ UPB_INLINE envoy_extensions_filters_network_http_connection_manager_v3_ScopedRou
3696
3712
  return (envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes_ScopeKeyBuilder_FragmentBuilder_type_oneofcases)upb_Message_WhichOneofFieldNumber(
3697
3713
  UPB_UPCAST(msg), &field);
3698
3714
  }
3715
+ UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes_ScopeKeyBuilder_FragmentBuilder_clear_type(envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes_ScopeKeyBuilder_FragmentBuilder* msg) {
3716
+ const upb_MiniTableField field = {1, UPB_SIZE(12, 16), -9, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3717
+ upb_Message_ClearOneof(UPB_UPCAST(msg), &envoy__extensions__filters__network__http_0connection_0manager__v3__ScopedRoutes__ScopeKeyBuilder__FragmentBuilder_msg_init, &field);
3718
+ }
3699
3719
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes_ScopeKeyBuilder_FragmentBuilder_clear_header_value_extractor(envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes_ScopeKeyBuilder_FragmentBuilder* msg) {
3700
3720
  const upb_MiniTableField field = {1, UPB_SIZE(12, 16), -9, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3701
3721
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
@@ -3774,6 +3794,10 @@ UPB_INLINE envoy_extensions_filters_network_http_connection_manager_v3_ScopedRou
3774
3794
  return (envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes_ScopeKeyBuilder_FragmentBuilder_HeaderValueExtractor_extract_type_oneofcases)upb_Message_WhichOneofFieldNumber(
3775
3795
  UPB_UPCAST(msg), &field);
3776
3796
  }
3797
+ UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes_ScopeKeyBuilder_FragmentBuilder_HeaderValueExtractor_clear_extract_type(envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes_ScopeKeyBuilder_FragmentBuilder_HeaderValueExtractor* msg) {
3798
+ const upb_MiniTableField field = {3, UPB_SIZE(12, 48), -9, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
3799
+ upb_Message_ClearOneof(UPB_UPCAST(msg), &envoy__extensions__filters__network__http_0connection_0manager__v3__ScopedRoutes__ScopeKeyBuilder__FragmentBuilder__HeaderValueExtractor_msg_init, &field);
3800
+ }
3777
3801
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes_ScopeKeyBuilder_FragmentBuilder_HeaderValueExtractor_clear_name(envoy_extensions_filters_network_http_connection_manager_v3_ScopedRoutes_ScopeKeyBuilder_FragmentBuilder_HeaderValueExtractor* msg) {
3778
3802
  const upb_MiniTableField field = {1, 16, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3779
3803
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
@@ -3965,37 +3989,37 @@ UPB_INLINE char* envoy_extensions_filters_network_http_connection_manager_v3_Sco
3965
3989
  return ptr;
3966
3990
  }
3967
3991
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_ScopedRds_clear_scoped_rds_config_source(envoy_extensions_filters_network_http_connection_manager_v3_ScopedRds* msg) {
3968
- const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3992
+ const upb_MiniTableField field = {1, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3969
3993
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
3970
3994
  }
3971
3995
  UPB_INLINE const struct envoy_config_core_v3_ConfigSource* envoy_extensions_filters_network_http_connection_manager_v3_ScopedRds_scoped_rds_config_source(const envoy_extensions_filters_network_http_connection_manager_v3_ScopedRds* msg) {
3972
3996
  const struct envoy_config_core_v3_ConfigSource* default_val = NULL;
3973
3997
  const struct envoy_config_core_v3_ConfigSource* ret;
3974
- const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3998
+ const upb_MiniTableField field = {1, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3975
3999
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__ConfigSource_msg_init);
3976
4000
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3977
4001
  &default_val, &ret);
3978
4002
  return ret;
3979
4003
  }
3980
4004
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_ScopedRds_has_scoped_rds_config_source(const envoy_extensions_filters_network_http_connection_manager_v3_ScopedRds* msg) {
3981
- const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4005
+ const upb_MiniTableField field = {1, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3982
4006
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
3983
4007
  }
3984
4008
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_ScopedRds_clear_srds_resources_locator(envoy_extensions_filters_network_http_connection_manager_v3_ScopedRds* msg) {
3985
- const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4009
+ const upb_MiniTableField field = {2, 16, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3986
4010
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
3987
4011
  }
3988
4012
  UPB_INLINE upb_StringView envoy_extensions_filters_network_http_connection_manager_v3_ScopedRds_srds_resources_locator(const envoy_extensions_filters_network_http_connection_manager_v3_ScopedRds* msg) {
3989
4013
  upb_StringView default_val = upb_StringView_FromString("");
3990
4014
  upb_StringView ret;
3991
- const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4015
+ const upb_MiniTableField field = {2, 16, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3992
4016
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3993
4017
  &default_val, &ret);
3994
4018
  return ret;
3995
4019
  }
3996
4020
 
3997
4021
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_ScopedRds_set_scoped_rds_config_source(envoy_extensions_filters_network_http_connection_manager_v3_ScopedRds *msg, struct envoy_config_core_v3_ConfigSource* value) {
3998
- const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4022
+ const upb_MiniTableField field = {1, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3999
4023
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__ConfigSource_msg_init);
4000
4024
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4001
4025
  }
@@ -4008,7 +4032,7 @@ UPB_INLINE struct envoy_config_core_v3_ConfigSource* envoy_extensions_filters_ne
4008
4032
  return sub;
4009
4033
  }
4010
4034
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_ScopedRds_set_srds_resources_locator(envoy_extensions_filters_network_http_connection_manager_v3_ScopedRds *msg, upb_StringView value) {
4011
- const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4035
+ const upb_MiniTableField field = {2, 16, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4012
4036
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4013
4037
  }
4014
4038
 
@@ -4054,10 +4078,14 @@ typedef enum {
4054
4078
  envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter_config_type_NOT_SET = 0
4055
4079
  } envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter_config_type_oneofcases;
4056
4080
  UPB_INLINE envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter_config_type_oneofcases envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter_config_type_case(const envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter* msg) {
4057
- const upb_MiniTableField field = {4, UPB_SIZE(16, 32), -9, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4081
+ const upb_MiniTableField field = {4, UPB_SIZE(16, 32), -13, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4058
4082
  return (envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter_config_type_oneofcases)upb_Message_WhichOneofFieldNumber(
4059
4083
  UPB_UPCAST(msg), &field);
4060
4084
  }
4085
+ UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter_clear_config_type(envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter* msg) {
4086
+ const upb_MiniTableField field = {4, UPB_SIZE(16, 32), -13, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4087
+ upb_Message_ClearOneof(UPB_UPCAST(msg), &envoy__extensions__filters__network__http_0connection_0manager__v3__HttpFilter_msg_init, &field);
4088
+ }
4061
4089
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter_clear_name(envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter* msg) {
4062
4090
  const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4063
4091
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
@@ -4071,59 +4099,59 @@ UPB_INLINE upb_StringView envoy_extensions_filters_network_http_connection_manag
4071
4099
  return ret;
4072
4100
  }
4073
4101
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter_clear_typed_config(envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter* msg) {
4074
- const upb_MiniTableField field = {4, UPB_SIZE(16, 32), -9, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4102
+ const upb_MiniTableField field = {4, UPB_SIZE(16, 32), -13, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4075
4103
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4076
4104
  }
4077
4105
  UPB_INLINE const struct google_protobuf_Any* envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter_typed_config(const envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter* msg) {
4078
4106
  const struct google_protobuf_Any* default_val = NULL;
4079
4107
  const struct google_protobuf_Any* ret;
4080
- const upb_MiniTableField field = {4, UPB_SIZE(16, 32), -9, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4108
+ const upb_MiniTableField field = {4, UPB_SIZE(16, 32), -13, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4081
4109
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
4082
4110
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4083
4111
  &default_val, &ret);
4084
4112
  return ret;
4085
4113
  }
4086
4114
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter_has_typed_config(const envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter* msg) {
4087
- const upb_MiniTableField field = {4, UPB_SIZE(16, 32), -9, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4115
+ const upb_MiniTableField field = {4, UPB_SIZE(16, 32), -13, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4088
4116
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4089
4117
  }
4090
4118
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter_clear_config_discovery(envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter* msg) {
4091
- const upb_MiniTableField field = {5, UPB_SIZE(16, 32), -9, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4119
+ const upb_MiniTableField field = {5, UPB_SIZE(16, 32), -13, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4092
4120
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4093
4121
  }
4094
4122
  UPB_INLINE const struct envoy_config_core_v3_ExtensionConfigSource* envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter_config_discovery(const envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter* msg) {
4095
4123
  const struct envoy_config_core_v3_ExtensionConfigSource* default_val = NULL;
4096
4124
  const struct envoy_config_core_v3_ExtensionConfigSource* ret;
4097
- const upb_MiniTableField field = {5, UPB_SIZE(16, 32), -9, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4125
+ const upb_MiniTableField field = {5, UPB_SIZE(16, 32), -13, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4098
4126
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__ExtensionConfigSource_msg_init);
4099
4127
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4100
4128
  &default_val, &ret);
4101
4129
  return ret;
4102
4130
  }
4103
4131
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter_has_config_discovery(const envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter* msg) {
4104
- const upb_MiniTableField field = {5, UPB_SIZE(16, 32), -9, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4132
+ const upb_MiniTableField field = {5, UPB_SIZE(16, 32), -13, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4105
4133
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4106
4134
  }
4107
4135
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter_clear_is_optional(envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter* msg) {
4108
- const upb_MiniTableField field = {6, 12, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4136
+ const upb_MiniTableField field = {6, 8, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4109
4137
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4110
4138
  }
4111
4139
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter_is_optional(const envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter* msg) {
4112
4140
  bool default_val = false;
4113
4141
  bool ret;
4114
- const upb_MiniTableField field = {6, 12, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4142
+ const upb_MiniTableField field = {6, 8, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4115
4143
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4116
4144
  &default_val, &ret);
4117
4145
  return ret;
4118
4146
  }
4119
4147
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter_clear_disabled(envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter* msg) {
4120
- const upb_MiniTableField field = {7, 13, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4148
+ const upb_MiniTableField field = {7, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4121
4149
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4122
4150
  }
4123
4151
  UPB_INLINE bool envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter_disabled(const envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter* msg) {
4124
4152
  bool default_val = false;
4125
4153
  bool ret;
4126
- const upb_MiniTableField field = {7, 13, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4154
+ const upb_MiniTableField field = {7, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4127
4155
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4128
4156
  &default_val, &ret);
4129
4157
  return ret;
@@ -4134,7 +4162,7 @@ UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_Http
4134
4162
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4135
4163
  }
4136
4164
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter_set_typed_config(envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter *msg, struct google_protobuf_Any* value) {
4137
- const upb_MiniTableField field = {4, UPB_SIZE(16, 32), -9, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4165
+ const upb_MiniTableField field = {4, UPB_SIZE(16, 32), -13, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4138
4166
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&google__protobuf__Any_msg_init);
4139
4167
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4140
4168
  }
@@ -4147,7 +4175,7 @@ UPB_INLINE struct google_protobuf_Any* envoy_extensions_filters_network_http_con
4147
4175
  return sub;
4148
4176
  }
4149
4177
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter_set_config_discovery(envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter *msg, struct envoy_config_core_v3_ExtensionConfigSource* value) {
4150
- const upb_MiniTableField field = {5, UPB_SIZE(16, 32), -9, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4178
+ const upb_MiniTableField field = {5, UPB_SIZE(16, 32), -13, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4151
4179
  UPB_PRIVATE(_upb_MiniTable_StrongReference)(&envoy__config__core__v3__ExtensionConfigSource_msg_init);
4152
4180
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4153
4181
  }
@@ -4160,11 +4188,11 @@ UPB_INLINE struct envoy_config_core_v3_ExtensionConfigSource* envoy_extensions_f
4160
4188
  return sub;
4161
4189
  }
4162
4190
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter_set_is_optional(envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter *msg, bool value) {
4163
- const upb_MiniTableField field = {6, 12, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4191
+ const upb_MiniTableField field = {6, 8, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4164
4192
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4165
4193
  }
4166
4194
  UPB_INLINE void envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter_set_disabled(envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter *msg, bool value) {
4167
- const upb_MiniTableField field = {7, 13, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4195
+ const upb_MiniTableField field = {7, 9, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4168
4196
  upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4169
4197
  }
4170
4198