grpc 1.63.0 → 1.66.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1652) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +116 -104
  3. data/include/grpc/credentials.h +1222 -0
  4. data/include/grpc/event_engine/event_engine.h +27 -6
  5. data/include/grpc/event_engine/extensible.h +3 -0
  6. data/include/grpc/event_engine/memory_request.h +18 -0
  7. data/include/grpc/grpc.h +7 -0
  8. data/include/grpc/grpc_crl_provider.h +1 -0
  9. data/include/grpc/grpc_security.h +0 -1171
  10. data/include/grpc/impl/channel_arg_names.h +7 -6
  11. data/include/grpc/module.modulemap +2 -0
  12. data/include/grpc/passive_listener.h +62 -0
  13. data/include/grpc/support/log.h +7 -35
  14. data/include/grpc/support/metrics.h +14 -3
  15. data/include/grpc/support/port_platform.h +25 -0
  16. data/src/core/{lib/channel → channelz}/channel_trace.cc +57 -63
  17. data/src/core/{lib/channel → channelz}/channel_trace.h +22 -20
  18. data/src/core/{lib/channel → channelz}/channelz.cc +71 -9
  19. data/src/core/{lib/channel → channelz}/channelz.h +52 -13
  20. data/src/core/{lib/channel → channelz}/channelz_registry.cc +11 -9
  21. data/src/core/{lib/channel → channelz}/channelz_registry.h +6 -6
  22. data/src/core/client_channel/backup_poller.cc +4 -5
  23. data/src/core/client_channel/client_channel.cc +1419 -0
  24. data/src/core/client_channel/client_channel.h +243 -0
  25. data/src/core/client_channel/client_channel_filter.cc +349 -872
  26. data/src/core/client_channel/client_channel_filter.h +13 -68
  27. data/src/core/client_channel/client_channel_internal.h +25 -7
  28. data/src/core/client_channel/client_channel_plugin.cc +1 -14
  29. data/src/core/client_channel/client_channel_service_config.h +4 -4
  30. data/src/core/client_channel/config_selector.h +22 -18
  31. data/src/core/client_channel/connector.h +1 -1
  32. data/src/core/client_channel/direct_channel.cc +83 -0
  33. data/src/core/client_channel/direct_channel.h +101 -0
  34. data/src/core/client_channel/dynamic_filters.cc +9 -6
  35. data/src/core/client_channel/dynamic_filters.h +1 -3
  36. data/src/core/client_channel/lb_metadata.cc +120 -0
  37. data/src/core/client_channel/lb_metadata.h +56 -0
  38. data/src/core/client_channel/load_balanced_call_destination.cc +274 -0
  39. data/src/core/client_channel/load_balanced_call_destination.h +49 -0
  40. data/src/core/client_channel/local_subchannel_pool.cc +5 -3
  41. data/src/core/client_channel/retry_filter.cc +4 -11
  42. data/src/core/client_channel/retry_filter.h +5 -9
  43. data/src/core/client_channel/retry_filter_legacy_call_data.cc +234 -261
  44. data/src/core/client_channel/retry_filter_legacy_call_data.h +0 -2
  45. data/src/core/client_channel/retry_service_config.cc +4 -5
  46. data/src/core/client_channel/retry_service_config.h +3 -3
  47. data/src/core/client_channel/subchannel.cc +284 -156
  48. data/src/core/client_channel/subchannel.h +31 -25
  49. data/src/core/client_channel/subchannel_pool_interface.cc +0 -2
  50. data/src/core/client_channel/subchannel_pool_interface.h +2 -4
  51. data/src/core/client_channel/subchannel_stream_client.cc +41 -52
  52. data/src/core/client_channel/subchannel_stream_client.h +2 -4
  53. data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +17 -20
  54. data/src/core/ext/filters/backend_metrics/backend_metric_filter.h +5 -2
  55. data/src/core/ext/filters/backend_metrics/backend_metric_provider.h +7 -0
  56. data/src/core/ext/filters/census/grpc_context.cc +6 -8
  57. data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +28 -28
  58. data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h +16 -11
  59. data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +15 -21
  60. data/src/core/ext/filters/fault_injection/fault_injection_filter.h +7 -4
  61. data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.h +3 -3
  62. data/src/core/ext/filters/http/client/http_client_filter.cc +7 -5
  63. data/src/core/ext/filters/http/client/http_client_filter.h +8 -5
  64. data/src/core/ext/filters/http/client_authority_filter.cc +6 -5
  65. data/src/core/ext/filters/http/client_authority_filter.h +8 -4
  66. data/src/core/ext/filters/http/message_compress/compression_filter.cc +35 -42
  67. data/src/core/ext/filters/http/message_compress/compression_filter.h +15 -8
  68. data/src/core/ext/filters/http/server/http_server_filter.cc +8 -8
  69. data/src/core/ext/filters/http/server/http_server_filter.h +8 -5
  70. data/src/core/ext/filters/message_size/message_size_filter.cc +27 -41
  71. data/src/core/ext/filters/message_size/message_size_filter.h +18 -12
  72. data/src/core/ext/filters/rbac/rbac_filter.cc +14 -12
  73. data/src/core/ext/filters/rbac/rbac_filter.h +8 -5
  74. data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +2 -2
  75. data/src/core/ext/filters/rbac/rbac_service_config_parser.h +1 -1
  76. data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +15 -20
  77. data/src/core/ext/filters/stateful_session/stateful_session_filter.h +6 -2
  78. data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h +3 -3
  79. data/src/core/ext/transport/chttp2/alpn/alpn.cc +5 -4
  80. data/src/core/ext/transport/chttp2/alpn/alpn.h +2 -2
  81. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +68 -96
  82. data/src/core/ext/transport/chttp2/client/chttp2_connector.h +3 -9
  83. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +307 -254
  84. data/src/core/ext/transport/chttp2/server/chttp2_server.h +36 -3
  85. data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +23 -35
  86. data/src/core/ext/transport/chttp2/transport/bin_decoder.h +1 -2
  87. data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +8 -7
  88. data/src/core/ext/transport/chttp2/transport/bin_encoder.h +1 -2
  89. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +367 -321
  90. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +12 -13
  91. data/src/core/ext/transport/chttp2/transport/context_list_entry.h +3 -3
  92. data/src/core/ext/transport/chttp2/transport/decode_huff.cc +2 -2
  93. data/src/core/ext/transport/chttp2/transport/decode_huff.h +2 -2
  94. data/src/core/ext/transport/chttp2/transport/flow_control.cc +9 -11
  95. data/src/core/ext/transport/chttp2/transport/flow_control.h +4 -6
  96. data/src/core/ext/transport/chttp2/transport/frame.cc +4 -4
  97. data/src/core/ext/transport/chttp2/transport/frame.h +2 -2
  98. data/src/core/ext/transport/chttp2/transport/frame_data.cc +6 -10
  99. data/src/core/ext/transport/chttp2/transport/frame_data.h +3 -3
  100. data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +5 -5
  101. data/src/core/ext/transport/chttp2/transport/frame_goaway.h +1 -2
  102. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +14 -17
  103. data/src/core/ext/transport/chttp2/transport/frame_ping.h +1 -2
  104. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +16 -15
  105. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +6 -5
  106. data/src/core/ext/transport/chttp2/transport/frame_settings.cc +18 -16
  107. data/src/core/ext/transport/chttp2/transport/frame_settings.h +1 -2
  108. data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +11 -7
  109. data/src/core/ext/transport/chttp2/transport/frame_window_update.h +4 -3
  110. data/src/core/ext/transport/chttp2/transport/hpack_constants.h +2 -2
  111. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +13 -12
  112. data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +14 -9
  113. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +10 -9
  114. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +2 -2
  115. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.cc +4 -3
  116. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +3 -3
  117. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +75 -68
  118. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +4 -3
  119. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +8 -13
  120. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +2 -2
  121. data/src/core/ext/transport/chttp2/transport/http2_settings.cc +3 -3
  122. data/src/core/ext/transport/chttp2/transport/http2_settings.h +3 -3
  123. data/src/core/ext/transport/chttp2/transport/huffsyms.cc +2 -2
  124. data/src/core/ext/transport/chttp2/transport/internal.h +79 -26
  125. data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc +4 -3
  126. data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h +2 -2
  127. data/src/core/ext/transport/chttp2/transport/parsing.cc +87 -97
  128. data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +1 -2
  129. data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.h +2 -2
  130. data/src/core/ext/transport/chttp2/transport/ping_callbacks.cc +3 -5
  131. data/src/core/ext/transport/chttp2/transport/ping_callbacks.h +1 -4
  132. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +30 -15
  133. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +7 -6
  134. data/src/core/ext/transport/chttp2/transport/stream_lists.cc +17 -18
  135. data/src/core/ext/transport/chttp2/transport/varint.cc +2 -2
  136. data/src/core/ext/transport/chttp2/transport/varint.h +4 -3
  137. data/src/core/ext/transport/chttp2/transport/write_size_policy.cc +4 -3
  138. data/src/core/ext/transport/chttp2/transport/write_size_policy.h +2 -2
  139. data/src/core/ext/transport/chttp2/transport/writing.cc +164 -126
  140. data/src/core/ext/transport/inproc/inproc_transport.cc +152 -69
  141. data/src/core/ext/transport/inproc/inproc_transport.h +2 -5
  142. data/src/core/ext/transport/inproc/legacy_inproc_transport.cc +116 -116
  143. data/src/core/ext/transport/inproc/legacy_inproc_transport.h +1 -4
  144. data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h +11 -11
  145. data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.c +15 -0
  146. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h +23 -23
  147. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c +12 -0
  148. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb.h +11 -11
  149. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.c +15 -0
  150. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h +50 -50
  151. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c +57 -0
  152. data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb.h +1 -1
  153. data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.c +6 -0
  154. data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb.h +2 -2
  155. data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.c +6 -0
  156. data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb.h +6 -6
  157. data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.c +3 -0
  158. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h +3 -3
  159. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c +3 -0
  160. data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb.h +3 -3
  161. data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.c +3 -0
  162. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h +110 -78
  163. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c +23 -15
  164. data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb.h +2 -2
  165. data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.c +3 -0
  166. data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb.h +4 -4
  167. data/src/core/ext/upb-gen/envoy/annotations/resource.upb.h +11 -2
  168. data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.c +3 -0
  169. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h +30 -30
  170. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c +48 -0
  171. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +361 -250
  172. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +139 -48
  173. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.h +1 -0
  174. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h +10 -10
  175. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c +9 -0
  176. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +314 -137
  177. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +120 -22
  178. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.h +1 -0
  179. data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h +3 -3
  180. data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c +3 -0
  181. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h +115 -23
  182. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c +27 -3
  183. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +31 -31
  184. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +45 -0
  185. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +23 -23
  186. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +24 -0
  187. data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb.h +2 -2
  188. data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.c +3 -0
  189. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h +646 -68
  190. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +230 -16
  191. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.h +5 -0
  192. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h +21 -21
  193. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c +21 -0
  194. data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h +1 -1
  195. data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.c +3 -0
  196. data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb.h +2 -2
  197. data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.c +3 -0
  198. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb.h +1 -1
  199. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.c +6 -0
  200. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h +130 -58
  201. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c +63 -12
  202. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h +104 -58
  203. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c +42 -11
  204. data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h +1 -1
  205. data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.c +3 -0
  206. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h +3 -3
  207. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c +3 -0
  208. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +132 -72
  209. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +65 -11
  210. data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h +3 -3
  211. data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c +6 -0
  212. data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb.h +3 -3
  213. data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.c +6 -0
  214. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h +6 -6
  215. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c +6 -0
  216. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h +7 -7
  217. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c +6 -0
  218. data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb.h +2 -2
  219. data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.c +3 -0
  220. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h +7 -7
  221. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c +12 -0
  222. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h +58 -30
  223. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c +30 -7
  224. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h +237 -33
  225. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c +58 -12
  226. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.h +1 -0
  227. data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb.h +1 -1
  228. data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.c +3 -0
  229. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h +59 -43
  230. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c +37 -6
  231. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h +25 -25
  232. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c +21 -0
  233. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +66 -9
  234. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +10 -3
  235. data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb.h +3 -3
  236. data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.c +6 -0
  237. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h +5 -5
  238. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c +3 -0
  239. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h +18 -18
  240. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c +24 -0
  241. data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h +17 -17
  242. data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.c +30 -0
  243. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h +63 -34
  244. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +39 -4
  245. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +9 -9
  246. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +9 -0
  247. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +273 -229
  248. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +191 -14
  249. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h +6 -6
  250. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c +9 -0
  251. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +31 -31
  252. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +36 -0
  253. data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb.h +109 -12
  254. data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.c +38 -11
  255. data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.h +1 -0
  256. data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h +2 -2
  257. data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c +3 -0
  258. data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h +3 -3
  259. data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.c +6 -0
  260. data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb.h +3 -3
  261. data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.c +3 -0
  262. data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h +11 -11
  263. data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.c +3 -0
  264. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +4 -4
  265. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +3 -0
  266. data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb.h +1 -1
  267. data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.c +3 -0
  268. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h +6 -6
  269. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c +6 -0
  270. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h +6 -6
  271. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c +6 -0
  272. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h +7 -7
  273. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c +3 -0
  274. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h +114 -98
  275. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c +52 -3
  276. data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.c +3 -0
  277. data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h +7 -7
  278. data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.c +15 -0
  279. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h +18 -18
  280. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c +9 -0
  281. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +41 -9
  282. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c +15 -3
  283. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h +8 -8
  284. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c +6 -0
  285. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +4 -4
  286. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +6 -0
  287. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +146 -130
  288. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +74 -10
  289. data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h +1 -1
  290. data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.c +3 -0
  291. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +6 -6
  292. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.c +3 -0
  293. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +10 -10
  294. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c +15 -0
  295. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +1 -1
  296. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.c +3 -0
  297. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +7 -7
  298. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c +3 -0
  299. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +1 -1
  300. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.c +3 -0
  301. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +111 -27
  302. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +43 -7
  303. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.h +1 -0
  304. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +8 -8
  305. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c +9 -0
  306. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +35 -35
  307. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +21 -0
  308. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +2 -2
  309. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.c +6 -0
  310. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h +16 -16
  311. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +12 -0
  312. data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.c +3 -0
  313. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h +36 -36
  314. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c +42 -0
  315. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h +4 -4
  316. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c +6 -0
  317. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h +20 -20
  318. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c +15 -0
  319. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h +3 -3
  320. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c +3 -0
  321. data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h +2 -2
  322. data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.c +12 -0
  323. data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h +2 -2
  324. data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.c +3 -0
  325. data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb.h +5 -5
  326. data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.c +15 -0
  327. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h +4 -4
  328. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c +6 -0
  329. data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb.h +1 -1
  330. data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.c +3 -0
  331. data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h +2 -2
  332. data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.c +3 -0
  333. data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h +1 -1
  334. data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.c +3 -0
  335. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h +5 -5
  336. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c +9 -0
  337. data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.c +6 -0
  338. data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h +37 -6
  339. data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.c +20 -3
  340. data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h +2 -2
  341. data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.c +6 -0
  342. data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h +8 -8
  343. data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c +12 -0
  344. data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h +6 -6
  345. data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.c +21 -0
  346. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h +13 -13
  347. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c +15 -0
  348. data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h +3 -3
  349. data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.c +9 -0
  350. data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb.h +1 -1
  351. data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.c +3 -0
  352. data/src/core/ext/upb-gen/envoy/type/v3/percent.upb.h +3 -3
  353. data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.c +6 -0
  354. data/src/core/ext/upb-gen/envoy/type/v3/range.upb.h +6 -6
  355. data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.c +9 -0
  356. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h +5 -5
  357. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.c +6 -0
  358. data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb.h +3 -3
  359. data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.c +3 -0
  360. data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb.h +3 -3
  361. data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.c +3 -0
  362. data/src/core/ext/upb-gen/google/api/annotations.upb.h +10 -1
  363. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +32 -32
  364. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +39 -0
  365. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +43 -43
  366. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +42 -0
  367. data/src/core/ext/upb-gen/google/api/http.upb.h +12 -12
  368. data/src/core/ext/upb-gen/google/api/http.upb_minitable.c +9 -0
  369. data/src/core/ext/upb-gen/google/api/httpbody.upb.h +2 -2
  370. data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.c +3 -0
  371. data/src/core/ext/upb-gen/google/protobuf/any.upb.h +2 -2
  372. data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.c +3 -0
  373. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb.h +381 -177
  374. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c +148 -22
  375. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.h +1 -0
  376. data/src/core/ext/upb-gen/google/protobuf/duration.upb.h +2 -2
  377. data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.c +3 -0
  378. data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.c +3 -0
  379. data/src/core/ext/upb-gen/google/protobuf/struct.upb.h +6 -6
  380. data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.c +12 -0
  381. data/src/core/ext/upb-gen/google/protobuf/timestamp.upb.h +2 -2
  382. data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.c +3 -0
  383. data/src/core/ext/upb-gen/google/protobuf/wrappers.upb.h +9 -9
  384. data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.c +27 -0
  385. data/src/core/ext/upb-gen/google/rpc/status.upb.h +2 -2
  386. data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.c +3 -0
  387. data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h +10 -10
  388. data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.c +12 -0
  389. data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h +6 -6
  390. data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.c +6 -0
  391. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h +35 -35
  392. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c +36 -0
  393. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h +4 -4
  394. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.c +6 -0
  395. data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb.h +2 -2
  396. data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.c +6 -0
  397. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h +18 -18
  398. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c +27 -0
  399. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h +4 -4
  400. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c +9 -0
  401. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h +15 -15
  402. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c +27 -0
  403. data/src/core/ext/upb-gen/udpa/annotations/migrate.upb.h +54 -9
  404. data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.c +9 -0
  405. data/src/core/ext/upb-gen/udpa/annotations/security.upb.h +12 -3
  406. data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.c +3 -0
  407. data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb.h +1 -1
  408. data/src/core/ext/upb-gen/udpa/annotations/status.upb.h +12 -3
  409. data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.c +3 -0
  410. data/src/core/ext/upb-gen/udpa/annotations/versioning.upb.h +11 -2
  411. data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.c +3 -0
  412. data/src/core/ext/upb-gen/validate/validate.upb.h +175 -166
  413. data/src/core/ext/upb-gen/validate/validate.upb_minitable.c +69 -0
  414. data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb.h +54 -9
  415. data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.c +9 -0
  416. data/src/core/ext/upb-gen/xds/annotations/v3/security.upb.h +12 -3
  417. data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.c +3 -0
  418. data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb.h +1 -1
  419. data/src/core/ext/upb-gen/xds/annotations/v3/status.upb.h +35 -8
  420. data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.c +12 -0
  421. data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb.h +11 -2
  422. data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.c +3 -0
  423. data/src/core/ext/upb-gen/xds/core/v3/authority.upb.h +1 -1
  424. data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.c +3 -0
  425. data/src/core/ext/upb-gen/xds/core/v3/cidr.upb.h +2 -2
  426. data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.c +3 -0
  427. data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h +5 -5
  428. data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.c +6 -0
  429. data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.c +6 -0
  430. data/src/core/ext/upb-gen/xds/core/v3/extension.upb.h +2 -2
  431. data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.c +3 -0
  432. data/src/core/ext/upb-gen/xds/core/v3/resource.upb.h +3 -3
  433. data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c +3 -0
  434. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h +7 -7
  435. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c +6 -0
  436. data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb.h +4 -4
  437. data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.c +3 -0
  438. data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h +6 -6
  439. data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.c +12 -0
  440. data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb.h +1 -1
  441. data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.c +3 -0
  442. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +2 -2
  443. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +3 -0
  444. data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb.h +1 -1
  445. data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.c +6 -0
  446. data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.c +3 -0
  447. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h +2 -2
  448. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c +6 -0
  449. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h +18 -18
  450. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c +30 -0
  451. data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb.h +3 -3
  452. data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.c +18 -0
  453. data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h +2 -2
  454. data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.c +6 -0
  455. data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h +6 -6
  456. data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c +6 -0
  457. data/src/core/ext/upb-gen/xds/type/v3/cel.upb.h +4 -4
  458. data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c +6 -0
  459. data/src/core/ext/upb-gen/xds/type/v3/range.upb.h +6 -6
  460. data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.c +9 -0
  461. data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb.h +2 -2
  462. data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.c +3 -0
  463. data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.c +86 -81
  464. data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.c +61 -60
  465. data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +221 -210
  466. data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +5 -0
  467. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c +317 -297
  468. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h +5 -0
  469. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.c +114 -105
  470. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c +185 -140
  471. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h +25 -0
  472. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.c +10 -11
  473. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.c +173 -164
  474. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.c +197 -187
  475. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c +229 -222
  476. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +39 -36
  477. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.c +122 -93
  478. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.h +5 -0
  479. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.c +41 -39
  480. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.c +20 -12
  481. data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.c +69 -65
  482. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c +611 -604
  483. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.c +30 -20
  484. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.h +5 -0
  485. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.c +18 -17
  486. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.c +62 -59
  487. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.c +21 -20
  488. data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.c +145 -142
  489. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +36 -33
  490. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +290 -288
  491. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +82 -75
  492. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +5 -0
  493. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.c +39 -33
  494. data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c +281 -256
  495. data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h +5 -0
  496. data/src/core/{lib/transport → handshaker/endpoint_info}/endpoint_info_handshaker.cc +15 -13
  497. data/src/core/{lib/transport → handshaker/endpoint_info}/endpoint_info_handshaker.h +3 -3
  498. data/src/core/handshaker/handshaker.cc +210 -0
  499. data/src/core/{lib/transport → handshaker}/handshaker.h +55 -48
  500. data/src/core/{lib/transport → handshaker}/handshaker_factory.h +19 -3
  501. data/src/core/{lib/transport → handshaker}/handshaker_registry.cc +3 -3
  502. data/src/core/{lib/transport → handshaker}/handshaker_registry.h +6 -6
  503. data/src/core/{lib/transport → handshaker/http_connect}/http_connect_handshaker.cc +112 -156
  504. data/src/core/{lib/transport → handshaker/http_connect}/http_connect_handshaker.h +3 -3
  505. data/src/core/{client_channel → handshaker/http_connect}/http_proxy_mapper.cc +29 -34
  506. data/src/core/{client_channel → handshaker/http_connect}/http_proxy_mapper.h +6 -6
  507. data/src/core/{lib/handshaker → handshaker}/proxy_mapper.h +5 -5
  508. data/src/core/{lib/handshaker → handshaker}/proxy_mapper_registry.cc +3 -3
  509. data/src/core/{lib/handshaker → handshaker}/proxy_mapper_registry.h +6 -6
  510. data/src/core/{lib/security/transport → handshaker/security}/secure_endpoint.cc +87 -72
  511. data/src/core/{lib/security/transport → handshaker/security}/secure_endpoint.h +9 -10
  512. data/src/core/{lib/security/transport → handshaker/security}/security_handshaker.cc +125 -161
  513. data/src/core/{lib/security/transport → handshaker/security}/security_handshaker.h +5 -6
  514. data/src/core/{lib/transport → handshaker/tcp_connect}/tcp_connect_handshaker.cc +45 -57
  515. data/src/core/{lib/transport → handshaker/tcp_connect}/tcp_connect_handshaker.h +3 -3
  516. data/src/core/lib/address_utils/parse_address.cc +30 -40
  517. data/src/core/lib/address_utils/parse_address.h +2 -2
  518. data/src/core/lib/address_utils/sockaddr_utils.cc +20 -15
  519. data/src/core/lib/address_utils/sockaddr_utils.h +2 -2
  520. data/src/core/lib/avl/avl.h +3 -3
  521. data/src/core/lib/backoff/backoff.cc +2 -2
  522. data/src/core/lib/backoff/backoff.h +2 -2
  523. data/src/core/lib/backoff/random_early_detection.cc +2 -2
  524. data/src/core/lib/backoff/random_early_detection.h +2 -2
  525. data/src/core/lib/channel/call_finalization.h +2 -2
  526. data/src/core/lib/channel/channel_args.cc +17 -21
  527. data/src/core/lib/channel/channel_args.h +25 -10
  528. data/src/core/lib/channel/channel_args_preconditioning.cc +2 -2
  529. data/src/core/lib/channel/channel_args_preconditioning.h +1 -2
  530. data/src/core/lib/channel/channel_stack.cc +16 -78
  531. data/src/core/lib/channel/channel_stack.h +11 -46
  532. data/src/core/lib/channel/channel_stack_builder.cc +2 -2
  533. data/src/core/lib/channel/channel_stack_builder.h +2 -7
  534. data/src/core/lib/channel/channel_stack_builder_impl.cc +1 -150
  535. data/src/core/lib/channel/channel_stack_builder_impl.h +2 -4
  536. data/src/core/lib/channel/connected_channel.cc +41 -695
  537. data/src/core/lib/channel/promise_based_filter.cc +230 -266
  538. data/src/core/lib/channel/promise_based_filter.h +224 -548
  539. data/src/core/lib/channel/status_util.cc +3 -3
  540. data/src/core/lib/channel/status_util.h +1 -2
  541. data/src/core/lib/compression/compression.cc +5 -6
  542. data/src/core/lib/compression/compression_internal.cc +3 -3
  543. data/src/core/lib/compression/compression_internal.h +1 -2
  544. data/src/core/lib/compression/message_compress.cc +15 -14
  545. data/src/core/lib/compression/message_compress.h +1 -2
  546. data/src/core/lib/config/config_vars.cc +6 -18
  547. data/src/core/lib/config/config_vars.h +3 -13
  548. data/src/core/lib/config/config_vars_non_generated.cc +2 -2
  549. data/src/core/lib/config/core_configuration.cc +9 -8
  550. data/src/core/lib/config/core_configuration.h +8 -8
  551. data/src/core/lib/config/load_config.cc +4 -4
  552. data/src/core/lib/config/load_config.h +2 -2
  553. data/src/core/lib/debug/event_log.cc +3 -3
  554. data/src/core/lib/debug/event_log.h +3 -3
  555. data/src/core/lib/debug/trace.cc +45 -63
  556. data/src/core/lib/debug/trace.h +2 -97
  557. data/src/core/lib/debug/trace_flags.cc +257 -0
  558. data/src/core/lib/debug/trace_flags.h +134 -0
  559. data/src/core/lib/debug/trace_impl.h +119 -0
  560. data/src/core/lib/event_engine/ares_resolver.cc +70 -26
  561. data/src/core/lib/event_engine/ares_resolver.h +15 -10
  562. data/src/core/lib/event_engine/cf_engine/cf_engine.cc +14 -13
  563. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +32 -31
  564. data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +19 -24
  565. data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +2 -1
  566. data/src/core/lib/event_engine/channel_args_endpoint_config.cc +1 -2
  567. data/src/core/lib/event_engine/channel_args_endpoint_config.h +1 -2
  568. data/src/core/lib/event_engine/common_closures.h +1 -2
  569. data/src/core/lib/event_engine/default_event_engine.cc +7 -9
  570. data/src/core/lib/event_engine/default_event_engine.h +1 -2
  571. data/src/core/lib/event_engine/default_event_engine_factory.cc +1 -2
  572. data/src/core/lib/event_engine/default_event_engine_factory.h +1 -2
  573. data/src/core/lib/event_engine/event_engine.cc +35 -5
  574. data/src/core/lib/event_engine/event_engine_context.h +5 -4
  575. data/src/core/lib/event_engine/extensions/can_track_errors.h +2 -2
  576. data/src/core/lib/event_engine/extensions/chaotic_good_extension.h +2 -2
  577. data/src/core/lib/event_engine/extensions/supports_fd.h +8 -2
  578. data/src/core/lib/event_engine/extensions/tcp_trace.h +43 -0
  579. data/src/core/lib/event_engine/forkable.cc +11 -11
  580. data/src/core/lib/event_engine/forkable.h +1 -13
  581. data/src/core/lib/event_engine/grpc_polled_fd.h +1 -2
  582. data/src/core/lib/event_engine/handle_containers.h +1 -2
  583. data/src/core/lib/event_engine/memory_allocator_factory.h +1 -2
  584. data/src/core/lib/event_engine/poller.h +1 -2
  585. data/src/core/lib/event_engine/posix.h +1 -2
  586. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +19 -19
  587. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h +1 -2
  588. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +11 -11
  589. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +1 -2
  590. data/src/core/lib/event_engine/posix_engine/event_poller.h +1 -2
  591. data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc +2 -2
  592. data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.h +2 -2
  593. data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +1 -2
  594. data/src/core/lib/event_engine/posix_engine/internal_errqueue.cc +5 -5
  595. data/src/core/lib/event_engine/posix_engine/internal_errqueue.h +2 -2
  596. data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +3 -3
  597. data/src/core/lib/event_engine/posix_engine/lockfree_event.h +2 -2
  598. data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.cc +1 -1
  599. data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h +2 -2
  600. data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +75 -88
  601. data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +14 -13
  602. data/src/core/lib/event_engine/posix_engine/posix_engine.cc +41 -38
  603. data/src/core/lib/event_engine/posix_engine/posix_engine.h +3 -2
  604. data/src/core/lib/event_engine/posix_engine/posix_engine_closure.h +1 -2
  605. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +20 -21
  606. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +1 -2
  607. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +24 -28
  608. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h +1 -2
  609. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +39 -30
  610. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +5 -3
  611. data/src/core/lib/event_engine/posix_engine/timer.cc +2 -3
  612. data/src/core/lib/event_engine/posix_engine/timer.h +1 -2
  613. data/src/core/lib/event_engine/posix_engine/timer_heap.cc +2 -2
  614. data/src/core/lib/event_engine/posix_engine/timer_heap.h +2 -2
  615. data/src/core/lib/event_engine/posix_engine/timer_manager.cc +16 -19
  616. data/src/core/lib/event_engine/posix_engine/timer_manager.h +1 -2
  617. data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +3 -3
  618. data/src/core/lib/event_engine/posix_engine/traced_buffer_list.h +1 -2
  619. data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.cc +2 -2
  620. data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.h +2 -2
  621. data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc +2 -2
  622. data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.h +2 -2
  623. data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix.h +2 -2
  624. data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.cc +2 -2
  625. data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.h +2 -2
  626. data/src/core/lib/event_engine/query_extensions.h +3 -2
  627. data/src/core/lib/event_engine/ref_counted_dns_resolver_interface.h +1 -2
  628. data/src/core/lib/event_engine/resolved_address.cc +5 -4
  629. data/src/core/lib/event_engine/resolved_address_internal.h +1 -2
  630. data/src/core/lib/event_engine/shim.cc +3 -3
  631. data/src/core/lib/event_engine/slice.cc +4 -3
  632. data/src/core/lib/event_engine/slice_buffer.cc +1 -2
  633. data/src/core/lib/event_engine/tcp_socket_utils.cc +18 -16
  634. data/src/core/lib/event_engine/tcp_socket_utils.h +1 -2
  635. data/src/core/lib/event_engine/thread_local.cc +2 -2
  636. data/src/core/lib/event_engine/thread_local.h +1 -1
  637. data/src/core/lib/event_engine/thread_pool/thread_count.cc +4 -4
  638. data/src/core/lib/event_engine/thread_pool/thread_count.h +2 -3
  639. data/src/core/lib/event_engine/thread_pool/thread_pool.h +1 -2
  640. data/src/core/lib/event_engine/thread_pool/thread_pool_factory.cc +2 -2
  641. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +35 -38
  642. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +4 -8
  643. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +48 -21
  644. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.h +5 -5
  645. data/src/core/lib/event_engine/time_util.cc +1 -2
  646. data/src/core/lib/event_engine/time_util.h +1 -2
  647. data/src/core/lib/event_engine/utils.cc +1 -2
  648. data/src/core/lib/event_engine/utils.h +1 -2
  649. data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc +31 -30
  650. data/src/core/lib/event_engine/windows/iocp.cc +20 -17
  651. data/src/core/lib/event_engine/windows/iocp.h +1 -1
  652. data/src/core/lib/event_engine/windows/win_socket.cc +46 -34
  653. data/src/core/lib/event_engine/windows/win_socket.h +4 -5
  654. data/src/core/lib/event_engine/windows/windows_endpoint.cc +34 -33
  655. data/src/core/lib/event_engine/windows/windows_engine.cc +237 -127
  656. data/src/core/lib/event_engine/windows/windows_engine.h +136 -25
  657. data/src/core/lib/event_engine/windows/windows_listener.cc +27 -40
  658. data/src/core/lib/event_engine/work_queue/basic_work_queue.cc +2 -2
  659. data/src/core/lib/event_engine/work_queue/basic_work_queue.h +1 -2
  660. data/src/core/lib/event_engine/work_queue/work_queue.h +1 -2
  661. data/src/core/lib/experiments/config.cc +49 -21
  662. data/src/core/lib/experiments/config.h +57 -3
  663. data/src/core/lib/experiments/experiments.cc +72 -209
  664. data/src/core/lib/experiments/experiments.h +64 -97
  665. data/src/core/lib/gprpp/atomic_utils.h +2 -2
  666. data/src/core/lib/gprpp/bitset.h +4 -4
  667. data/src/core/lib/gprpp/chunked_vector.h +6 -5
  668. data/src/core/lib/gprpp/construct_destruct.h +4 -4
  669. data/src/core/lib/gprpp/crash.cc +3 -5
  670. data/src/core/lib/gprpp/crash.h +2 -2
  671. data/src/core/lib/gprpp/debug_location.h +9 -2
  672. data/src/core/lib/gprpp/directory_reader.h +2 -2
  673. data/src/core/lib/gprpp/down_cast.h +5 -5
  674. data/src/core/lib/gprpp/dual_ref_counted.h +54 -41
  675. data/src/core/lib/gprpp/dump_args.cc +54 -0
  676. data/src/core/lib/gprpp/dump_args.h +117 -0
  677. data/src/core/lib/gprpp/env.h +2 -2
  678. data/src/core/lib/gprpp/examine_stack.cc +2 -2
  679. data/src/core/lib/gprpp/examine_stack.h +2 -2
  680. data/src/core/lib/gprpp/fork.cc +1 -2
  681. data/src/core/lib/gprpp/fork.h +2 -2
  682. data/src/core/lib/gprpp/glob.cc +70 -0
  683. data/src/core/lib/gprpp/glob.h +29 -0
  684. data/src/core/lib/gprpp/host_port.cc +6 -4
  685. data/src/core/lib/gprpp/host_port.h +2 -2
  686. data/src/core/lib/gprpp/linux/env.cc +2 -2
  687. data/src/core/lib/gprpp/load_file.cc +1 -2
  688. data/src/core/lib/gprpp/load_file.h +2 -2
  689. data/src/core/lib/gprpp/manual_constructor.h +2 -2
  690. data/src/core/lib/gprpp/match.h +2 -2
  691. data/src/core/lib/gprpp/memory.h +1 -2
  692. data/src/core/lib/gprpp/mpscq.cc +2 -2
  693. data/src/core/lib/gprpp/mpscq.h +5 -4
  694. data/src/core/lib/gprpp/no_destruct.h +2 -2
  695. data/src/core/lib/gprpp/notification.h +2 -2
  696. data/src/core/lib/gprpp/orphanable.h +2 -2
  697. data/src/core/lib/gprpp/overload.h +2 -2
  698. data/src/core/lib/gprpp/per_cpu.cc +2 -3
  699. data/src/core/lib/gprpp/per_cpu.h +1 -2
  700. data/src/core/lib/gprpp/posix/directory_reader.cc +2 -2
  701. data/src/core/lib/gprpp/posix/stat.cc +8 -7
  702. data/src/core/lib/gprpp/posix/thd.cc +18 -19
  703. data/src/core/lib/gprpp/ref_counted.h +35 -26
  704. data/src/core/lib/gprpp/ref_counted_ptr.h +2 -2
  705. data/src/core/lib/gprpp/ref_counted_string.cc +1 -2
  706. data/src/core/lib/gprpp/ref_counted_string.h +2 -2
  707. data/src/core/lib/gprpp/single_set_ptr.h +9 -6
  708. data/src/core/lib/gprpp/sorted_pack.h +2 -2
  709. data/src/core/lib/gprpp/stat.h +2 -2
  710. data/src/core/lib/gprpp/status_helper.cc +15 -34
  711. data/src/core/lib/gprpp/status_helper.h +5 -33
  712. data/src/core/lib/gprpp/strerror.cc +2 -2
  713. data/src/core/lib/gprpp/strerror.h +2 -2
  714. data/src/core/lib/gprpp/sync.h +5 -5
  715. data/src/core/lib/gprpp/table.h +25 -17
  716. data/src/core/lib/gprpp/tchar.cc +2 -2
  717. data/src/core/lib/gprpp/thd.h +7 -7
  718. data/src/core/lib/gprpp/time.cc +9 -10
  719. data/src/core/lib/gprpp/time.h +16 -21
  720. data/src/core/lib/gprpp/time_averaged_stats.cc +2 -2
  721. data/src/core/lib/gprpp/time_util.cc +5 -4
  722. data/src/core/lib/gprpp/time_util.h +1 -2
  723. data/src/core/lib/gprpp/unique_type_name.h +31 -11
  724. data/src/core/lib/gprpp/uuid_v4.cc +2 -2
  725. data/src/core/lib/gprpp/uuid_v4.h +2 -2
  726. data/src/core/lib/gprpp/validation_errors.cc +12 -3
  727. data/src/core/lib/gprpp/validation_errors.h +13 -2
  728. data/src/core/lib/gprpp/windows/stat.cc +6 -5
  729. data/src/core/lib/gprpp/windows/thd.cc +7 -4
  730. data/src/core/lib/gprpp/work_serializer.cc +75 -79
  731. data/src/core/lib/gprpp/work_serializer.h +1 -2
  732. data/src/core/lib/iomgr/buffer_list.cc +5 -4
  733. data/src/core/lib/iomgr/buffer_list.h +1 -2
  734. data/src/core/lib/iomgr/call_combiner.cc +42 -66
  735. data/src/core/lib/iomgr/call_combiner.h +9 -10
  736. data/src/core/lib/iomgr/cfstream_handle.cc +14 -16
  737. data/src/core/lib/iomgr/closure.cc +2 -2
  738. data/src/core/lib/iomgr/closure.h +11 -12
  739. data/src/core/lib/iomgr/combiner.cc +37 -47
  740. data/src/core/lib/iomgr/combiner.h +1 -4
  741. data/src/core/lib/iomgr/endpoint.cc +1 -7
  742. data/src/core/lib/iomgr/endpoint.h +3 -4
  743. data/src/core/lib/iomgr/endpoint_cfstream.cc +47 -71
  744. data/src/core/lib/iomgr/endpoint_pair_posix.cc +6 -5
  745. data/src/core/lib/iomgr/endpoint_pair_windows.cc +15 -15
  746. data/src/core/lib/iomgr/error.cc +19 -27
  747. data/src/core/lib/iomgr/error.h +4 -4
  748. data/src/core/lib/iomgr/ev_apple.cc +3 -5
  749. data/src/core/lib/iomgr/ev_epoll1_linux.cc +87 -92
  750. data/src/core/lib/iomgr/ev_poll_posix.cc +61 -52
  751. data/src/core/lib/iomgr/ev_posix.cc +12 -13
  752. data/src/core/lib/iomgr/ev_posix.h +13 -10
  753. data/src/core/lib/iomgr/event_engine_shims/closure.cc +9 -10
  754. data/src/core/lib/iomgr/event_engine_shims/closure.h +1 -2
  755. data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +26 -42
  756. data/src/core/lib/iomgr/event_engine_shims/endpoint.h +1 -2
  757. data/src/core/lib/iomgr/event_engine_shims/tcp_client.cc +8 -12
  758. data/src/core/lib/iomgr/event_engine_shims/tcp_client.h +1 -2
  759. data/src/core/lib/iomgr/exec_ctx.cc +13 -13
  760. data/src/core/lib/iomgr/exec_ctx.h +7 -5
  761. data/src/core/lib/iomgr/executor.cc +20 -27
  762. data/src/core/lib/iomgr/executor.h +1 -1
  763. data/src/core/lib/iomgr/fork_posix.cc +8 -10
  764. data/src/core/lib/iomgr/fork_windows.cc +3 -1
  765. data/src/core/lib/iomgr/grpc_if_nametoindex.h +2 -2
  766. data/src/core/lib/iomgr/grpc_if_nametoindex_posix.cc +2 -3
  767. data/src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc +3 -5
  768. data/src/core/lib/iomgr/internal_errqueue.cc +5 -4
  769. data/src/core/lib/iomgr/iocp_windows.cc +13 -9
  770. data/src/core/lib/iomgr/iocp_windows.h +0 -1
  771. data/src/core/lib/iomgr/iomgr.cc +14 -19
  772. data/src/core/lib/iomgr/iomgr.h +2 -2
  773. data/src/core/lib/iomgr/iomgr_internal.cc +2 -2
  774. data/src/core/lib/iomgr/iomgr_internal.h +2 -2
  775. data/src/core/lib/iomgr/iomgr_windows.cc +4 -2
  776. data/src/core/lib/iomgr/lockfree_event.cc +13 -17
  777. data/src/core/lib/iomgr/lockfree_event.h +1 -2
  778. data/src/core/lib/iomgr/polling_entity.cc +5 -5
  779. data/src/core/lib/iomgr/pollset.cc +2 -2
  780. data/src/core/lib/iomgr/pollset.h +0 -3
  781. data/src/core/lib/iomgr/pollset_set.cc +2 -2
  782. data/src/core/lib/iomgr/pollset_set_windows.cc +2 -2
  783. data/src/core/lib/iomgr/pollset_windows.cc +0 -2
  784. data/src/core/lib/iomgr/pollset_windows.h +0 -1
  785. data/src/core/lib/iomgr/python_util.h +1 -2
  786. data/src/core/lib/iomgr/resolve_address.cc +1 -2
  787. data/src/core/lib/iomgr/resolve_address.h +1 -2
  788. data/src/core/lib/iomgr/resolve_address_impl.h +2 -2
  789. data/src/core/lib/iomgr/resolve_address_posix.cc +7 -14
  790. data/src/core/lib/iomgr/resolve_address_posix.h +2 -2
  791. data/src/core/lib/iomgr/resolve_address_windows.cc +1 -1
  792. data/src/core/lib/iomgr/resolve_address_windows.h +2 -2
  793. data/src/core/lib/iomgr/resolved_address.h +2 -2
  794. data/src/core/lib/iomgr/sockaddr_utils_posix.cc +3 -1
  795. data/src/core/lib/iomgr/socket_factory_posix.cc +1 -1
  796. data/src/core/lib/iomgr/socket_factory_posix.h +1 -2
  797. data/src/core/lib/iomgr/socket_mutator.cc +2 -3
  798. data/src/core/lib/iomgr/socket_mutator.h +1 -2
  799. data/src/core/lib/iomgr/socket_utils.h +2 -2
  800. data/src/core/lib/iomgr/socket_utils_common_posix.cc +41 -46
  801. data/src/core/lib/iomgr/socket_utils_posix.cc +2 -2
  802. data/src/core/lib/iomgr/socket_utils_posix.h +1 -2
  803. data/src/core/lib/iomgr/socket_windows.cc +8 -9
  804. data/src/core/lib/iomgr/tcp_client.cc +2 -2
  805. data/src/core/lib/iomgr/tcp_client.h +1 -2
  806. data/src/core/lib/iomgr/tcp_client_cfstream.cc +11 -12
  807. data/src/core/lib/iomgr/tcp_client_posix.cc +20 -26
  808. data/src/core/lib/iomgr/tcp_client_windows.cc +9 -9
  809. data/src/core/lib/iomgr/tcp_posix.cc +129 -159
  810. data/src/core/lib/iomgr/tcp_posix.h +0 -2
  811. data/src/core/lib/iomgr/tcp_server.cc +2 -2
  812. data/src/core/lib/iomgr/tcp_server.h +1 -2
  813. data/src/core/lib/iomgr/tcp_server_posix.cc +55 -67
  814. data/src/core/lib/iomgr/tcp_server_utils_posix.h +2 -2
  815. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +10 -12
  816. data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +9 -8
  817. data/src/core/lib/iomgr/tcp_server_windows.cc +25 -30
  818. data/src/core/lib/iomgr/tcp_windows.cc +41 -59
  819. data/src/core/lib/iomgr/timer.cc +2 -2
  820. data/src/core/lib/iomgr/timer.h +1 -2
  821. data/src/core/lib/iomgr/timer_generic.cc +72 -84
  822. data/src/core/lib/iomgr/timer_generic.h +0 -1
  823. data/src/core/lib/iomgr/timer_heap.cc +2 -3
  824. data/src/core/lib/iomgr/timer_manager.cc +25 -39
  825. data/src/core/lib/iomgr/timer_manager.h +2 -2
  826. data/src/core/lib/iomgr/unix_sockets_posix.cc +3 -2
  827. data/src/core/lib/iomgr/unix_sockets_posix.h +1 -2
  828. data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +3 -1
  829. data/src/core/lib/iomgr/vsock.cc +3 -3
  830. data/src/core/lib/iomgr/vsock.h +1 -2
  831. data/src/core/lib/iomgr/wakeup_fd_pipe.cc +3 -3
  832. data/src/core/lib/matchers/matchers.cc +2 -2
  833. data/src/core/lib/matchers/matchers.h +2 -2
  834. data/src/core/lib/promise/activity.cc +4 -3
  835. data/src/core/lib/promise/activity.h +47 -13
  836. data/src/core/lib/promise/all_ok.h +17 -10
  837. data/src/core/lib/promise/arena_promise.h +2 -2
  838. data/src/core/lib/promise/cancel_callback.h +34 -6
  839. data/src/core/lib/promise/context.h +18 -7
  840. data/src/core/lib/promise/detail/basic_seq.h +1 -2
  841. data/src/core/lib/promise/detail/join_state.h +555 -759
  842. data/src/core/lib/promise/detail/promise_factory.h +46 -29
  843. data/src/core/lib/promise/detail/promise_like.h +29 -13
  844. data/src/core/lib/promise/detail/seq_state.h +1388 -1794
  845. data/src/core/lib/promise/detail/status.h +38 -16
  846. data/src/core/lib/promise/exec_ctx_wakeup_scheduler.h +2 -2
  847. data/src/core/lib/promise/for_each.h +101 -35
  848. data/src/core/lib/promise/if.h +21 -17
  849. data/src/core/lib/promise/interceptor_list.h +21 -23
  850. data/src/core/lib/promise/latch.h +26 -31
  851. data/src/core/lib/promise/loop.h +15 -10
  852. data/src/core/lib/promise/map.h +27 -9
  853. data/src/core/lib/promise/observable.h +182 -0
  854. data/src/core/lib/promise/party.cc +94 -76
  855. data/src/core/lib/promise/party.h +83 -102
  856. data/src/core/lib/promise/pipe.h +33 -53
  857. data/src/core/lib/promise/poll.h +105 -38
  858. data/src/core/lib/promise/prioritized_race.h +2 -2
  859. data/src/core/lib/promise/promise.h +14 -7
  860. data/src/core/lib/promise/race.h +12 -7
  861. data/src/core/lib/promise/seq.h +53 -38
  862. data/src/core/lib/promise/sleep.cc +1 -2
  863. data/src/core/lib/promise/sleep.h +1 -2
  864. data/src/core/lib/promise/status_flag.h +153 -52
  865. data/src/core/lib/promise/try_join.h +38 -21
  866. data/src/core/lib/promise/try_seq.h +87 -49
  867. data/src/core/lib/resource_quota/api.cc +1 -2
  868. data/src/core/lib/resource_quota/api.h +1 -2
  869. data/src/core/lib/resource_quota/arena.cc +63 -85
  870. data/src/core/lib/resource_quota/arena.h +141 -213
  871. data/src/core/lib/resource_quota/connection_quota.cc +8 -9
  872. data/src/core/lib/resource_quota/connection_quota.h +2 -2
  873. data/src/core/lib/resource_quota/memory_quota.cc +34 -36
  874. data/src/core/lib/resource_quota/memory_quota.h +9 -9
  875. data/src/core/lib/resource_quota/periodic_update.cc +6 -5
  876. data/src/core/lib/resource_quota/periodic_update.h +2 -2
  877. data/src/core/lib/resource_quota/resource_quota.cc +2 -2
  878. data/src/core/lib/resource_quota/resource_quota.h +2 -3
  879. data/src/core/lib/resource_quota/thread_quota.cc +4 -3
  880. data/src/core/lib/resource_quota/thread_quota.h +2 -2
  881. data/src/core/lib/security/authorization/audit_logging.cc +6 -6
  882. data/src/core/lib/security/authorization/audit_logging.h +1 -2
  883. data/src/core/lib/security/authorization/authorization_engine.h +2 -2
  884. data/src/core/lib/security/authorization/authorization_policy_provider.h +2 -3
  885. data/src/core/lib/security/authorization/authorization_policy_provider_vtable.cc +2 -3
  886. data/src/core/lib/security/authorization/evaluate_args.cc +8 -11
  887. data/src/core/lib/security/authorization/evaluate_args.h +1 -2
  888. data/src/core/lib/security/authorization/grpc_authorization_engine.cc +4 -3
  889. data/src/core/lib/security/authorization/grpc_authorization_engine.h +1 -2
  890. data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +22 -28
  891. data/src/core/lib/security/authorization/grpc_server_authz_filter.h +10 -8
  892. data/src/core/lib/security/authorization/matchers.cc +4 -5
  893. data/src/core/lib/security/authorization/matchers.h +2 -2
  894. data/src/core/lib/security/authorization/rbac_policy.cc +2 -2
  895. data/src/core/lib/security/authorization/rbac_policy.h +1 -2
  896. data/src/core/lib/security/authorization/stdout_logger.cc +4 -3
  897. data/src/core/lib/security/authorization/stdout_logger.h +1 -2
  898. data/src/core/lib/security/certificate_provider/certificate_provider_factory.h +4 -4
  899. data/src/core/lib/security/certificate_provider/certificate_provider_registry.cc +6 -6
  900. data/src/core/lib/security/certificate_provider/certificate_provider_registry.h +2 -2
  901. data/src/core/lib/security/context/security_context.cc +48 -44
  902. data/src/core/lib/security/context/security_context.h +33 -10
  903. data/src/core/lib/security/credentials/alts/alts_credentials.cc +1 -2
  904. data/src/core/lib/security/credentials/alts/alts_credentials.h +3 -3
  905. data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +4 -3
  906. data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +2 -3
  907. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc +5 -6
  908. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc +4 -5
  909. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h +2 -2
  910. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc +1 -2
  911. data/src/core/lib/security/credentials/call_creds_util.cc +3 -3
  912. data/src/core/lib/security/credentials/call_creds_util.h +2 -2
  913. data/src/core/lib/security/credentials/channel_creds_registry.h +4 -4
  914. data/src/core/lib/security/credentials/channel_creds_registry_init.cc +7 -5
  915. data/src/core/lib/security/credentials/composite/composite_credentials.cc +16 -17
  916. data/src/core/lib/security/credentials/composite/composite_credentials.h +3 -3
  917. data/src/core/lib/security/credentials/credentials.cc +21 -18
  918. data/src/core/lib/security/credentials/credentials.h +5 -4
  919. data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +9 -8
  920. data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +4 -4
  921. data/src/core/lib/security/credentials/external/aws_request_signer.cc +2 -2
  922. data/src/core/lib/security/credentials/external/aws_request_signer.h +2 -2
  923. data/src/core/lib/security/credentials/external/external_account_credentials.cc +16 -17
  924. data/src/core/lib/security/credentials/external/external_account_credentials.h +5 -5
  925. data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +3 -4
  926. data/src/core/lib/security/credentials/external/file_external_account_credentials.h +2 -2
  927. data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +8 -7
  928. data/src/core/lib/security/credentials/external/url_external_account_credentials.h +3 -3
  929. data/src/core/lib/security/credentials/fake/fake_credentials.cc +2 -2
  930. data/src/core/lib/security/credentials/fake/fake_credentials.h +3 -3
  931. data/src/core/lib/security/credentials/google_default/credentials_generic.cc +4 -5
  932. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +21 -21
  933. data/src/core/lib/security/credentials/google_default/google_default_credentials.h +3 -3
  934. data/src/core/lib/security/credentials/iam/iam_credentials.cc +8 -10
  935. data/src/core/lib/security/credentials/iam/iam_credentials.h +3 -3
  936. data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +2 -2
  937. data/src/core/lib/security/credentials/insecure/insecure_credentials.h +2 -2
  938. data/src/core/lib/security/credentials/jwt/json_token.cc +19 -19
  939. data/src/core/lib/security/credentials/jwt/json_token.h +2 -3
  940. data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +18 -22
  941. data/src/core/lib/security/credentials/jwt/jwt_credentials.h +3 -3
  942. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +65 -69
  943. data/src/core/lib/security/credentials/jwt/jwt_verifier.h +2 -3
  944. data/src/core/lib/security/credentials/local/local_credentials.cc +1 -2
  945. data/src/core/lib/security/credentials/local/local_credentials.h +3 -3
  946. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +40 -42
  947. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +6 -6
  948. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +20 -28
  949. data/src/core/lib/security/credentials/plugin/plugin_credentials.h +3 -5
  950. data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +44 -54
  951. data/src/core/lib/security/credentials/ssl/ssl_credentials.h +6 -4
  952. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +26 -25
  953. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +2 -2
  954. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_match.cc +2 -2
  955. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +30 -39
  956. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +4 -4
  957. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +5 -6
  958. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +5 -4
  959. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +25 -26
  960. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +1 -0
  961. data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.cc +5 -7
  962. data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h +1 -2
  963. data/src/core/lib/security/credentials/tls/tls_credentials.cc +15 -18
  964. data/src/core/lib/security/credentials/tls/tls_credentials.h +2 -2
  965. data/src/core/lib/security/credentials/tls/tls_utils.cc +5 -6
  966. data/src/core/lib/security/credentials/tls/tls_utils.h +1 -2
  967. data/src/core/lib/security/credentials/xds/xds_credentials.cc +20 -16
  968. data/src/core/lib/security/credentials/xds/xds_credentials.h +3 -3
  969. data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +27 -30
  970. data/src/core/lib/security/security_connector/alts/alts_security_connector.h +2 -2
  971. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +20 -17
  972. data/src/core/lib/security/security_connector/fake/fake_security_connector.h +2 -2
  973. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +6 -5
  974. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +3 -3
  975. data/src/core/lib/security/security_connector/load_system_roots.h +1 -2
  976. data/src/core/lib/security/security_connector/load_system_roots_supported.cc +8 -8
  977. data/src/core/lib/security/security_connector/load_system_roots_supported.h +1 -2
  978. data/src/core/lib/security/security_connector/load_system_roots_windows.cc +1 -1
  979. data/src/core/lib/security/security_connector/local/local_security_connector.cc +19 -23
  980. data/src/core/lib/security/security_connector/local/local_security_connector.h +2 -2
  981. data/src/core/lib/security/security_connector/security_connector.cc +11 -13
  982. data/src/core/lib/security/security_connector/security_connector.h +4 -6
  983. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +23 -25
  984. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +2 -2
  985. data/src/core/lib/security/security_connector/ssl_utils.cc +32 -30
  986. data/src/core/lib/security/security_connector/ssl_utils.h +1 -2
  987. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +42 -53
  988. data/src/core/lib/security/security_connector/tls/tls_security_connector.h +3 -3
  989. data/src/core/lib/security/transport/auth_filters.h +18 -13
  990. data/src/core/lib/security/transport/client_auth_filter.cc +14 -20
  991. data/src/core/lib/security/transport/server_auth_filter.cc +18 -24
  992. data/src/core/lib/security/util/json_util.cc +1 -2
  993. data/src/core/lib/security/util/json_util.h +1 -1
  994. data/src/core/lib/slice/percent_encoding.cc +4 -3
  995. data/src/core/lib/slice/slice.cc +11 -10
  996. data/src/core/lib/slice/slice.h +5 -5
  997. data/src/core/lib/slice/slice_buffer.cc +15 -14
  998. data/src/core/lib/slice/slice_buffer.h +1 -2
  999. data/src/core/lib/slice/slice_internal.h +3 -3
  1000. data/src/core/lib/slice/slice_refcount.h +7 -12
  1001. data/src/core/lib/slice/slice_string_helpers.cc +3 -3
  1002. data/src/core/lib/slice/slice_string_helpers.h +1 -2
  1003. data/src/core/lib/surface/byte_buffer.cc +1 -2
  1004. data/src/core/lib/surface/byte_buffer_reader.cc +4 -3
  1005. data/src/core/lib/surface/call.cc +179 -3962
  1006. data/src/core/lib/surface/call.h +172 -94
  1007. data/src/core/lib/surface/call_details.cc +5 -5
  1008. data/src/core/lib/surface/call_log_batch.cc +6 -8
  1009. data/src/core/lib/surface/call_test_only.h +1 -2
  1010. data/src/core/lib/surface/call_utils.cc +274 -0
  1011. data/src/core/lib/surface/call_utils.h +449 -0
  1012. data/src/core/lib/surface/channel.cc +48 -44
  1013. data/src/core/lib/surface/channel.h +12 -10
  1014. data/src/core/lib/surface/channel_create.cc +31 -13
  1015. data/src/core/lib/surface/channel_create.h +5 -4
  1016. data/src/core/lib/surface/channel_init.cc +271 -266
  1017. data/src/core/lib/surface/channel_init.h +178 -116
  1018. data/src/core/lib/surface/channel_stack_type.cc +2 -2
  1019. data/src/core/lib/surface/client_call.cc +430 -0
  1020. data/src/core/lib/surface/client_call.h +180 -0
  1021. data/src/core/lib/surface/completion_queue.cc +88 -107
  1022. data/src/core/lib/surface/completion_queue.h +1 -10
  1023. data/src/core/lib/surface/completion_queue_factory.cc +9 -8
  1024. data/src/core/lib/surface/completion_queue_factory.h +1 -2
  1025. data/src/core/lib/surface/event_string.cc +2 -2
  1026. data/src/core/lib/surface/event_string.h +1 -2
  1027. data/src/core/lib/surface/filter_stack_call.cc +1158 -0
  1028. data/src/core/lib/surface/filter_stack_call.h +369 -0
  1029. data/src/core/lib/surface/init.cc +33 -15
  1030. data/src/core/lib/surface/init_internally.cc +2 -2
  1031. data/src/core/lib/surface/lame_client.cc +11 -15
  1032. data/src/core/lib/surface/lame_client.h +8 -11
  1033. data/src/core/lib/surface/legacy_channel.cc +60 -45
  1034. data/src/core/lib/surface/legacy_channel.h +11 -21
  1035. data/src/core/lib/surface/metadata_array.cc +5 -5
  1036. data/src/core/lib/surface/server_call.cc +224 -0
  1037. data/src/core/lib/surface/server_call.h +169 -0
  1038. data/src/core/lib/surface/validate_metadata.cc +1 -2
  1039. data/src/core/lib/surface/validate_metadata.h +3 -3
  1040. data/src/core/lib/surface/version.cc +3 -4
  1041. data/src/core/lib/transport/bdp_estimator.cc +14 -16
  1042. data/src/core/lib/transport/bdp_estimator.h +11 -13
  1043. data/src/core/lib/transport/{call_size_estimator.cc → call_arena_allocator.cc} +3 -3
  1044. data/src/core/lib/transport/{call_size_estimator.h → call_arena_allocator.h} +31 -6
  1045. data/src/core/lib/transport/call_destination.h +76 -0
  1046. data/src/core/lib/transport/call_filters.cc +100 -314
  1047. data/src/core/lib/transport/call_filters.h +459 -726
  1048. data/src/core/lib/transport/call_final_info.cc +2 -2
  1049. data/src/core/lib/transport/call_final_info.h +1 -2
  1050. data/src/core/lib/transport/call_spine.cc +104 -79
  1051. data/src/core/lib/transport/call_spine.h +215 -242
  1052. data/src/core/lib/transport/call_state.cc +39 -0
  1053. data/src/core/lib/transport/call_state.h +957 -0
  1054. data/src/core/lib/transport/connectivity_state.cc +37 -37
  1055. data/src/core/lib/transport/connectivity_state.h +1 -4
  1056. data/src/core/lib/transport/error_utils.cc +1 -2
  1057. data/src/core/lib/transport/error_utils.h +1 -2
  1058. data/src/core/lib/transport/interception_chain.cc +147 -0
  1059. data/src/core/lib/transport/interception_chain.h +244 -0
  1060. data/src/core/lib/transport/message.cc +1 -2
  1061. data/src/core/lib/transport/metadata.cc +29 -5
  1062. data/src/core/lib/transport/metadata.h +37 -2
  1063. data/src/core/lib/transport/metadata_batch.cc +2 -2
  1064. data/src/core/lib/transport/metadata_batch.h +48 -5
  1065. data/src/core/lib/transport/metadata_compression_traits.h +2 -2
  1066. data/src/core/lib/transport/metadata_info.cc +2 -2
  1067. data/src/core/lib/transport/metadata_info.h +1 -1
  1068. data/src/core/lib/transport/parsed_metadata.cc +2 -2
  1069. data/src/core/lib/transport/parsed_metadata.h +1 -2
  1070. data/src/core/lib/transport/simple_slice_based_metadata.h +2 -2
  1071. data/src/core/lib/transport/status_conversion.cc +2 -2
  1072. data/src/core/lib/transport/status_conversion.h +1 -2
  1073. data/src/core/lib/transport/timeout_encoding.cc +5 -5
  1074. data/src/core/lib/transport/timeout_encoding.h +2 -2
  1075. data/src/core/lib/transport/transport.cc +4 -8
  1076. data/src/core/lib/transport/transport.h +89 -79
  1077. data/src/core/lib/transport/transport_op_string.cc +1 -2
  1078. data/src/core/lib/uri/uri_parser.cc +3 -3
  1079. data/src/core/lib/uri/uri_parser.h +2 -2
  1080. data/src/core/load_balancing/address_filtering.cc +2 -2
  1081. data/src/core/load_balancing/address_filtering.h +2 -2
  1082. data/src/core/load_balancing/backend_metric_data.h +2 -2
  1083. data/src/core/load_balancing/backend_metric_parser.cc +2 -2
  1084. data/src/core/load_balancing/backend_metric_parser.h +2 -2
  1085. data/src/core/load_balancing/child_policy_handler.cc +38 -41
  1086. data/src/core/load_balancing/child_policy_handler.h +2 -2
  1087. data/src/core/load_balancing/delegating_helper.h +2 -3
  1088. data/src/core/load_balancing/endpoint_list.cc +11 -13
  1089. data/src/core/load_balancing/endpoint_list.h +16 -10
  1090. data/src/core/load_balancing/grpclb/client_load_reporting_filter.cc +30 -32
  1091. data/src/core/load_balancing/grpclb/client_load_reporting_filter.h +23 -8
  1092. data/src/core/load_balancing/grpclb/grpclb.cc +160 -176
  1093. data/src/core/load_balancing/grpclb/grpclb_balancer_addresses.cc +3 -3
  1094. data/src/core/load_balancing/grpclb/grpclb_balancer_addresses.h +1 -2
  1095. data/src/core/load_balancing/grpclb/grpclb_client_stats.cc +1 -2
  1096. data/src/core/load_balancing/grpclb/grpclb_client_stats.h +1 -2
  1097. data/src/core/load_balancing/grpclb/load_balancer_api.cc +4 -6
  1098. data/src/core/load_balancing/grpclb/load_balancer_api.h +2 -3
  1099. data/src/core/load_balancing/health_check_client.cc +47 -57
  1100. data/src/core/load_balancing/health_check_client.h +2 -2
  1101. data/src/core/load_balancing/health_check_client_internal.h +1 -2
  1102. data/src/core/load_balancing/lb_policy.cc +7 -10
  1103. data/src/core/load_balancing/lb_policy.h +62 -27
  1104. data/src/core/load_balancing/lb_policy_factory.h +3 -3
  1105. data/src/core/load_balancing/lb_policy_registry.cc +5 -6
  1106. data/src/core/load_balancing/lb_policy_registry.h +3 -3
  1107. data/src/core/load_balancing/oob_backend_metric.cc +10 -13
  1108. data/src/core/load_balancing/oob_backend_metric.h +2 -2
  1109. data/src/core/load_balancing/oob_backend_metric_internal.h +1 -2
  1110. data/src/core/load_balancing/outlier_detection/outlier_detection.cc +122 -142
  1111. data/src/core/load_balancing/outlier_detection/outlier_detection.h +5 -5
  1112. data/src/core/load_balancing/pick_first/pick_first.cc +1212 -251
  1113. data/src/core/load_balancing/priority/priority.cc +104 -112
  1114. data/src/core/load_balancing/ring_hash/ring_hash.cc +79 -70
  1115. data/src/core/load_balancing/ring_hash/ring_hash.h +5 -5
  1116. data/src/core/load_balancing/rls/rls.cc +331 -282
  1117. data/src/core/load_balancing/round_robin/round_robin.cc +82 -73
  1118. data/src/core/load_balancing/subchannel_interface.h +5 -2
  1119. data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.cc +4 -4
  1120. data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.h +2 -2
  1121. data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc +154 -132
  1122. data/src/core/load_balancing/weighted_target/weighted_target.cc +76 -87
  1123. data/src/core/load_balancing/weighted_target/weighted_target.h +1 -1
  1124. data/src/core/load_balancing/xds/cds.cc +47 -50
  1125. data/src/core/load_balancing/xds/xds_cluster_impl.cc +128 -103
  1126. data/src/core/load_balancing/xds/xds_cluster_manager.cc +48 -65
  1127. data/src/core/load_balancing/xds/xds_override_host.cc +114 -138
  1128. data/src/core/load_balancing/xds/xds_override_host.h +5 -5
  1129. data/src/core/load_balancing/xds/xds_wrr_locality.cc +31 -33
  1130. data/src/core/plugin_registry/grpc_plugin_registry.cc +11 -10
  1131. data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +1 -2
  1132. data/src/core/resolver/binder/binder_resolver.cc +7 -6
  1133. data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +17 -8
  1134. data/src/core/resolver/dns/c_ares/dns_resolver_ares.h +2 -2
  1135. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver.h +3 -3
  1136. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +4 -3
  1137. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +36 -35
  1138. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc +33 -50
  1139. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +7 -12
  1140. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc +1 -1
  1141. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +2 -2
  1142. data/src/core/resolver/dns/dns_resolver_plugin.cc +10 -10
  1143. data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +12 -18
  1144. data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.h +3 -3
  1145. data/src/core/resolver/dns/event_engine/service_config_helper.cc +7 -7
  1146. data/src/core/resolver/dns/event_engine/service_config_helper.h +2 -2
  1147. data/src/core/resolver/dns/native/dns_resolver.cc +17 -20
  1148. data/src/core/resolver/endpoint_addresses.cc +5 -5
  1149. data/src/core/resolver/endpoint_addresses.h +5 -2
  1150. data/src/core/resolver/fake/fake_resolver.cc +5 -5
  1151. data/src/core/resolver/fake/fake_resolver.h +2 -3
  1152. data/src/core/resolver/google_c2p/google_c2p_resolver.cc +22 -23
  1153. data/src/core/resolver/polling_resolver.cc +35 -40
  1154. data/src/core/resolver/polling_resolver.h +1 -2
  1155. data/src/core/resolver/resolver.cc +3 -7
  1156. data/src/core/resolver/resolver.h +2 -7
  1157. data/src/core/resolver/resolver_factory.h +3 -3
  1158. data/src/core/resolver/resolver_registry.cc +11 -13
  1159. data/src/core/resolver/resolver_registry.h +3 -3
  1160. data/src/core/resolver/sockaddr/sockaddr_resolver.cc +5 -6
  1161. data/src/core/resolver/xds/xds_dependency_manager.cc +94 -84
  1162. data/src/core/resolver/xds/xds_dependency_manager.h +11 -7
  1163. data/src/core/resolver/xds/xds_resolver.cc +103 -83
  1164. data/src/core/resolver/xds/xds_resolver_attributes.h +7 -3
  1165. data/src/core/{lib/surface → server}/server.cc +376 -498
  1166. data/src/core/{lib/surface → server}/server.h +43 -26
  1167. data/src/core/{lib/channel → server}/server_call_tracer_filter.cc +19 -22
  1168. data/src/core/{lib/channel → server}/server_call_tracer_filter.h +3 -3
  1169. data/src/core/{ext/filters/server_config_selector → server}/server_config_selector.h +6 -6
  1170. data/src/core/{ext/filters/server_config_selector → server}/server_config_selector_filter.cc +45 -42
  1171. data/src/core/{ext/filters/server_config_selector → server}/server_config_selector_filter.h +3 -3
  1172. data/src/core/{lib/surface → server}/server_interface.h +6 -4
  1173. data/src/core/{ext/xds → server}/xds_channel_stack_modifier.cc +5 -5
  1174. data/src/core/{ext/xds → server}/xds_channel_stack_modifier.h +5 -6
  1175. data/src/core/{ext/xds → server}/xds_server_config_fetcher.cc +64 -70
  1176. data/src/core/service_config/service_config.h +2 -3
  1177. data/src/core/service_config/service_config_call_data.h +17 -14
  1178. data/src/core/service_config/service_config_channel_arg_filter.cc +15 -13
  1179. data/src/core/service_config/service_config_impl.cc +7 -7
  1180. data/src/core/service_config/service_config_impl.h +4 -4
  1181. data/src/core/service_config/service_config_parser.cc +4 -8
  1182. data/src/core/service_config/service_config_parser.h +3 -3
  1183. data/src/core/{lib/channel → telemetry}/call_tracer.cc +59 -35
  1184. data/src/core/{lib/channel → telemetry}/call_tracer.h +48 -11
  1185. data/src/core/{lib/debug → telemetry}/histogram_view.cc +2 -2
  1186. data/src/core/{lib/debug → telemetry}/histogram_view.h +5 -5
  1187. data/src/core/telemetry/metrics.cc +178 -0
  1188. data/src/core/telemetry/metrics.h +567 -0
  1189. data/src/core/{lib/debug → telemetry}/stats.cc +3 -3
  1190. data/src/core/{lib/debug → telemetry}/stats.h +7 -7
  1191. data/src/core/{lib/debug → telemetry}/stats_data.cc +3 -3
  1192. data/src/core/{lib/debug → telemetry}/stats_data.h +6 -6
  1193. data/src/core/{lib/channel → telemetry}/tcp_tracer.h +5 -5
  1194. data/src/core/tsi/alts/crypt/aes_gcm.cc +1 -2
  1195. data/src/core/tsi/alts/crypt/gsec.cc +1 -2
  1196. data/src/core/tsi/alts/crypt/gsec.h +1 -2
  1197. data/src/core/tsi/alts/frame_protector/alts_counter.cc +1 -2
  1198. data/src/core/tsi/alts/frame_protector/alts_counter.h +1 -2
  1199. data/src/core/tsi/alts/frame_protector/alts_crypter.cc +1 -2
  1200. data/src/core/tsi/alts/frame_protector/alts_crypter.h +1 -2
  1201. data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +13 -15
  1202. data/src/core/tsi/alts/frame_protector/alts_frame_protector.h +2 -2
  1203. data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc +1 -2
  1204. data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h +1 -2
  1205. data/src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc +1 -2
  1206. data/src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc +1 -2
  1207. data/src/core/tsi/alts/frame_protector/frame_handler.cc +9 -9
  1208. data/src/core/tsi/alts/frame_protector/frame_handler.h +2 -2
  1209. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +69 -72
  1210. data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +1 -2
  1211. data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +5 -4
  1212. data/src/core/tsi/alts/handshaker/alts_shared_resource.h +1 -2
  1213. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +59 -61
  1214. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +1 -2
  1215. data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +7 -5
  1216. data/src/core/tsi/alts/handshaker/alts_tsi_utils.h +1 -2
  1217. data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +17 -24
  1218. data/src/core/tsi/alts/handshaker/transport_security_common_api.h +1 -2
  1219. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +16 -16
  1220. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h +2 -2
  1221. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc +12 -13
  1222. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h +2 -2
  1223. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h +1 -2
  1224. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +15 -11
  1225. data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +1 -2
  1226. data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h +2 -2
  1227. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +12 -13
  1228. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h +2 -2
  1229. data/src/core/tsi/fake_transport_security.cc +28 -29
  1230. data/src/core/tsi/local_transport_security.cc +7 -7
  1231. data/src/core/tsi/local_transport_security.h +1 -2
  1232. data/src/core/tsi/ssl/key_logging/ssl_key_logging.cc +11 -12
  1233. data/src/core/tsi/ssl/key_logging/ssl_key_logging.h +1 -2
  1234. data/src/core/tsi/ssl/session_cache/ssl_session.h +1 -2
  1235. data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +15 -14
  1236. data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +1 -2
  1237. data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +3 -4
  1238. data/src/core/tsi/ssl_transport_security.cc +128 -117
  1239. data/src/core/tsi/ssl_transport_security.h +1 -2
  1240. data/src/core/tsi/ssl_transport_security_utils.cc +87 -31
  1241. data/src/core/tsi/ssl_transport_security_utils.h +12 -2
  1242. data/src/core/tsi/ssl_types.h +2 -2
  1243. data/src/core/tsi/transport_security.cc +1 -6
  1244. data/src/core/tsi/transport_security.h +2 -4
  1245. data/src/core/tsi/transport_security_grpc.cc +2 -2
  1246. data/src/core/tsi/transport_security_grpc.h +1 -2
  1247. data/src/core/tsi/transport_security_interface.h +2 -6
  1248. data/src/core/{lib/gpr → util}/alloc.cc +3 -1
  1249. data/src/core/{lib/gpr → util}/alloc.h +3 -3
  1250. data/src/core/{lib/gpr → util}/android/log.cc +0 -31
  1251. data/src/core/{lib/gpr → util}/atm.cc +1 -1
  1252. data/src/core/{ext/gcp/metadata_query.cc → util/gcp_metadata_query.cc} +26 -26
  1253. data/src/core/{ext/gcp/metadata_query.h → util/gcp_metadata_query.h} +9 -9
  1254. data/src/core/{lib/http → util/http_client}/format_request.cc +2 -2
  1255. data/src/core/{lib/http → util/http_client}/format_request.h +4 -4
  1256. data/src/core/{lib/http → util/http_client}/httpcli.cc +31 -44
  1257. data/src/core/{lib/http → util/http_client}/httpcli.h +8 -9
  1258. data/src/core/{lib/http → util/http_client}/httpcli_security_connector.cc +10 -10
  1259. data/src/core/{lib/http → util/http_client}/httpcli_ssl_credentials.h +3 -3
  1260. data/src/core/{lib/http → util/http_client}/parser.cc +9 -10
  1261. data/src/core/{lib/http → util/http_client}/parser.h +3 -5
  1262. data/src/core/{lib → util}/json/json.h +3 -3
  1263. data/src/core/{lib → util}/json/json_args.h +3 -3
  1264. data/src/core/{lib → util}/json/json_channel_args.h +4 -4
  1265. data/src/core/{lib → util}/json/json_object_loader.cc +1 -1
  1266. data/src/core/{lib → util}/json/json_object_loader.h +5 -5
  1267. data/src/core/{lib → util}/json/json_reader.cc +4 -3
  1268. data/src/core/{lib → util}/json/json_reader.h +4 -4
  1269. data/src/core/{lib → util}/json/json_util.cc +3 -3
  1270. data/src/core/{lib → util}/json/json_util.h +4 -4
  1271. data/src/core/{lib → util}/json/json_writer.cc +1 -1
  1272. data/src/core/{lib → util}/json/json_writer.h +4 -4
  1273. data/src/core/util/latent_see.cc +113 -0
  1274. data/src/core/util/latent_see.h +214 -0
  1275. data/src/core/{lib/gpr → util}/linux/cpu.cc +8 -7
  1276. data/src/core/{lib/gpr → util}/linux/log.cc +0 -45
  1277. data/src/core/util/log.cc +149 -0
  1278. data/src/core/{lib/gpr → util}/msys/tmpfile.cc +2 -2
  1279. data/src/core/{lib/gpr → util}/posix/cpu.cc +4 -3
  1280. data/src/core/{lib/gpr → util}/posix/log.cc +0 -42
  1281. data/src/core/{lib/gpr → util}/posix/sync.cc +25 -23
  1282. data/src/core/{lib/gpr → util}/posix/time.cc +10 -7
  1283. data/src/core/{lib/gpr → util}/posix/tmpfile.cc +10 -8
  1284. data/src/core/{lib/gpr → util}/spinlock.h +3 -3
  1285. data/src/core/{lib/gpr → util}/string.cc +2 -2
  1286. data/src/core/{lib/gpr → util}/string.h +3 -3
  1287. data/src/core/{lib/gpr → util}/sync.cc +5 -3
  1288. data/src/core/{lib/gpr → util}/time.cc +10 -8
  1289. data/src/core/{lib/gpr → util}/time_precise.cc +5 -4
  1290. data/src/core/{lib/gpr → util}/time_precise.h +3 -3
  1291. data/src/core/{lib/gpr → util}/tmpfile.h +3 -3
  1292. data/src/core/{ext/xds → util}/upb_utils.h +3 -5
  1293. data/src/core/{lib/gpr → util}/useful.h +42 -47
  1294. data/src/core/{lib/gpr → util}/windows/log.cc +1 -44
  1295. data/src/core/{lib/gpr → util}/windows/string.cc +1 -1
  1296. data/src/core/{lib/gpr → util}/windows/string_util.cc +1 -1
  1297. data/src/core/{lib/gpr → util}/windows/sync.cc +3 -1
  1298. data/src/core/{lib/gpr → util}/windows/time.cc +5 -2
  1299. data/src/core/{lib/gpr → util}/windows/tmpfile.cc +1 -1
  1300. data/src/core/{ext/xds → xds/grpc}/certificate_provider_store.cc +5 -6
  1301. data/src/core/{ext/xds → xds/grpc}/certificate_provider_store.h +8 -9
  1302. data/src/core/{ext/xds → xds/grpc}/file_watcher_certificate_provider_factory.cc +5 -6
  1303. data/src/core/{ext/xds → xds/grpc}/file_watcher_certificate_provider_factory.h +7 -8
  1304. data/src/core/{ext/xds → xds/grpc}/xds_audit_logger_registry.cc +5 -4
  1305. data/src/core/{ext/xds → xds/grpc}/xds_audit_logger_registry.h +7 -7
  1306. data/src/core/{ext/xds → xds/grpc}/xds_bootstrap_grpc.cc +7 -133
  1307. data/src/core/{ext/xds → xds/grpc}/xds_bootstrap_grpc.h +15 -40
  1308. data/src/core/{ext/xds → xds/grpc}/xds_certificate_provider.cc +7 -6
  1309. data/src/core/{ext/xds → xds/grpc}/xds_certificate_provider.h +8 -7
  1310. data/src/core/{ext/xds → xds/grpc}/xds_client_grpc.cc +63 -47
  1311. data/src/core/{ext/xds → xds/grpc}/xds_client_grpc.h +10 -11
  1312. data/src/core/xds/grpc/xds_cluster.cc +80 -0
  1313. data/src/core/{ext/xds → xds/grpc}/xds_cluster.h +11 -47
  1314. data/src/core/{ext/xds/xds_cluster.cc → xds/grpc/xds_cluster_parser.cc} +22 -87
  1315. data/src/core/xds/grpc/xds_cluster_parser.h +57 -0
  1316. data/src/core/{ext/xds → xds/grpc}/xds_cluster_specifier_plugin.cc +6 -6
  1317. data/src/core/{ext/xds → xds/grpc}/xds_cluster_specifier_plugin.h +7 -7
  1318. data/src/core/xds/grpc/xds_common_types.cc +104 -0
  1319. data/src/core/{ext/xds → xds/grpc}/xds_common_types.h +11 -28
  1320. data/src/core/{ext/xds/xds_common_types.cc → xds/grpc/xds_common_types_parser.cc} +44 -86
  1321. data/src/core/xds/grpc/xds_common_types_parser.h +54 -0
  1322. data/src/core/xds/grpc/xds_endpoint.cc +97 -0
  1323. data/src/core/{ext/xds → xds/grpc}/xds_endpoint.h +7 -31
  1324. data/src/core/{ext/xds/xds_endpoint.cc → xds/grpc/xds_endpoint_parser.cc} +30 -108
  1325. data/src/core/xds/grpc/xds_endpoint_parser.h +48 -0
  1326. data/src/core/{ext/xds → xds/grpc}/xds_health_status.cc +1 -3
  1327. data/src/core/{ext/xds → xds/grpc}/xds_health_status.h +3 -5
  1328. data/src/core/{ext/xds → xds/grpc}/xds_http_fault_filter.cc +11 -7
  1329. data/src/core/{ext/xds → xds/grpc}/xds_http_fault_filter.h +9 -8
  1330. data/src/core/{ext/xds/xds_http_filters.h → xds/grpc/xds_http_filter.h} +10 -67
  1331. data/src/core/{ext/xds/xds_http_filters.cc → xds/grpc/xds_http_filter_registry.cc} +9 -9
  1332. data/src/core/xds/grpc/xds_http_filter_registry.h +98 -0
  1333. data/src/core/{ext/xds → xds/grpc}/xds_http_rbac_filter.cc +13 -10
  1334. data/src/core/{ext/xds → xds/grpc}/xds_http_rbac_filter.h +9 -8
  1335. data/src/core/{ext/xds → xds/grpc}/xds_http_stateful_session_filter.cc +13 -8
  1336. data/src/core/{ext/xds → xds/grpc}/xds_http_stateful_session_filter.h +9 -8
  1337. data/src/core/{ext/xds → xds/grpc}/xds_lb_policy_registry.cc +7 -9
  1338. data/src/core/{ext/xds → xds/grpc}/xds_lb_policy_registry.h +7 -7
  1339. data/src/core/xds/grpc/xds_listener.cc +176 -0
  1340. data/src/core/{ext/xds → xds/grpc}/xds_listener.h +9 -41
  1341. data/src/core/{ext/xds/xds_listener.cc → xds/grpc/xds_listener_parser.cc} +52 -197
  1342. data/src/core/xds/grpc/xds_listener_parser.h +60 -0
  1343. data/src/core/xds/grpc/xds_route_config.cc +282 -0
  1344. data/src/core/{ext/xds → xds/grpc}/xds_route_config.h +12 -44
  1345. data/src/core/{ext/xds/xds_route_config.cc → xds/grpc/xds_route_config_parser.cc} +55 -284
  1346. data/src/core/xds/grpc/xds_route_config_parser.h +80 -0
  1347. data/src/core/{ext/xds → xds/grpc}/xds_routing.cc +6 -6
  1348. data/src/core/{ext/xds → xds/grpc}/xds_routing.h +8 -8
  1349. data/src/core/xds/grpc/xds_server_grpc.cc +161 -0
  1350. data/src/core/xds/grpc/xds_server_grpc.h +63 -0
  1351. data/src/core/{ext/xds → xds/grpc}/xds_transport_grpc.cc +19 -20
  1352. data/src/core/{ext/xds → xds/grpc}/xds_transport_grpc.h +7 -8
  1353. data/src/core/{ext/xds → xds/xds_client}/xds_api.cc +18 -23
  1354. data/src/core/{ext/xds → xds/xds_client}/xds_api.h +7 -7
  1355. data/src/core/{ext/xds → xds/xds_client}/xds_bootstrap.cc +4 -4
  1356. data/src/core/{ext/xds → xds/xds_client}/xds_bootstrap.h +6 -6
  1357. data/src/core/{ext/xds → xds/xds_client}/xds_channel_args.h +3 -3
  1358. data/src/core/{ext/xds → xds/xds_client}/xds_client.cc +203 -238
  1359. data/src/core/{ext/xds → xds/xds_client}/xds_client.h +10 -14
  1360. data/src/core/{ext/xds → xds/xds_client}/xds_client_stats.cc +29 -31
  1361. data/src/core/{ext/xds → xds/xds_client}/xds_client_stats.h +8 -8
  1362. data/src/core/{ext/xds → xds/xds_client}/xds_metrics.h +7 -5
  1363. data/src/core/{ext/xds → xds/xds_client}/xds_resource_type.h +6 -6
  1364. data/src/core/{ext/xds → xds/xds_client}/xds_resource_type_impl.h +7 -7
  1365. data/src/core/{ext/xds → xds/xds_client}/xds_transport.h +6 -6
  1366. data/src/ruby/bin/math_pb.rb +1 -22
  1367. data/src/ruby/ext/grpc/rb_call.c +10 -3
  1368. data/src/ruby/ext/grpc/rb_call_credentials.c +2 -1
  1369. data/src/ruby/ext/grpc/rb_call_credentials.h +1 -0
  1370. data/src/ruby/ext/grpc/rb_channel.c +15 -14
  1371. data/src/ruby/ext/grpc/rb_channel_args.c +1 -1
  1372. data/src/ruby/ext/grpc/rb_channel_credentials.c +1 -0
  1373. data/src/ruby/ext/grpc/rb_completion_queue.c +15 -32
  1374. data/src/ruby/ext/grpc/rb_completion_queue.h +7 -1
  1375. data/src/ruby/ext/grpc/rb_compression_options.c +3 -3
  1376. data/src/ruby/ext/grpc/rb_event_thread.c +2 -2
  1377. data/src/ruby/ext/grpc/rb_grpc.c +5 -5
  1378. data/src/ruby/ext/grpc/rb_grpc.h +8 -0
  1379. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +130 -134
  1380. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +198 -203
  1381. data/src/ruby/ext/grpc/rb_server.c +40 -22
  1382. data/src/ruby/ext/grpc/rb_server_credentials.c +1 -0
  1383. data/src/ruby/ext/grpc/rb_server_credentials.h +1 -0
  1384. data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +1 -0
  1385. data/src/ruby/ext/grpc/rb_xds_server_credentials.c +1 -0
  1386. data/src/ruby/ext/grpc/rb_xds_server_credentials.h +1 -0
  1387. data/src/ruby/lib/grpc/logconfig.rb +13 -0
  1388. data/src/ruby/lib/grpc/version.rb +1 -1
  1389. data/src/ruby/pb/grpc/health/v1/health_pb.rb +1 -22
  1390. data/src/ruby/pb/grpc/testing/duplicate/echo_duplicate_services_pb.rb +5 -5
  1391. data/src/ruby/pb/grpc/testing/metrics_pb.rb +10 -19
  1392. data/src/ruby/pb/grpc/testing/metrics_services_pb.rb +5 -5
  1393. data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +1 -22
  1394. data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +1 -22
  1395. data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +1 -22
  1396. data/src/ruby/spec/logconfig_spec.rb +30 -0
  1397. data/third_party/abseil-cpp/absl/log/check.h +209 -0
  1398. data/third_party/abseil-cpp/absl/log/internal/check_impl.h +150 -0
  1399. data/third_party/abseil-cpp/absl/log/internal/check_op.cc +118 -0
  1400. data/third_party/abseil-cpp/absl/log/internal/check_op.h +420 -0
  1401. data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +4 -0
  1402. data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +13 -18
  1403. data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +25 -10
  1404. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +3 -18
  1405. data/third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.c +3 -2
  1406. data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +1 -1
  1407. data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +19 -15
  1408. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c +7 -0
  1409. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_des.c +48 -66
  1410. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_null.c +7 -3
  1411. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc2.c +20 -28
  1412. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc4.c +9 -4
  1413. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +2 -2
  1414. data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +66 -41
  1415. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.c +4 -1
  1416. data/third_party/boringssl-with-bazel/src/crypto/cpu_intel.c +0 -15
  1417. data/third_party/boringssl-with-bazel/src/crypto/crypto.c +7 -61
  1418. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +7 -7
  1419. data/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c +1 -0
  1420. data/third_party/boringssl-with-bazel/src/crypto/dilithium/dilithium.c +1539 -0
  1421. data/third_party/boringssl-with-bazel/src/crypto/dilithium/internal.h +58 -0
  1422. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +36 -20
  1423. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +3 -4
  1424. data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +2 -0
  1425. data/third_party/boringssl-with-bazel/src/crypto/err/err.c +81 -60
  1426. data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +41 -120
  1427. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +13 -13
  1428. data/third_party/boringssl-with-bazel/src/crypto/evp/internal.h +7 -0
  1429. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh.c +137 -0
  1430. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh_asn1.c +120 -0
  1431. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c +30 -0
  1432. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +3 -4
  1433. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +30 -0
  1434. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.c +1 -4
  1435. data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.c +30 -0
  1436. data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.c +1 -4
  1437. data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +6 -7
  1438. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c +21 -0
  1439. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +31 -7
  1440. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +5 -2
  1441. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c +1 -1
  1442. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +3 -3
  1443. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.c +1 -1
  1444. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c +46 -2
  1445. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c +8 -5
  1446. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +33 -23
  1447. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +1 -1
  1448. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c +2 -2
  1449. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c +14 -7
  1450. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c +2 -1
  1451. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/internal.h +0 -3
  1452. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +11 -7
  1453. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.c +5 -0
  1454. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +5 -1
  1455. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.c +3 -6
  1456. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.h +2 -1
  1457. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +11 -11
  1458. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +22 -8
  1459. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.c +6 -4
  1460. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c +3 -6
  1461. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +78 -29
  1462. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +4 -4
  1463. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +3 -3
  1464. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +10 -4
  1465. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c +7 -0
  1466. data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +2 -0
  1467. data/third_party/boringssl-with-bazel/src/crypto/internal.h +62 -27
  1468. data/third_party/boringssl-with-bazel/src/crypto/kyber/internal.h +1 -1
  1469. data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +2 -1
  1470. data/third_party/boringssl-with-bazel/src/crypto/mem.c +18 -9
  1471. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +18 -17
  1472. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +44 -41
  1473. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +13 -12
  1474. data/third_party/boringssl-with-bazel/src/crypto/spx/spx.c +7 -6
  1475. data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +26 -33
  1476. data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +1 -1
  1477. data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +4 -5
  1478. data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +5 -1
  1479. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_cpols.c +9 -4
  1480. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_crld.c +2 -2
  1481. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_info.c +1 -1
  1482. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_lib.c +2 -0
  1483. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_utl.c +49 -16
  1484. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +0 -10
  1485. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +21 -25
  1486. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +8 -25
  1487. data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c +2 -2
  1488. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +1 -6
  1489. data/third_party/boringssl-with-bazel/{err_data.c → src/gen/crypto/err_data.c} +487 -485
  1490. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +9 -1
  1491. data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +85 -42
  1492. data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +12 -4
  1493. data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +10 -11
  1494. data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +17 -1
  1495. data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +10 -3
  1496. data/third_party/boringssl-with-bazel/src/include/openssl/err.h +13 -0
  1497. data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +25 -14
  1498. data/third_party/boringssl-with-bazel/src/include/openssl/evp_errors.h +1 -0
  1499. data/third_party/boringssl-with-bazel/src/include/openssl/ex_data.h +15 -3
  1500. data/third_party/boringssl-with-bazel/src/include/openssl/experimental/dilithium.h +131 -0
  1501. data/third_party/boringssl-with-bazel/src/include/openssl/{kyber.h → experimental/kyber.h} +10 -0
  1502. data/third_party/boringssl-with-bazel/src/{crypto/spx/internal.h → include/openssl/experimental/spx.h} +24 -13
  1503. data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +2 -2
  1504. data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +63 -53
  1505. data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +19 -10
  1506. data/third_party/boringssl-with-bazel/src/include/openssl/span.h +26 -12
  1507. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +358 -102
  1508. data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +10 -3
  1509. data/third_party/boringssl-with-bazel/src/include/openssl/target.h +13 -10
  1510. data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +2 -2
  1511. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +2931 -2453
  1512. data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +6 -8
  1513. data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +4 -4
  1514. data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +1 -1
  1515. data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +19 -18
  1516. data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +3 -9
  1517. data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +64 -58
  1518. data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +1 -1
  1519. data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +17 -7
  1520. data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +69 -16
  1521. data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +145 -114
  1522. data/third_party/boringssl-with-bazel/src/ssl/internal.h +243 -189
  1523. data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +1 -1
  1524. data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +0 -1
  1525. data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +59 -385
  1526. data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +21 -19
  1527. data/third_party/boringssl-with-bazel/src/ssl/ssl_credential.cc +423 -0
  1528. data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +2 -2
  1529. data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +2 -1
  1530. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +108 -81
  1531. data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +116 -93
  1532. data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +6 -14
  1533. data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +1 -1
  1534. data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +48 -116
  1535. data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +21 -27
  1536. data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +36 -3
  1537. data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +53 -18
  1538. data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +1 -1
  1539. data/third_party/upb/upb/base/string_view.h +1 -1
  1540. data/third_party/upb/upb/json/decode.c +1 -0
  1541. data/third_party/upb/upb/mem/arena.c +67 -2
  1542. data/third_party/upb/upb/mem/arena.h +11 -9
  1543. data/third_party/upb/upb/mem/internal/arena.h +11 -8
  1544. data/third_party/upb/upb/message/accessors.c +6 -5
  1545. data/third_party/upb/upb/message/accessors.h +49 -38
  1546. data/third_party/upb/upb/message/array.c +26 -3
  1547. data/third_party/upb/upb/message/array.h +17 -9
  1548. data/third_party/upb/upb/message/compat.c +5 -5
  1549. data/third_party/upb/upb/message/compat.h +3 -3
  1550. data/third_party/upb/upb/message/copy.c +12 -13
  1551. data/third_party/upb/upb/message/internal/accessors.h +45 -35
  1552. data/third_party/upb/upb/message/internal/array.h +23 -15
  1553. data/third_party/upb/upb/message/internal/compare_unknown.c +289 -0
  1554. data/third_party/upb/upb/message/internal/compare_unknown.h +49 -0
  1555. data/third_party/upb/upb/message/internal/extension.c +11 -12
  1556. data/third_party/upb/upb/message/internal/extension.h +9 -12
  1557. data/third_party/upb/upb/message/internal/map.h +15 -0
  1558. data/third_party/upb/upb/message/internal/map_sorter.h +4 -5
  1559. data/third_party/upb/upb/message/internal/message.c +20 -3
  1560. data/third_party/upb/upb/message/internal/message.h +10 -0
  1561. data/third_party/upb/upb/message/internal/tagged_ptr.h +5 -5
  1562. data/third_party/upb/upb/message/internal/types.h +41 -1
  1563. data/third_party/upb/upb/message/map.c +25 -0
  1564. data/third_party/upb/upb/message/map.h +11 -7
  1565. data/third_party/upb/upb/message/message.c +83 -4
  1566. data/third_party/upb/upb/message/message.h +20 -1
  1567. data/third_party/upb/upb/message/tagged_ptr.h +4 -8
  1568. data/third_party/upb/upb/mini_descriptor/build_enum.c +3 -3
  1569. data/third_party/upb/upb/mini_descriptor/build_enum.h +6 -14
  1570. data/third_party/upb/upb/mini_descriptor/decode.c +12 -1
  1571. data/third_party/upb/upb/mini_descriptor/link.c +16 -18
  1572. data/third_party/upb/upb/mini_table/enum.h +2 -4
  1573. data/third_party/upb/upb/mini_table/extension.h +4 -12
  1574. data/third_party/upb/upb/mini_table/field.h +12 -38
  1575. data/third_party/upb/upb/mini_table/file.h +6 -19
  1576. data/third_party/upb/upb/mini_table/internal/enum.h +1 -1
  1577. data/third_party/upb/upb/mini_table/internal/extension.h +9 -9
  1578. data/third_party/upb/upb/mini_table/internal/field.h +23 -23
  1579. data/third_party/upb/upb/mini_table/internal/file.h +7 -7
  1580. data/third_party/upb/upb/mini_table/internal/message.h +51 -27
  1581. data/third_party/upb/upb/mini_table/internal/sub.h +4 -4
  1582. data/third_party/upb/upb/mini_table/message.h +13 -22
  1583. data/third_party/upb/upb/mini_table/sub.h +4 -12
  1584. data/third_party/upb/upb/port/def.inc +12 -6
  1585. data/third_party/upb/upb/port/undef.inc +1 -1
  1586. data/third_party/upb/upb/reflection/def.hpp +27 -0
  1587. data/third_party/upb/upb/reflection/def_pool.h +2 -2
  1588. data/third_party/upb/upb/reflection/enum_def.c +5 -1
  1589. data/third_party/upb/upb/reflection/enum_def.h +1 -0
  1590. data/third_party/upb/upb/reflection/enum_value_def.c +3 -8
  1591. data/third_party/upb/upb/reflection/field_def.c +61 -24
  1592. data/third_party/upb/upb/reflection/field_def.h +3 -0
  1593. data/third_party/upb/upb/reflection/file_def.c +30 -4
  1594. data/third_party/upb/upb/reflection/file_def.h +3 -0
  1595. data/third_party/upb/upb/reflection/internal/upb_edition_defaults.h +1 -1
  1596. data/third_party/upb/upb/reflection/message.c +19 -7
  1597. data/third_party/upb/upb/reflection/message_def.c +14 -9
  1598. data/third_party/upb/upb/reflection/method_def.h +8 -7
  1599. data/third_party/upb/upb/reflection/service_def.h +6 -5
  1600. data/third_party/upb/upb/text/encode.c +10 -3
  1601. data/third_party/upb/upb/wire/decode.c +91 -57
  1602. data/third_party/upb/upb/wire/decode.h +11 -1
  1603. data/third_party/upb/upb/wire/encode.c +48 -30
  1604. data/third_party/upb/upb/wire/encode.h +9 -1
  1605. data/third_party/upb/upb/wire/eps_copy_input_stream.h +3 -3
  1606. data/third_party/upb/upb/wire/internal/decode_fast.c +25 -29
  1607. data/third_party/upb/upb/wire/internal/reader.h +3 -3
  1608. data/third_party/upb/upb/wire/reader.c +1 -2
  1609. data/third_party/upb/upb/wire/reader.h +4 -8
  1610. metadata +233 -200
  1611. data/src/core/client_channel/client_channel_channelz.cc +0 -93
  1612. data/src/core/client_channel/client_channel_channelz.h +0 -85
  1613. data/src/core/client_channel/config_selector.cc +0 -60
  1614. data/src/core/ext/filters/deadline/deadline_filter.cc +0 -407
  1615. data/src/core/ext/filters/deadline/deadline_filter.h +0 -85
  1616. data/src/core/ext/transport/chttp2/transport/http_trace.cc +0 -19
  1617. data/src/core/ext/transport/chttp2/transport/http_trace.h +0 -24
  1618. data/src/core/ext/transport/inproc/inproc_plugin.cc +0 -23
  1619. data/src/core/lib/channel/channel_stack_trace.cc +0 -19
  1620. data/src/core/lib/channel/channel_stack_trace.h +0 -24
  1621. data/src/core/lib/channel/context.h +0 -77
  1622. data/src/core/lib/channel/metrics.cc +0 -396
  1623. data/src/core/lib/channel/metrics.h +0 -406
  1624. data/src/core/lib/event_engine/trace.cc +0 -25
  1625. data/src/core/lib/event_engine/trace.h +0 -49
  1626. data/src/core/lib/gpr/log.cc +0 -166
  1627. data/src/core/lib/gpr/log_internal.h +0 -55
  1628. data/src/core/lib/iomgr/ev_windows.cc +0 -30
  1629. data/src/core/lib/promise/trace.cc +0 -20
  1630. data/src/core/lib/promise/trace.h +0 -24
  1631. data/src/core/lib/resource_quota/trace.cc +0 -19
  1632. data/src/core/lib/resource_quota/trace.h +0 -24
  1633. data/src/core/lib/security/transport/tsi_error.cc +0 -31
  1634. data/src/core/lib/security/transport/tsi_error.h +0 -30
  1635. data/src/core/lib/slice/slice_refcount.cc +0 -20
  1636. data/src/core/lib/surface/api_trace.cc +0 -25
  1637. data/src/core/lib/surface/api_trace.h +0 -53
  1638. data/src/core/lib/surface/call_trace.h +0 -24
  1639. data/src/core/lib/surface/wait_for_cq_end_op.cc +0 -75
  1640. data/src/core/lib/surface/wait_for_cq_end_op.h +0 -72
  1641. data/src/core/lib/transport/batch_builder.cc +0 -170
  1642. data/src/core/lib/transport/batch_builder.h +0 -476
  1643. data/src/core/lib/transport/handshaker.cc +0 -229
  1644. data/src/core/resolver/xds/xds_resolver_trace.cc +0 -25
  1645. data/src/core/resolver/xds/xds_resolver_trace.h +0 -30
  1646. data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +0 -122
  1647. data/third_party/boringssl-with-bazel/src/include/openssl/pki/certificate.h +0 -83
  1648. data/third_party/boringssl-with-bazel/src/include/openssl/pki/signature_verify_cache.h +0 -41
  1649. /data/src/core/{lib/gpr → util}/iphone/cpu.cc +0 -0
  1650. /data/src/core/{lib/gpr → util}/posix/string.cc +0 -0
  1651. /data/src/core/{lib/gpr → util}/sync_abseil.cc +0 -0
  1652. /data/src/core/{lib/gpr → util}/windows/cpu.cc +0 -0
@@ -683,7 +683,7 @@ UPB_INLINE bool envoy_config_route_v3_VirtualHost_has_metadata(const envoy_confi
683
683
 
684
684
  UPB_INLINE void envoy_config_route_v3_VirtualHost_set_name(envoy_config_route_v3_VirtualHost *msg, upb_StringView value) {
685
685
  const upb_MiniTableField field = {1, UPB_SIZE(96, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
686
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
686
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
687
687
  }
688
688
  UPB_INLINE upb_StringView* envoy_config_route_v3_VirtualHost_mutable_domains(envoy_config_route_v3_VirtualHost* msg, size_t* size) {
689
689
  upb_MiniTableField field = {2, UPB_SIZE(12, 40), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
@@ -745,7 +745,7 @@ UPB_INLINE struct envoy_config_route_v3_Route* envoy_config_route_v3_VirtualHost
745
745
  }
746
746
  UPB_INLINE void envoy_config_route_v3_VirtualHost_set_require_tls(envoy_config_route_v3_VirtualHost *msg, int32_t value) {
747
747
  const upb_MiniTableField field = {4, UPB_SIZE(20, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
748
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
748
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
749
749
  }
750
750
  UPB_INLINE envoy_config_route_v3_VirtualCluster** envoy_config_route_v3_VirtualHost_mutable_virtual_clusters(envoy_config_route_v3_VirtualHost* msg, size_t* size) {
751
751
  upb_MiniTableField field = {5, UPB_SIZE(24, 56), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
@@ -839,7 +839,7 @@ UPB_INLINE struct envoy_config_core_v3_HeaderValueOption* envoy_config_route_v3_
839
839
  }
840
840
  UPB_INLINE void envoy_config_route_v3_VirtualHost_set_cors(envoy_config_route_v3_VirtualHost *msg, envoy_config_route_v3_CorsPolicy* value) {
841
841
  const upb_MiniTableField field = {8, UPB_SIZE(36, 80), 64, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
842
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
842
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
843
843
  }
844
844
  UPB_INLINE struct envoy_config_route_v3_CorsPolicy* envoy_config_route_v3_VirtualHost_mutable_cors(envoy_config_route_v3_VirtualHost* msg, upb_Arena* arena) {
845
845
  struct envoy_config_route_v3_CorsPolicy* sub = (struct envoy_config_route_v3_CorsPolicy*)envoy_config_route_v3_VirtualHost_cors(msg);
@@ -937,7 +937,7 @@ UPB_INLINE bool envoy_config_route_v3_VirtualHost_add_request_headers_to_remove(
937
937
  }
938
938
  UPB_INLINE void envoy_config_route_v3_VirtualHost_set_include_request_attempt_count(envoy_config_route_v3_VirtualHost *msg, bool value) {
939
939
  const upb_MiniTableField field = {14, UPB_SIZE(52, 16), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
940
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
940
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
941
941
  }
942
942
  UPB_INLINE void envoy_config_route_v3_VirtualHost_typed_per_filter_config_clear(envoy_config_route_v3_VirtualHost* msg) {
943
943
  const upb_MiniTableField field = {15, UPB_SIZE(56, 112), 0, 6, 11, (int)kUpb_FieldMode_Map | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
@@ -966,7 +966,7 @@ UPB_INLINE envoy_config_route_v3_VirtualHost_TypedPerFilterConfigEntry* envoy_co
966
966
  }
967
967
  UPB_INLINE void envoy_config_route_v3_VirtualHost_set_retry_policy(envoy_config_route_v3_VirtualHost *msg, envoy_config_route_v3_RetryPolicy* value) {
968
968
  const upb_MiniTableField field = {16, UPB_SIZE(60, 120), 65, 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
969
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
969
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
970
970
  }
971
971
  UPB_INLINE struct envoy_config_route_v3_RetryPolicy* envoy_config_route_v3_VirtualHost_mutable_retry_policy(envoy_config_route_v3_VirtualHost* msg, upb_Arena* arena) {
972
972
  struct envoy_config_route_v3_RetryPolicy* sub = (struct envoy_config_route_v3_RetryPolicy*)envoy_config_route_v3_VirtualHost_retry_policy(msg);
@@ -978,7 +978,7 @@ UPB_INLINE struct envoy_config_route_v3_RetryPolicy* envoy_config_route_v3_Virtu
978
978
  }
979
979
  UPB_INLINE void envoy_config_route_v3_VirtualHost_set_hedge_policy(envoy_config_route_v3_VirtualHost *msg, envoy_config_route_v3_HedgePolicy* value) {
980
980
  const upb_MiniTableField field = {17, UPB_SIZE(64, 128), 66, 8, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
981
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
981
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
982
982
  }
983
983
  UPB_INLINE struct envoy_config_route_v3_HedgePolicy* envoy_config_route_v3_VirtualHost_mutable_hedge_policy(envoy_config_route_v3_VirtualHost* msg, upb_Arena* arena) {
984
984
  struct envoy_config_route_v3_HedgePolicy* sub = (struct envoy_config_route_v3_HedgePolicy*)envoy_config_route_v3_VirtualHost_hedge_policy(msg);
@@ -990,7 +990,7 @@ UPB_INLINE struct envoy_config_route_v3_HedgePolicy* envoy_config_route_v3_Virtu
990
990
  }
991
991
  UPB_INLINE void envoy_config_route_v3_VirtualHost_set_per_request_buffer_limit_bytes(envoy_config_route_v3_VirtualHost *msg, struct google_protobuf_UInt32Value* value) {
992
992
  const upb_MiniTableField field = {18, UPB_SIZE(68, 136), 67, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
993
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
993
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
994
994
  }
995
995
  UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_VirtualHost_mutable_per_request_buffer_limit_bytes(envoy_config_route_v3_VirtualHost* msg, upb_Arena* arena) {
996
996
  struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_route_v3_VirtualHost_per_request_buffer_limit_bytes(msg);
@@ -1002,11 +1002,11 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_VirtualHost
1002
1002
  }
1003
1003
  UPB_INLINE void envoy_config_route_v3_VirtualHost_set_include_attempt_count_in_response(envoy_config_route_v3_VirtualHost *msg, bool value) {
1004
1004
  const upb_MiniTableField field = {19, UPB_SIZE(72, 17), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1005
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1005
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1006
1006
  }
1007
1007
  UPB_INLINE void envoy_config_route_v3_VirtualHost_set_retry_policy_typed_config(envoy_config_route_v3_VirtualHost *msg, struct google_protobuf_Any* value) {
1008
1008
  const upb_MiniTableField field = {20, UPB_SIZE(76, 144), 68, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1009
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1009
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1010
1010
  }
1011
1011
  UPB_INLINE struct google_protobuf_Any* envoy_config_route_v3_VirtualHost_mutable_retry_policy_typed_config(envoy_config_route_v3_VirtualHost* msg, upb_Arena* arena) {
1012
1012
  struct google_protobuf_Any* sub = (struct google_protobuf_Any*)envoy_config_route_v3_VirtualHost_retry_policy_typed_config(msg);
@@ -1018,7 +1018,7 @@ UPB_INLINE struct google_protobuf_Any* envoy_config_route_v3_VirtualHost_mutable
1018
1018
  }
1019
1019
  UPB_INLINE void envoy_config_route_v3_VirtualHost_set_matcher(envoy_config_route_v3_VirtualHost *msg, struct xds_type_matcher_v3_Matcher* value) {
1020
1020
  const upb_MiniTableField field = {21, UPB_SIZE(80, 152), 69, 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1021
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1021
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1022
1022
  }
1023
1023
  UPB_INLINE struct xds_type_matcher_v3_Matcher* envoy_config_route_v3_VirtualHost_mutable_matcher(envoy_config_route_v3_VirtualHost* msg, upb_Arena* arena) {
1024
1024
  struct xds_type_matcher_v3_Matcher* sub = (struct xds_type_matcher_v3_Matcher*)envoy_config_route_v3_VirtualHost_matcher(msg);
@@ -1060,11 +1060,11 @@ UPB_INLINE struct envoy_config_route_v3_RouteAction_RequestMirrorPolicy* envoy_c
1060
1060
  }
1061
1061
  UPB_INLINE void envoy_config_route_v3_VirtualHost_set_include_is_timeout_retry_header(envoy_config_route_v3_VirtualHost *msg, bool value) {
1062
1062
  const upb_MiniTableField field = {23, UPB_SIZE(88, 18), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
1063
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1063
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1064
1064
  }
1065
1065
  UPB_INLINE void envoy_config_route_v3_VirtualHost_set_metadata(envoy_config_route_v3_VirtualHost *msg, struct envoy_config_core_v3_Metadata* value) {
1066
1066
  const upb_MiniTableField field = {24, UPB_SIZE(92, 168), 70, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1067
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1067
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1068
1068
  }
1069
1069
  UPB_INLINE struct envoy_config_core_v3_Metadata* envoy_config_route_v3_VirtualHost_mutable_metadata(envoy_config_route_v3_VirtualHost* msg, upb_Arena* arena) {
1070
1070
  struct envoy_config_core_v3_Metadata* sub = (struct envoy_config_core_v3_Metadata*)envoy_config_route_v3_VirtualHost_metadata(msg);
@@ -1151,7 +1151,7 @@ UPB_INLINE bool envoy_config_route_v3_FilterAction_has_action(const envoy_config
1151
1151
 
1152
1152
  UPB_INLINE void envoy_config_route_v3_FilterAction_set_action(envoy_config_route_v3_FilterAction *msg, struct google_protobuf_Any* value) {
1153
1153
  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)};
1154
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1154
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1155
1155
  }
1156
1156
  UPB_INLINE struct google_protobuf_Any* envoy_config_route_v3_FilterAction_mutable_action(envoy_config_route_v3_FilterAction* msg, upb_Arena* arena) {
1157
1157
  struct google_protobuf_Any* sub = (struct google_protobuf_Any*)envoy_config_route_v3_FilterAction_action(msg);
@@ -1655,7 +1655,7 @@ UPB_INLINE upb_StringView envoy_config_route_v3_Route_stat_prefix(const envoy_co
1655
1655
 
1656
1656
  UPB_INLINE void envoy_config_route_v3_Route_set_match(envoy_config_route_v3_Route *msg, envoy_config_route_v3_RouteMatch* value) {
1657
1657
  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)};
1658
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1658
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1659
1659
  }
1660
1660
  UPB_INLINE struct envoy_config_route_v3_RouteMatch* envoy_config_route_v3_Route_mutable_match(envoy_config_route_v3_Route* msg, upb_Arena* arena) {
1661
1661
  struct envoy_config_route_v3_RouteMatch* sub = (struct envoy_config_route_v3_RouteMatch*)envoy_config_route_v3_Route_match(msg);
@@ -1667,7 +1667,7 @@ UPB_INLINE struct envoy_config_route_v3_RouteMatch* envoy_config_route_v3_Route_
1667
1667
  }
1668
1668
  UPB_INLINE void envoy_config_route_v3_Route_set_route(envoy_config_route_v3_Route *msg, envoy_config_route_v3_RouteAction* value) {
1669
1669
  const upb_MiniTableField field = {2, UPB_SIZE(56, 128), UPB_SIZE(-53, -13), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1670
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1670
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1671
1671
  }
1672
1672
  UPB_INLINE struct envoy_config_route_v3_RouteAction* envoy_config_route_v3_Route_mutable_route(envoy_config_route_v3_Route* msg, upb_Arena* arena) {
1673
1673
  struct envoy_config_route_v3_RouteAction* sub = (struct envoy_config_route_v3_RouteAction*)envoy_config_route_v3_Route_route(msg);
@@ -1679,7 +1679,7 @@ UPB_INLINE struct envoy_config_route_v3_RouteAction* envoy_config_route_v3_Route
1679
1679
  }
1680
1680
  UPB_INLINE void envoy_config_route_v3_Route_set_redirect(envoy_config_route_v3_Route *msg, envoy_config_route_v3_RedirectAction* value) {
1681
1681
  const upb_MiniTableField field = {3, UPB_SIZE(56, 128), UPB_SIZE(-53, -13), 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1682
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1682
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1683
1683
  }
1684
1684
  UPB_INLINE struct envoy_config_route_v3_RedirectAction* envoy_config_route_v3_Route_mutable_redirect(envoy_config_route_v3_Route* msg, upb_Arena* arena) {
1685
1685
  struct envoy_config_route_v3_RedirectAction* sub = (struct envoy_config_route_v3_RedirectAction*)envoy_config_route_v3_Route_redirect(msg);
@@ -1691,7 +1691,7 @@ UPB_INLINE struct envoy_config_route_v3_RedirectAction* envoy_config_route_v3_Ro
1691
1691
  }
1692
1692
  UPB_INLINE void envoy_config_route_v3_Route_set_metadata(envoy_config_route_v3_Route *msg, struct envoy_config_core_v3_Metadata* value) {
1693
1693
  const upb_MiniTableField field = {4, UPB_SIZE(16, 24), 65, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1694
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1694
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1695
1695
  }
1696
1696
  UPB_INLINE struct envoy_config_core_v3_Metadata* envoy_config_route_v3_Route_mutable_metadata(envoy_config_route_v3_Route* msg, upb_Arena* arena) {
1697
1697
  struct envoy_config_core_v3_Metadata* sub = (struct envoy_config_core_v3_Metadata*)envoy_config_route_v3_Route_metadata(msg);
@@ -1703,7 +1703,7 @@ UPB_INLINE struct envoy_config_core_v3_Metadata* envoy_config_route_v3_Route_mut
1703
1703
  }
1704
1704
  UPB_INLINE void envoy_config_route_v3_Route_set_decorator(envoy_config_route_v3_Route *msg, envoy_config_route_v3_Decorator* value) {
1705
1705
  const upb_MiniTableField field = {5, UPB_SIZE(20, 32), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1706
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1706
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1707
1707
  }
1708
1708
  UPB_INLINE struct envoy_config_route_v3_Decorator* envoy_config_route_v3_Route_mutable_decorator(envoy_config_route_v3_Route* msg, upb_Arena* arena) {
1709
1709
  struct envoy_config_route_v3_Decorator* sub = (struct envoy_config_route_v3_Decorator*)envoy_config_route_v3_Route_decorator(msg);
@@ -1715,7 +1715,7 @@ UPB_INLINE struct envoy_config_route_v3_Decorator* envoy_config_route_v3_Route_m
1715
1715
  }
1716
1716
  UPB_INLINE void envoy_config_route_v3_Route_set_direct_response(envoy_config_route_v3_Route *msg, envoy_config_route_v3_DirectResponseAction* value) {
1717
1717
  const upb_MiniTableField field = {7, UPB_SIZE(56, 128), UPB_SIZE(-53, -13), 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1718
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1718
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1719
1719
  }
1720
1720
  UPB_INLINE struct envoy_config_route_v3_DirectResponseAction* envoy_config_route_v3_Route_mutable_direct_response(envoy_config_route_v3_Route* msg, upb_Arena* arena) {
1721
1721
  struct envoy_config_route_v3_DirectResponseAction* sub = (struct envoy_config_route_v3_DirectResponseAction*)envoy_config_route_v3_Route_direct_response(msg);
@@ -1868,11 +1868,11 @@ UPB_INLINE envoy_config_route_v3_Route_TypedPerFilterConfigEntry* envoy_config_r
1868
1868
  }
1869
1869
  UPB_INLINE void envoy_config_route_v3_Route_set_name(envoy_config_route_v3_Route *msg, upb_StringView value) {
1870
1870
  const upb_MiniTableField field = {14, UPB_SIZE(60, 80), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
1871
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1871
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1872
1872
  }
1873
1873
  UPB_INLINE void envoy_config_route_v3_Route_set_tracing(envoy_config_route_v3_Route *msg, envoy_config_route_v3_Tracing* value) {
1874
1874
  const upb_MiniTableField field = {15, UPB_SIZE(44, 96), 67, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1875
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1875
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1876
1876
  }
1877
1877
  UPB_INLINE struct envoy_config_route_v3_Tracing* envoy_config_route_v3_Route_mutable_tracing(envoy_config_route_v3_Route* msg, upb_Arena* arena) {
1878
1878
  struct envoy_config_route_v3_Tracing* sub = (struct envoy_config_route_v3_Tracing*)envoy_config_route_v3_Route_tracing(msg);
@@ -1884,7 +1884,7 @@ UPB_INLINE struct envoy_config_route_v3_Tracing* envoy_config_route_v3_Route_mut
1884
1884
  }
1885
1885
  UPB_INLINE void envoy_config_route_v3_Route_set_per_request_buffer_limit_bytes(envoy_config_route_v3_Route *msg, struct google_protobuf_UInt32Value* value) {
1886
1886
  const upb_MiniTableField field = {16, UPB_SIZE(48, 104), 68, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1887
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1887
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1888
1888
  }
1889
1889
  UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_Route_mutable_per_request_buffer_limit_bytes(envoy_config_route_v3_Route* msg, upb_Arena* arena) {
1890
1890
  struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_route_v3_Route_per_request_buffer_limit_bytes(msg);
@@ -1896,7 +1896,7 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_Route_mutab
1896
1896
  }
1897
1897
  UPB_INLINE void envoy_config_route_v3_Route_set_filter_action(envoy_config_route_v3_Route *msg, envoy_config_route_v3_FilterAction* value) {
1898
1898
  const upb_MiniTableField field = {17, UPB_SIZE(56, 128), UPB_SIZE(-53, -13), 11, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1899
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1899
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1900
1900
  }
1901
1901
  UPB_INLINE struct envoy_config_route_v3_FilterAction* envoy_config_route_v3_Route_mutable_filter_action(envoy_config_route_v3_Route* msg, upb_Arena* arena) {
1902
1902
  struct envoy_config_route_v3_FilterAction* sub = (struct envoy_config_route_v3_FilterAction*)envoy_config_route_v3_Route_filter_action(msg);
@@ -1908,7 +1908,7 @@ UPB_INLINE struct envoy_config_route_v3_FilterAction* envoy_config_route_v3_Rout
1908
1908
  }
1909
1909
  UPB_INLINE void envoy_config_route_v3_Route_set_non_forwarding_action(envoy_config_route_v3_Route *msg, envoy_config_route_v3_NonForwardingAction* value) {
1910
1910
  const upb_MiniTableField field = {18, UPB_SIZE(56, 128), UPB_SIZE(-53, -13), 12, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
1911
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1911
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1912
1912
  }
1913
1913
  UPB_INLINE struct envoy_config_route_v3_NonForwardingAction* envoy_config_route_v3_Route_mutable_non_forwarding_action(envoy_config_route_v3_Route* msg, upb_Arena* arena) {
1914
1914
  struct envoy_config_route_v3_NonForwardingAction* sub = (struct envoy_config_route_v3_NonForwardingAction*)envoy_config_route_v3_Route_non_forwarding_action(msg);
@@ -1920,7 +1920,7 @@ UPB_INLINE struct envoy_config_route_v3_NonForwardingAction* envoy_config_route_
1920
1920
  }
1921
1921
  UPB_INLINE void envoy_config_route_v3_Route_set_stat_prefix(envoy_config_route_v3_Route *msg, upb_StringView value) {
1922
1922
  const upb_MiniTableField field = {19, UPB_SIZE(68, 112), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
1923
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
1923
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
1924
1924
  }
1925
1925
 
1926
1926
  /* envoy.config.route.v3.Route.TypedPerFilterConfigEntry */
@@ -2098,11 +2098,11 @@ UPB_INLINE struct envoy_config_route_v3_WeightedCluster_ClusterWeight* envoy_con
2098
2098
  }
2099
2099
  UPB_INLINE void envoy_config_route_v3_WeightedCluster_set_runtime_key_prefix(envoy_config_route_v3_WeightedCluster *msg, upb_StringView value) {
2100
2100
  const upb_MiniTableField field = {2, UPB_SIZE(32, 40), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2101
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2101
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2102
2102
  }
2103
2103
  UPB_INLINE void envoy_config_route_v3_WeightedCluster_set_total_weight(envoy_config_route_v3_WeightedCluster *msg, struct google_protobuf_UInt32Value* value) {
2104
2104
  const upb_MiniTableField field = {3, UPB_SIZE(16, 56), 64, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2105
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2105
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2106
2106
  }
2107
2107
  UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_WeightedCluster_mutable_total_weight(envoy_config_route_v3_WeightedCluster* msg, upb_Arena* arena) {
2108
2108
  struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_route_v3_WeightedCluster_total_weight(msg);
@@ -2114,7 +2114,7 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_WeightedClu
2114
2114
  }
2115
2115
  UPB_INLINE void envoy_config_route_v3_WeightedCluster_set_header_name(envoy_config_route_v3_WeightedCluster *msg, upb_StringView value) {
2116
2116
  const upb_MiniTableField field = {4, UPB_SIZE(24, 16), UPB_SIZE(-21, -13), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2117
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2117
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2118
2118
  }
2119
2119
 
2120
2120
  /* envoy.config.route.v3.WeightedCluster.ClusterWeight */
@@ -2394,11 +2394,11 @@ UPB_INLINE upb_StringView envoy_config_route_v3_WeightedCluster_ClusterWeight_cl
2394
2394
 
2395
2395
  UPB_INLINE void envoy_config_route_v3_WeightedCluster_ClusterWeight_set_name(envoy_config_route_v3_WeightedCluster_ClusterWeight *msg, upb_StringView value) {
2396
2396
  const upb_MiniTableField field = {1, UPB_SIZE(52, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2397
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2397
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2398
2398
  }
2399
2399
  UPB_INLINE void envoy_config_route_v3_WeightedCluster_ClusterWeight_set_weight(envoy_config_route_v3_WeightedCluster_ClusterWeight *msg, struct google_protobuf_UInt32Value* value) {
2400
2400
  const upb_MiniTableField field = {2, UPB_SIZE(12, 48), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2401
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2401
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2402
2402
  }
2403
2403
  UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_WeightedCluster_ClusterWeight_mutable_weight(envoy_config_route_v3_WeightedCluster_ClusterWeight* msg, upb_Arena* arena) {
2404
2404
  struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_route_v3_WeightedCluster_ClusterWeight_weight(msg);
@@ -2410,7 +2410,7 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_WeightedClu
2410
2410
  }
2411
2411
  UPB_INLINE void envoy_config_route_v3_WeightedCluster_ClusterWeight_set_metadata_match(envoy_config_route_v3_WeightedCluster_ClusterWeight *msg, struct envoy_config_core_v3_Metadata* value) {
2412
2412
  const upb_MiniTableField field = {3, UPB_SIZE(16, 56), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2413
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2413
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2414
2414
  }
2415
2415
  UPB_INLINE struct envoy_config_core_v3_Metadata* envoy_config_route_v3_WeightedCluster_ClusterWeight_mutable_metadata_match(envoy_config_route_v3_WeightedCluster_ClusterWeight* msg, upb_Arena* arena) {
2416
2416
  struct envoy_config_core_v3_Metadata* sub = (struct envoy_config_core_v3_Metadata*)envoy_config_route_v3_WeightedCluster_ClusterWeight_metadata_match(msg);
@@ -2563,11 +2563,11 @@ UPB_INLINE envoy_config_route_v3_WeightedCluster_ClusterWeight_TypedPerFilterCon
2563
2563
  }
2564
2564
  UPB_INLINE void envoy_config_route_v3_WeightedCluster_ClusterWeight_set_host_rewrite_literal(envoy_config_route_v3_WeightedCluster_ClusterWeight *msg, upb_StringView value) {
2565
2565
  const upb_MiniTableField field = {11, UPB_SIZE(44, 16), UPB_SIZE(-41, -13), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2566
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2566
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2567
2567
  }
2568
2568
  UPB_INLINE void envoy_config_route_v3_WeightedCluster_ClusterWeight_set_cluster_header(envoy_config_route_v3_WeightedCluster_ClusterWeight *msg, upb_StringView value) {
2569
2569
  const upb_MiniTableField field = {12, UPB_SIZE(60, 104), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2570
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2570
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2571
2571
  }
2572
2572
 
2573
2573
  /* envoy.config.route.v3.WeightedCluster.ClusterWeight.TypedPerFilterConfigEntry */
@@ -2658,7 +2658,7 @@ UPB_INLINE bool envoy_config_route_v3_ClusterSpecifierPlugin_is_optional(const e
2658
2658
 
2659
2659
  UPB_INLINE void envoy_config_route_v3_ClusterSpecifierPlugin_set_extension(envoy_config_route_v3_ClusterSpecifierPlugin *msg, struct envoy_config_core_v3_TypedExtensionConfig* value) {
2660
2660
  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)};
2661
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2661
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2662
2662
  }
2663
2663
  UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_route_v3_ClusterSpecifierPlugin_mutable_extension(envoy_config_route_v3_ClusterSpecifierPlugin* msg, upb_Arena* arena) {
2664
2664
  struct envoy_config_core_v3_TypedExtensionConfig* sub = (struct envoy_config_core_v3_TypedExtensionConfig*)envoy_config_route_v3_ClusterSpecifierPlugin_extension(msg);
@@ -2670,7 +2670,7 @@ UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_route_
2670
2670
  }
2671
2671
  UPB_INLINE void envoy_config_route_v3_ClusterSpecifierPlugin_set_is_optional(envoy_config_route_v3_ClusterSpecifierPlugin *msg, bool value) {
2672
2672
  const upb_MiniTableField field = {2, UPB_SIZE(16, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
2673
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2673
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2674
2674
  }
2675
2675
 
2676
2676
  /* envoy.config.route.v3.RouteMatch */
@@ -2982,15 +2982,15 @@ UPB_INLINE bool envoy_config_route_v3_RouteMatch_has_path_match_policy(const env
2982
2982
 
2983
2983
  UPB_INLINE void envoy_config_route_v3_RouteMatch_set_prefix(envoy_config_route_v3_RouteMatch *msg, upb_StringView value) {
2984
2984
  const upb_MiniTableField field = {1, UPB_SIZE(44, 16), UPB_SIZE(-41, -13), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2985
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2985
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2986
2986
  }
2987
2987
  UPB_INLINE void envoy_config_route_v3_RouteMatch_set_path(envoy_config_route_v3_RouteMatch *msg, upb_StringView value) {
2988
2988
  const upb_MiniTableField field = {2, UPB_SIZE(44, 16), UPB_SIZE(-41, -13), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
2989
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2989
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2990
2990
  }
2991
2991
  UPB_INLINE void envoy_config_route_v3_RouteMatch_set_case_sensitive(envoy_config_route_v3_RouteMatch *msg, struct google_protobuf_BoolValue* value) {
2992
2992
  const upb_MiniTableField field = {4, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
2993
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
2993
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
2994
2994
  }
2995
2995
  UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RouteMatch_mutable_case_sensitive(envoy_config_route_v3_RouteMatch* msg, upb_Arena* arena) {
2996
2996
  struct google_protobuf_BoolValue* sub = (struct google_protobuf_BoolValue*)envoy_config_route_v3_RouteMatch_case_sensitive(msg);
@@ -3062,7 +3062,7 @@ UPB_INLINE struct envoy_config_route_v3_QueryParameterMatcher* envoy_config_rout
3062
3062
  }
3063
3063
  UPB_INLINE void envoy_config_route_v3_RouteMatch_set_grpc(envoy_config_route_v3_RouteMatch *msg, envoy_config_route_v3_RouteMatch_GrpcRouteMatchOptions* value) {
3064
3064
  const upb_MiniTableField field = {8, UPB_SIZE(24, 56), 65, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3065
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3065
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3066
3066
  }
3067
3067
  UPB_INLINE struct envoy_config_route_v3_RouteMatch_GrpcRouteMatchOptions* envoy_config_route_v3_RouteMatch_mutable_grpc(envoy_config_route_v3_RouteMatch* msg, upb_Arena* arena) {
3068
3068
  struct envoy_config_route_v3_RouteMatch_GrpcRouteMatchOptions* sub = (struct envoy_config_route_v3_RouteMatch_GrpcRouteMatchOptions*)envoy_config_route_v3_RouteMatch_grpc(msg);
@@ -3074,7 +3074,7 @@ UPB_INLINE struct envoy_config_route_v3_RouteMatch_GrpcRouteMatchOptions* envoy_
3074
3074
  }
3075
3075
  UPB_INLINE void envoy_config_route_v3_RouteMatch_set_runtime_fraction(envoy_config_route_v3_RouteMatch *msg, struct envoy_config_core_v3_RuntimeFractionalPercent* value) {
3076
3076
  const upb_MiniTableField field = {9, UPB_SIZE(28, 64), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3077
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3077
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3078
3078
  }
3079
3079
  UPB_INLINE struct envoy_config_core_v3_RuntimeFractionalPercent* envoy_config_route_v3_RouteMatch_mutable_runtime_fraction(envoy_config_route_v3_RouteMatch* msg, upb_Arena* arena) {
3080
3080
  struct envoy_config_core_v3_RuntimeFractionalPercent* sub = (struct envoy_config_core_v3_RuntimeFractionalPercent*)envoy_config_route_v3_RouteMatch_runtime_fraction(msg);
@@ -3086,7 +3086,7 @@ UPB_INLINE struct envoy_config_core_v3_RuntimeFractionalPercent* envoy_config_ro
3086
3086
  }
3087
3087
  UPB_INLINE void envoy_config_route_v3_RouteMatch_set_safe_regex(envoy_config_route_v3_RouteMatch *msg, struct envoy_type_matcher_v3_RegexMatcher* value) {
3088
3088
  const upb_MiniTableField field = {10, UPB_SIZE(44, 16), UPB_SIZE(-41, -13), 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3089
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3089
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3090
3090
  }
3091
3091
  UPB_INLINE struct envoy_type_matcher_v3_RegexMatcher* envoy_config_route_v3_RouteMatch_mutable_safe_regex(envoy_config_route_v3_RouteMatch* msg, upb_Arena* arena) {
3092
3092
  struct envoy_type_matcher_v3_RegexMatcher* sub = (struct envoy_type_matcher_v3_RegexMatcher*)envoy_config_route_v3_RouteMatch_safe_regex(msg);
@@ -3098,7 +3098,7 @@ UPB_INLINE struct envoy_type_matcher_v3_RegexMatcher* envoy_config_route_v3_Rout
3098
3098
  }
3099
3099
  UPB_INLINE void envoy_config_route_v3_RouteMatch_set_tls_context(envoy_config_route_v3_RouteMatch *msg, envoy_config_route_v3_RouteMatch_TlsContextMatchOptions* value) {
3100
3100
  const upb_MiniTableField field = {11, UPB_SIZE(32, 72), 67, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3101
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3101
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3102
3102
  }
3103
3103
  UPB_INLINE struct envoy_config_route_v3_RouteMatch_TlsContextMatchOptions* envoy_config_route_v3_RouteMatch_mutable_tls_context(envoy_config_route_v3_RouteMatch* msg, upb_Arena* arena) {
3104
3104
  struct envoy_config_route_v3_RouteMatch_TlsContextMatchOptions* sub = (struct envoy_config_route_v3_RouteMatch_TlsContextMatchOptions*)envoy_config_route_v3_RouteMatch_tls_context(msg);
@@ -3110,7 +3110,7 @@ UPB_INLINE struct envoy_config_route_v3_RouteMatch_TlsContextMatchOptions* envoy
3110
3110
  }
3111
3111
  UPB_INLINE void envoy_config_route_v3_RouteMatch_set_connect_matcher(envoy_config_route_v3_RouteMatch *msg, envoy_config_route_v3_RouteMatch_ConnectMatcher* value) {
3112
3112
  const upb_MiniTableField field = {12, UPB_SIZE(44, 16), UPB_SIZE(-41, -13), 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3113
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3113
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3114
3114
  }
3115
3115
  UPB_INLINE struct envoy_config_route_v3_RouteMatch_ConnectMatcher* envoy_config_route_v3_RouteMatch_mutable_connect_matcher(envoy_config_route_v3_RouteMatch* msg, upb_Arena* arena) {
3116
3116
  struct envoy_config_route_v3_RouteMatch_ConnectMatcher* sub = (struct envoy_config_route_v3_RouteMatch_ConnectMatcher*)envoy_config_route_v3_RouteMatch_connect_matcher(msg);
@@ -3152,11 +3152,11 @@ UPB_INLINE struct envoy_type_matcher_v3_MetadataMatcher* envoy_config_route_v3_R
3152
3152
  }
3153
3153
  UPB_INLINE void envoy_config_route_v3_RouteMatch_set_path_separated_prefix(envoy_config_route_v3_RouteMatch *msg, upb_StringView value) {
3154
3154
  const upb_MiniTableField field = {14, UPB_SIZE(44, 16), UPB_SIZE(-41, -13), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3155
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3155
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3156
3156
  }
3157
3157
  UPB_INLINE void envoy_config_route_v3_RouteMatch_set_path_match_policy(envoy_config_route_v3_RouteMatch *msg, struct envoy_config_core_v3_TypedExtensionConfig* value) {
3158
3158
  const upb_MiniTableField field = {15, UPB_SIZE(44, 16), UPB_SIZE(-41, -13), 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3159
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3159
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3160
3160
  }
3161
3161
  UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_route_v3_RouteMatch_mutable_path_match_policy(envoy_config_route_v3_RouteMatch* msg, upb_Arena* arena) {
3162
3162
  struct envoy_config_core_v3_TypedExtensionConfig* sub = (struct envoy_config_core_v3_TypedExtensionConfig*)envoy_config_route_v3_RouteMatch_path_match_policy(msg);
@@ -3276,7 +3276,7 @@ UPB_INLINE bool envoy_config_route_v3_RouteMatch_TlsContextMatchOptions_has_vali
3276
3276
 
3277
3277
  UPB_INLINE void envoy_config_route_v3_RouteMatch_TlsContextMatchOptions_set_presented(envoy_config_route_v3_RouteMatch_TlsContextMatchOptions *msg, struct google_protobuf_BoolValue* value) {
3278
3278
  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)};
3279
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3279
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3280
3280
  }
3281
3281
  UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RouteMatch_TlsContextMatchOptions_mutable_presented(envoy_config_route_v3_RouteMatch_TlsContextMatchOptions* msg, upb_Arena* arena) {
3282
3282
  struct google_protobuf_BoolValue* sub = (struct google_protobuf_BoolValue*)envoy_config_route_v3_RouteMatch_TlsContextMatchOptions_presented(msg);
@@ -3288,7 +3288,7 @@ UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RouteMatch_Tl
3288
3288
  }
3289
3289
  UPB_INLINE void envoy_config_route_v3_RouteMatch_TlsContextMatchOptions_set_validated(envoy_config_route_v3_RouteMatch_TlsContextMatchOptions *msg, struct google_protobuf_BoolValue* value) {
3290
3290
  const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3291
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3291
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3292
3292
  }
3293
3293
  UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RouteMatch_TlsContextMatchOptions_mutable_validated(envoy_config_route_v3_RouteMatch_TlsContextMatchOptions* msg, upb_Arena* arena) {
3294
3294
  struct google_protobuf_BoolValue* sub = (struct google_protobuf_BoolValue*)envoy_config_route_v3_RouteMatch_TlsContextMatchOptions_validated(msg);
@@ -3378,54 +3378,54 @@ typedef enum {
3378
3378
  envoy_config_route_v3_CorsPolicy_enabled_specifier_NOT_SET = 0
3379
3379
  } envoy_config_route_v3_CorsPolicy_enabled_specifier_oneofcases;
3380
3380
  UPB_INLINE envoy_config_route_v3_CorsPolicy_enabled_specifier_oneofcases envoy_config_route_v3_CorsPolicy_enabled_specifier_case(const envoy_config_route_v3_CorsPolicy* msg) {
3381
- const upb_MiniTableField field = {9, UPB_SIZE(32, 112), UPB_SIZE(-17, -13), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3381
+ const upb_MiniTableField field = {9, UPB_SIZE(36, 120), UPB_SIZE(-17, -13), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3382
3382
  return (envoy_config_route_v3_CorsPolicy_enabled_specifier_oneofcases)upb_Message_WhichOneofFieldNumber(
3383
3383
  UPB_UPCAST(msg), &field);
3384
3384
  }
3385
3385
  UPB_INLINE void envoy_config_route_v3_CorsPolicy_clear_allow_methods(envoy_config_route_v3_CorsPolicy* msg) {
3386
- const upb_MiniTableField field = {2, UPB_SIZE(36, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3386
+ const upb_MiniTableField field = {2, UPB_SIZE(40, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3387
3387
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
3388
3388
  }
3389
3389
  UPB_INLINE upb_StringView envoy_config_route_v3_CorsPolicy_allow_methods(const envoy_config_route_v3_CorsPolicy* msg) {
3390
3390
  upb_StringView default_val = upb_StringView_FromString("");
3391
3391
  upb_StringView ret;
3392
- const upb_MiniTableField field = {2, UPB_SIZE(36, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3392
+ const upb_MiniTableField field = {2, UPB_SIZE(40, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3393
3393
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3394
3394
  &default_val, &ret);
3395
3395
  return ret;
3396
3396
  }
3397
3397
  UPB_INLINE void envoy_config_route_v3_CorsPolicy_clear_allow_headers(envoy_config_route_v3_CorsPolicy* msg) {
3398
- const upb_MiniTableField field = {3, UPB_SIZE(44, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3398
+ const upb_MiniTableField field = {3, UPB_SIZE(48, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3399
3399
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
3400
3400
  }
3401
3401
  UPB_INLINE upb_StringView envoy_config_route_v3_CorsPolicy_allow_headers(const envoy_config_route_v3_CorsPolicy* msg) {
3402
3402
  upb_StringView default_val = upb_StringView_FromString("");
3403
3403
  upb_StringView ret;
3404
- const upb_MiniTableField field = {3, UPB_SIZE(44, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3404
+ const upb_MiniTableField field = {3, UPB_SIZE(48, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3405
3405
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3406
3406
  &default_val, &ret);
3407
3407
  return ret;
3408
3408
  }
3409
3409
  UPB_INLINE void envoy_config_route_v3_CorsPolicy_clear_expose_headers(envoy_config_route_v3_CorsPolicy* msg) {
3410
- const upb_MiniTableField field = {4, UPB_SIZE(52, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3410
+ const upb_MiniTableField field = {4, UPB_SIZE(56, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3411
3411
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
3412
3412
  }
3413
3413
  UPB_INLINE upb_StringView envoy_config_route_v3_CorsPolicy_expose_headers(const envoy_config_route_v3_CorsPolicy* msg) {
3414
3414
  upb_StringView default_val = upb_StringView_FromString("");
3415
3415
  upb_StringView ret;
3416
- const upb_MiniTableField field = {4, UPB_SIZE(52, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3416
+ const upb_MiniTableField field = {4, UPB_SIZE(56, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3417
3417
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3418
3418
  &default_val, &ret);
3419
3419
  return ret;
3420
3420
  }
3421
3421
  UPB_INLINE void envoy_config_route_v3_CorsPolicy_clear_max_age(envoy_config_route_v3_CorsPolicy* msg) {
3422
- const upb_MiniTableField field = {5, UPB_SIZE(60, 64), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3422
+ const upb_MiniTableField field = {5, 64, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3423
3423
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
3424
3424
  }
3425
3425
  UPB_INLINE upb_StringView envoy_config_route_v3_CorsPolicy_max_age(const envoy_config_route_v3_CorsPolicy* msg) {
3426
3426
  upb_StringView default_val = upb_StringView_FromString("");
3427
3427
  upb_StringView ret;
3428
- const upb_MiniTableField field = {5, UPB_SIZE(60, 64), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3428
+ const upb_MiniTableField field = {5, 64, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3429
3429
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3430
3430
  &default_val, &ret);
3431
3431
  return ret;
@@ -3447,19 +3447,19 @@ UPB_INLINE bool envoy_config_route_v3_CorsPolicy_has_allow_credentials(const env
3447
3447
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
3448
3448
  }
3449
3449
  UPB_INLINE void envoy_config_route_v3_CorsPolicy_clear_filter_enabled(envoy_config_route_v3_CorsPolicy* msg) {
3450
- const upb_MiniTableField field = {9, UPB_SIZE(32, 112), UPB_SIZE(-17, -13), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3450
+ const upb_MiniTableField field = {9, UPB_SIZE(36, 120), UPB_SIZE(-17, -13), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3451
3451
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
3452
3452
  }
3453
3453
  UPB_INLINE const struct envoy_config_core_v3_RuntimeFractionalPercent* envoy_config_route_v3_CorsPolicy_filter_enabled(const envoy_config_route_v3_CorsPolicy* msg) {
3454
3454
  const struct envoy_config_core_v3_RuntimeFractionalPercent* default_val = NULL;
3455
3455
  const struct envoy_config_core_v3_RuntimeFractionalPercent* ret;
3456
- const upb_MiniTableField field = {9, UPB_SIZE(32, 112), UPB_SIZE(-17, -13), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3456
+ const upb_MiniTableField field = {9, UPB_SIZE(36, 120), UPB_SIZE(-17, -13), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3457
3457
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3458
3458
  &default_val, &ret);
3459
3459
  return ret;
3460
3460
  }
3461
3461
  UPB_INLINE bool envoy_config_route_v3_CorsPolicy_has_filter_enabled(const envoy_config_route_v3_CorsPolicy* msg) {
3462
- const upb_MiniTableField field = {9, UPB_SIZE(32, 112), UPB_SIZE(-17, -13), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3462
+ const upb_MiniTableField field = {9, UPB_SIZE(36, 120), UPB_SIZE(-17, -13), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3463
3463
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
3464
3464
  }
3465
3465
  UPB_INLINE void envoy_config_route_v3_CorsPolicy_clear_shadow_enabled(envoy_config_route_v3_CorsPolicy* msg) {
@@ -3526,26 +3526,42 @@ UPB_INLINE bool envoy_config_route_v3_CorsPolicy_has_allow_private_network_acces
3526
3526
  const upb_MiniTableField field = {12, UPB_SIZE(28, 104), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3527
3527
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
3528
3528
  }
3529
+ UPB_INLINE void envoy_config_route_v3_CorsPolicy_clear_forward_not_matching_preflights(envoy_config_route_v3_CorsPolicy* msg) {
3530
+ const upb_MiniTableField field = {13, UPB_SIZE(32, 112), 67, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3531
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
3532
+ }
3533
+ UPB_INLINE const struct google_protobuf_BoolValue* envoy_config_route_v3_CorsPolicy_forward_not_matching_preflights(const envoy_config_route_v3_CorsPolicy* msg) {
3534
+ const struct google_protobuf_BoolValue* default_val = NULL;
3535
+ const struct google_protobuf_BoolValue* ret;
3536
+ const upb_MiniTableField field = {13, UPB_SIZE(32, 112), 67, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3537
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
3538
+ &default_val, &ret);
3539
+ return ret;
3540
+ }
3541
+ UPB_INLINE bool envoy_config_route_v3_CorsPolicy_has_forward_not_matching_preflights(const envoy_config_route_v3_CorsPolicy* msg) {
3542
+ const upb_MiniTableField field = {13, UPB_SIZE(32, 112), 67, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3543
+ return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
3544
+ }
3529
3545
 
3530
3546
  UPB_INLINE void envoy_config_route_v3_CorsPolicy_set_allow_methods(envoy_config_route_v3_CorsPolicy *msg, upb_StringView value) {
3531
- const upb_MiniTableField field = {2, UPB_SIZE(36, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3532
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3547
+ const upb_MiniTableField field = {2, UPB_SIZE(40, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3548
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3533
3549
  }
3534
3550
  UPB_INLINE void envoy_config_route_v3_CorsPolicy_set_allow_headers(envoy_config_route_v3_CorsPolicy *msg, upb_StringView value) {
3535
- const upb_MiniTableField field = {3, UPB_SIZE(44, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3536
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3551
+ const upb_MiniTableField field = {3, UPB_SIZE(48, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3552
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3537
3553
  }
3538
3554
  UPB_INLINE void envoy_config_route_v3_CorsPolicy_set_expose_headers(envoy_config_route_v3_CorsPolicy *msg, upb_StringView value) {
3539
- const upb_MiniTableField field = {4, UPB_SIZE(52, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3540
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3555
+ const upb_MiniTableField field = {4, UPB_SIZE(56, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3556
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3541
3557
  }
3542
3558
  UPB_INLINE void envoy_config_route_v3_CorsPolicy_set_max_age(envoy_config_route_v3_CorsPolicy *msg, upb_StringView value) {
3543
- const upb_MiniTableField field = {5, UPB_SIZE(60, 64), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3544
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3559
+ const upb_MiniTableField field = {5, 64, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
3560
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3545
3561
  }
3546
3562
  UPB_INLINE void envoy_config_route_v3_CorsPolicy_set_allow_credentials(envoy_config_route_v3_CorsPolicy *msg, struct google_protobuf_BoolValue* value) {
3547
3563
  const upb_MiniTableField field = {6, UPB_SIZE(12, 80), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3548
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3564
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3549
3565
  }
3550
3566
  UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_CorsPolicy_mutable_allow_credentials(envoy_config_route_v3_CorsPolicy* msg, upb_Arena* arena) {
3551
3567
  struct google_protobuf_BoolValue* sub = (struct google_protobuf_BoolValue*)envoy_config_route_v3_CorsPolicy_allow_credentials(msg);
@@ -3556,8 +3572,8 @@ UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_CorsPolicy_mu
3556
3572
  return sub;
3557
3573
  }
3558
3574
  UPB_INLINE void envoy_config_route_v3_CorsPolicy_set_filter_enabled(envoy_config_route_v3_CorsPolicy *msg, struct envoy_config_core_v3_RuntimeFractionalPercent* value) {
3559
- const upb_MiniTableField field = {9, UPB_SIZE(32, 112), UPB_SIZE(-17, -13), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3560
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3575
+ const upb_MiniTableField field = {9, UPB_SIZE(36, 120), UPB_SIZE(-17, -13), 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3576
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3561
3577
  }
3562
3578
  UPB_INLINE struct envoy_config_core_v3_RuntimeFractionalPercent* envoy_config_route_v3_CorsPolicy_mutable_filter_enabled(envoy_config_route_v3_CorsPolicy* msg, upb_Arena* arena) {
3563
3579
  struct envoy_config_core_v3_RuntimeFractionalPercent* sub = (struct envoy_config_core_v3_RuntimeFractionalPercent*)envoy_config_route_v3_CorsPolicy_filter_enabled(msg);
@@ -3569,7 +3585,7 @@ UPB_INLINE struct envoy_config_core_v3_RuntimeFractionalPercent* envoy_config_ro
3569
3585
  }
3570
3586
  UPB_INLINE void envoy_config_route_v3_CorsPolicy_set_shadow_enabled(envoy_config_route_v3_CorsPolicy *msg, struct envoy_config_core_v3_RuntimeFractionalPercent* value) {
3571
3587
  const upb_MiniTableField field = {10, UPB_SIZE(20, 88), 65, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3572
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3588
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3573
3589
  }
3574
3590
  UPB_INLINE struct envoy_config_core_v3_RuntimeFractionalPercent* envoy_config_route_v3_CorsPolicy_mutable_shadow_enabled(envoy_config_route_v3_CorsPolicy* msg, upb_Arena* arena) {
3575
3591
  struct envoy_config_core_v3_RuntimeFractionalPercent* sub = (struct envoy_config_core_v3_RuntimeFractionalPercent*)envoy_config_route_v3_CorsPolicy_shadow_enabled(msg);
@@ -3611,7 +3627,7 @@ UPB_INLINE struct envoy_type_matcher_v3_StringMatcher* envoy_config_route_v3_Cor
3611
3627
  }
3612
3628
  UPB_INLINE void envoy_config_route_v3_CorsPolicy_set_allow_private_network_access(envoy_config_route_v3_CorsPolicy *msg, struct google_protobuf_BoolValue* value) {
3613
3629
  const upb_MiniTableField field = {12, UPB_SIZE(28, 104), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3614
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
3630
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3615
3631
  }
3616
3632
  UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_CorsPolicy_mutable_allow_private_network_access(envoy_config_route_v3_CorsPolicy* msg, upb_Arena* arena) {
3617
3633
  struct google_protobuf_BoolValue* sub = (struct google_protobuf_BoolValue*)envoy_config_route_v3_CorsPolicy_allow_private_network_access(msg);
@@ -3621,6 +3637,18 @@ UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_CorsPolicy_mu
3621
3637
  }
3622
3638
  return sub;
3623
3639
  }
3640
+ UPB_INLINE void envoy_config_route_v3_CorsPolicy_set_forward_not_matching_preflights(envoy_config_route_v3_CorsPolicy *msg, struct google_protobuf_BoolValue* value) {
3641
+ const upb_MiniTableField field = {13, UPB_SIZE(32, 112), 67, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
3642
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
3643
+ }
3644
+ UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_CorsPolicy_mutable_forward_not_matching_preflights(envoy_config_route_v3_CorsPolicy* msg, upb_Arena* arena) {
3645
+ struct google_protobuf_BoolValue* sub = (struct google_protobuf_BoolValue*)envoy_config_route_v3_CorsPolicy_forward_not_matching_preflights(msg);
3646
+ if (sub == NULL) {
3647
+ sub = (struct google_protobuf_BoolValue*)_upb_Message_New(&google__protobuf__BoolValue_msg_init, arena);
3648
+ if (sub) envoy_config_route_v3_CorsPolicy_set_forward_not_matching_preflights(msg, sub);
3649
+ }
3650
+ return sub;
3651
+ }
3624
3652
 
3625
3653
  /* envoy.config.route.v3.RouteAction */
3626
3654
 
@@ -4274,15 +4302,15 @@ UPB_INLINE bool envoy_config_route_v3_RouteAction_has_path_rewrite_policy(const
4274
4302
 
4275
4303
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_cluster(envoy_config_route_v3_RouteAction *msg, upb_StringView value) {
4276
4304
  const upb_MiniTableField field = {1, UPB_SIZE(124, 56), UPB_SIZE(-105, -33), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4277
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4305
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4278
4306
  }
4279
4307
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_cluster_header(envoy_config_route_v3_RouteAction *msg, upb_StringView value) {
4280
4308
  const upb_MiniTableField field = {2, UPB_SIZE(124, 56), UPB_SIZE(-105, -33), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4281
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4309
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4282
4310
  }
4283
4311
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_weighted_clusters(envoy_config_route_v3_RouteAction *msg, envoy_config_route_v3_WeightedCluster* value) {
4284
4312
  const upb_MiniTableField field = {3, UPB_SIZE(124, 56), UPB_SIZE(-105, -33), 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4285
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4313
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4286
4314
  }
4287
4315
  UPB_INLINE struct envoy_config_route_v3_WeightedCluster* envoy_config_route_v3_RouteAction_mutable_weighted_clusters(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
4288
4316
  struct envoy_config_route_v3_WeightedCluster* sub = (struct envoy_config_route_v3_WeightedCluster*)envoy_config_route_v3_RouteAction_weighted_clusters(msg);
@@ -4294,7 +4322,7 @@ UPB_INLINE struct envoy_config_route_v3_WeightedCluster* envoy_config_route_v3_R
4294
4322
  }
4295
4323
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_metadata_match(envoy_config_route_v3_RouteAction *msg, struct envoy_config_core_v3_Metadata* value) {
4296
4324
  const upb_MiniTableField field = {4, UPB_SIZE(12, 72), 64, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4297
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4325
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4298
4326
  }
4299
4327
  UPB_INLINE struct envoy_config_core_v3_Metadata* envoy_config_route_v3_RouteAction_mutable_metadata_match(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
4300
4328
  struct envoy_config_core_v3_Metadata* sub = (struct envoy_config_core_v3_Metadata*)envoy_config_route_v3_RouteAction_metadata_match(msg);
@@ -4306,15 +4334,15 @@ UPB_INLINE struct envoy_config_core_v3_Metadata* envoy_config_route_v3_RouteActi
4306
4334
  }
4307
4335
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_prefix_rewrite(envoy_config_route_v3_RouteAction *msg, upb_StringView value) {
4308
4336
  const upb_MiniTableField field = {5, UPB_SIZE(132, 80), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4309
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4337
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4310
4338
  }
4311
4339
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_host_rewrite_literal(envoy_config_route_v3_RouteAction *msg, upb_StringView value) {
4312
4340
  const upb_MiniTableField field = {6, UPB_SIZE(116, 40), UPB_SIZE(-93, -25), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4313
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4341
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4314
4342
  }
4315
4343
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_auto_host_rewrite(envoy_config_route_v3_RouteAction *msg, struct google_protobuf_BoolValue* value) {
4316
4344
  const upb_MiniTableField field = {7, UPB_SIZE(116, 40), UPB_SIZE(-93, -25), 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4317
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4345
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4318
4346
  }
4319
4347
  UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RouteAction_mutable_auto_host_rewrite(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
4320
4348
  struct google_protobuf_BoolValue* sub = (struct google_protobuf_BoolValue*)envoy_config_route_v3_RouteAction_auto_host_rewrite(msg);
@@ -4326,7 +4354,7 @@ UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RouteAction_m
4326
4354
  }
4327
4355
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_timeout(envoy_config_route_v3_RouteAction *msg, struct google_protobuf_Duration* value) {
4328
4356
  const upb_MiniTableField field = {8, UPB_SIZE(16, 96), 65, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4329
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4357
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4330
4358
  }
4331
4359
  UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_mutable_timeout(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
4332
4360
  struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_route_v3_RouteAction_timeout(msg);
@@ -4338,7 +4366,7 @@ UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_mu
4338
4366
  }
4339
4367
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_retry_policy(envoy_config_route_v3_RouteAction *msg, envoy_config_route_v3_RetryPolicy* value) {
4340
4368
  const upb_MiniTableField field = {9, UPB_SIZE(20, 104), 66, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4341
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4369
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4342
4370
  }
4343
4371
  UPB_INLINE struct envoy_config_route_v3_RetryPolicy* envoy_config_route_v3_RouteAction_mutable_retry_policy(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
4344
4372
  struct envoy_config_route_v3_RetryPolicy* sub = (struct envoy_config_route_v3_RetryPolicy*)envoy_config_route_v3_RouteAction_retry_policy(msg);
@@ -4350,7 +4378,7 @@ UPB_INLINE struct envoy_config_route_v3_RetryPolicy* envoy_config_route_v3_Route
4350
4378
  }
4351
4379
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_priority(envoy_config_route_v3_RouteAction *msg, int32_t value) {
4352
4380
  const upb_MiniTableField field = {11, UPB_SIZE(24, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4353
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4381
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4354
4382
  }
4355
4383
  UPB_INLINE envoy_config_route_v3_RateLimit** envoy_config_route_v3_RouteAction_mutable_rate_limits(envoy_config_route_v3_RouteAction* msg, size_t* size) {
4356
4384
  upb_MiniTableField field = {13, UPB_SIZE(28, 112), 0, 5, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
@@ -4384,7 +4412,7 @@ UPB_INLINE struct envoy_config_route_v3_RateLimit* envoy_config_route_v3_RouteAc
4384
4412
  }
4385
4413
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_include_vh_rate_limits(envoy_config_route_v3_RouteAction *msg, struct google_protobuf_BoolValue* value) {
4386
4414
  const upb_MiniTableField field = {14, UPB_SIZE(32, 120), 67, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4387
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4415
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4388
4416
  }
4389
4417
  UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RouteAction_mutable_include_vh_rate_limits(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
4390
4418
  struct google_protobuf_BoolValue* sub = (struct google_protobuf_BoolValue*)envoy_config_route_v3_RouteAction_include_vh_rate_limits(msg);
@@ -4426,7 +4454,7 @@ UPB_INLINE struct envoy_config_route_v3_RouteAction_HashPolicy* envoy_config_rou
4426
4454
  }
4427
4455
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_cors(envoy_config_route_v3_RouteAction *msg, envoy_config_route_v3_CorsPolicy* value) {
4428
4456
  const upb_MiniTableField field = {17, UPB_SIZE(40, 136), 68, 8, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4429
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4457
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4430
4458
  }
4431
4459
  UPB_INLINE struct envoy_config_route_v3_CorsPolicy* envoy_config_route_v3_RouteAction_mutable_cors(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
4432
4460
  struct envoy_config_route_v3_CorsPolicy* sub = (struct envoy_config_route_v3_CorsPolicy*)envoy_config_route_v3_RouteAction_cors(msg);
@@ -4438,11 +4466,11 @@ UPB_INLINE struct envoy_config_route_v3_CorsPolicy* envoy_config_route_v3_RouteA
4438
4466
  }
4439
4467
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_cluster_not_found_response_code(envoy_config_route_v3_RouteAction *msg, int32_t value) {
4440
4468
  const upb_MiniTableField field = {20, UPB_SIZE(44, 16), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4441
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4469
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4442
4470
  }
4443
4471
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_max_grpc_timeout(envoy_config_route_v3_RouteAction *msg, struct google_protobuf_Duration* value) {
4444
4472
  const upb_MiniTableField field = {23, UPB_SIZE(48, 144), 69, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4445
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4473
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4446
4474
  }
4447
4475
  UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_mutable_max_grpc_timeout(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
4448
4476
  struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_route_v3_RouteAction_max_grpc_timeout(msg);
@@ -4454,7 +4482,7 @@ UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_mu
4454
4482
  }
4455
4483
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_idle_timeout(envoy_config_route_v3_RouteAction *msg, struct google_protobuf_Duration* value) {
4456
4484
  const upb_MiniTableField field = {24, UPB_SIZE(52, 152), 70, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4457
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4485
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4458
4486
  }
4459
4487
  UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_mutable_idle_timeout(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
4460
4488
  struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_route_v3_RouteAction_idle_timeout(msg);
@@ -4496,11 +4524,11 @@ UPB_INLINE struct envoy_config_route_v3_RouteAction_UpgradeConfig* envoy_config_
4496
4524
  }
4497
4525
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_internal_redirect_action(envoy_config_route_v3_RouteAction *msg, int32_t value) {
4498
4526
  const upb_MiniTableField field = {26, UPB_SIZE(60, 20), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
4499
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4527
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4500
4528
  }
4501
4529
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_hedge_policy(envoy_config_route_v3_RouteAction *msg, envoy_config_route_v3_HedgePolicy* value) {
4502
4530
  const upb_MiniTableField field = {27, UPB_SIZE(64, 168), 71, 12, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4503
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4531
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4504
4532
  }
4505
4533
  UPB_INLINE struct envoy_config_route_v3_HedgePolicy* envoy_config_route_v3_RouteAction_mutable_hedge_policy(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
4506
4534
  struct envoy_config_route_v3_HedgePolicy* sub = (struct envoy_config_route_v3_HedgePolicy*)envoy_config_route_v3_RouteAction_hedge_policy(msg);
@@ -4512,7 +4540,7 @@ UPB_INLINE struct envoy_config_route_v3_HedgePolicy* envoy_config_route_v3_Route
4512
4540
  }
4513
4541
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_grpc_timeout_offset(envoy_config_route_v3_RouteAction *msg, struct google_protobuf_Duration* value) {
4514
4542
  const upb_MiniTableField field = {28, UPB_SIZE(68, 176), 72, 13, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4515
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4543
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4516
4544
  }
4517
4545
  UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_mutable_grpc_timeout_offset(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
4518
4546
  struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_route_v3_RouteAction_grpc_timeout_offset(msg);
@@ -4524,7 +4552,7 @@ UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_mu
4524
4552
  }
4525
4553
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_host_rewrite_header(envoy_config_route_v3_RouteAction *msg, upb_StringView value) {
4526
4554
  const upb_MiniTableField field = {29, UPB_SIZE(116, 40), UPB_SIZE(-93, -25), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4527
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4555
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4528
4556
  }
4529
4557
  UPB_INLINE envoy_config_route_v3_RouteAction_RequestMirrorPolicy** envoy_config_route_v3_RouteAction_mutable_request_mirror_policies(envoy_config_route_v3_RouteAction* msg, size_t* size) {
4530
4558
  upb_MiniTableField field = {30, UPB_SIZE(72, 184), 0, 14, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
@@ -4558,7 +4586,7 @@ UPB_INLINE struct envoy_config_route_v3_RouteAction_RequestMirrorPolicy* envoy_c
4558
4586
  }
4559
4587
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_max_internal_redirects(envoy_config_route_v3_RouteAction *msg, struct google_protobuf_UInt32Value* value) {
4560
4588
  const upb_MiniTableField field = {31, UPB_SIZE(76, 192), 73, 15, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4561
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4589
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4562
4590
  }
4563
4591
  UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_RouteAction_mutable_max_internal_redirects(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
4564
4592
  struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_route_v3_RouteAction_max_internal_redirects(msg);
@@ -4570,7 +4598,7 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_RouteAction
4570
4598
  }
4571
4599
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_regex_rewrite(envoy_config_route_v3_RouteAction *msg, struct envoy_type_matcher_v3_RegexMatchAndSubstitute* value) {
4572
4600
  const upb_MiniTableField field = {32, UPB_SIZE(80, 200), 74, 16, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4573
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4601
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4574
4602
  }
4575
4603
  UPB_INLINE struct envoy_type_matcher_v3_RegexMatchAndSubstitute* envoy_config_route_v3_RouteAction_mutable_regex_rewrite(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
4576
4604
  struct envoy_type_matcher_v3_RegexMatchAndSubstitute* sub = (struct envoy_type_matcher_v3_RegexMatchAndSubstitute*)envoy_config_route_v3_RouteAction_regex_rewrite(msg);
@@ -4582,7 +4610,7 @@ UPB_INLINE struct envoy_type_matcher_v3_RegexMatchAndSubstitute* envoy_config_ro
4582
4610
  }
4583
4611
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_retry_policy_typed_config(envoy_config_route_v3_RouteAction *msg, struct google_protobuf_Any* value) {
4584
4612
  const upb_MiniTableField field = {33, UPB_SIZE(84, 208), 75, 17, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4585
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4613
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4586
4614
  }
4587
4615
  UPB_INLINE struct google_protobuf_Any* envoy_config_route_v3_RouteAction_mutable_retry_policy_typed_config(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
4588
4616
  struct google_protobuf_Any* sub = (struct google_protobuf_Any*)envoy_config_route_v3_RouteAction_retry_policy_typed_config(msg);
@@ -4594,7 +4622,7 @@ UPB_INLINE struct google_protobuf_Any* envoy_config_route_v3_RouteAction_mutable
4594
4622
  }
4595
4623
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_internal_redirect_policy(envoy_config_route_v3_RouteAction *msg, envoy_config_route_v3_InternalRedirectPolicy* value) {
4596
4624
  const upb_MiniTableField field = {34, UPB_SIZE(88, 216), 76, 18, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4597
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4625
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4598
4626
  }
4599
4627
  UPB_INLINE struct envoy_config_route_v3_InternalRedirectPolicy* envoy_config_route_v3_RouteAction_mutable_internal_redirect_policy(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
4600
4628
  struct envoy_config_route_v3_InternalRedirectPolicy* sub = (struct envoy_config_route_v3_InternalRedirectPolicy*)envoy_config_route_v3_RouteAction_internal_redirect_policy(msg);
@@ -4606,7 +4634,7 @@ UPB_INLINE struct envoy_config_route_v3_InternalRedirectPolicy* envoy_config_rou
4606
4634
  }
4607
4635
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_host_rewrite_path_regex(envoy_config_route_v3_RouteAction *msg, struct envoy_type_matcher_v3_RegexMatchAndSubstitute* value) {
4608
4636
  const upb_MiniTableField field = {35, UPB_SIZE(116, 40), UPB_SIZE(-93, -25), 19, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4609
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4637
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4610
4638
  }
4611
4639
  UPB_INLINE struct envoy_type_matcher_v3_RegexMatchAndSubstitute* envoy_config_route_v3_RouteAction_mutable_host_rewrite_path_regex(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
4612
4640
  struct envoy_type_matcher_v3_RegexMatchAndSubstitute* sub = (struct envoy_type_matcher_v3_RegexMatchAndSubstitute*)envoy_config_route_v3_RouteAction_host_rewrite_path_regex(msg);
@@ -4618,7 +4646,7 @@ UPB_INLINE struct envoy_type_matcher_v3_RegexMatchAndSubstitute* envoy_config_ro
4618
4646
  }
4619
4647
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_max_stream_duration(envoy_config_route_v3_RouteAction *msg, envoy_config_route_v3_RouteAction_MaxStreamDuration* value) {
4620
4648
  const upb_MiniTableField field = {36, UPB_SIZE(96, 224), 77, 20, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4621
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4649
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4622
4650
  }
4623
4651
  UPB_INLINE struct envoy_config_route_v3_RouteAction_MaxStreamDuration* envoy_config_route_v3_RouteAction_mutable_max_stream_duration(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
4624
4652
  struct envoy_config_route_v3_RouteAction_MaxStreamDuration* sub = (struct envoy_config_route_v3_RouteAction_MaxStreamDuration*)envoy_config_route_v3_RouteAction_max_stream_duration(msg);
@@ -4630,15 +4658,15 @@ UPB_INLINE struct envoy_config_route_v3_RouteAction_MaxStreamDuration* envoy_con
4630
4658
  }
4631
4659
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_cluster_specifier_plugin(envoy_config_route_v3_RouteAction *msg, upb_StringView value) {
4632
4660
  const upb_MiniTableField field = {37, UPB_SIZE(124, 56), UPB_SIZE(-105, -33), kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4633
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4661
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4634
4662
  }
4635
4663
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_append_x_forwarded_host(envoy_config_route_v3_RouteAction *msg, bool value) {
4636
4664
  const upb_MiniTableField field = {38, UPB_SIZE(100, 28), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4637
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4665
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4638
4666
  }
4639
4667
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_inline_cluster_specifier_plugin(envoy_config_route_v3_RouteAction *msg, envoy_config_route_v3_ClusterSpecifierPlugin* value) {
4640
4668
  const upb_MiniTableField field = {39, UPB_SIZE(124, 56), UPB_SIZE(-105, -33), 21, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4641
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4669
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4642
4670
  }
4643
4671
  UPB_INLINE struct envoy_config_route_v3_ClusterSpecifierPlugin* envoy_config_route_v3_RouteAction_mutable_inline_cluster_specifier_plugin(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
4644
4672
  struct envoy_config_route_v3_ClusterSpecifierPlugin* sub = (struct envoy_config_route_v3_ClusterSpecifierPlugin*)envoy_config_route_v3_RouteAction_inline_cluster_specifier_plugin(msg);
@@ -4650,7 +4678,7 @@ UPB_INLINE struct envoy_config_route_v3_ClusterSpecifierPlugin* envoy_config_rou
4650
4678
  }
4651
4679
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_early_data_policy(envoy_config_route_v3_RouteAction *msg, struct envoy_config_core_v3_TypedExtensionConfig* value) {
4652
4680
  const upb_MiniTableField field = {40, UPB_SIZE(108, 232), 78, 22, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4653
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4681
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4654
4682
  }
4655
4683
  UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_route_v3_RouteAction_mutable_early_data_policy(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
4656
4684
  struct envoy_config_core_v3_TypedExtensionConfig* sub = (struct envoy_config_core_v3_TypedExtensionConfig*)envoy_config_route_v3_RouteAction_early_data_policy(msg);
@@ -4662,7 +4690,7 @@ UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_route_
4662
4690
  }
4663
4691
  UPB_INLINE void envoy_config_route_v3_RouteAction_set_path_rewrite_policy(envoy_config_route_v3_RouteAction *msg, struct envoy_config_core_v3_TypedExtensionConfig* value) {
4664
4692
  const upb_MiniTableField field = {41, UPB_SIZE(112, 240), 79, 23, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4665
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4693
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4666
4694
  }
4667
4695
  UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_route_v3_RouteAction_mutable_path_rewrite_policy(envoy_config_route_v3_RouteAction* msg, upb_Arena* arena) {
4668
4696
  struct envoy_config_core_v3_TypedExtensionConfig* sub = (struct envoy_config_core_v3_TypedExtensionConfig*)envoy_config_route_v3_RouteAction_path_rewrite_policy(msg);
@@ -4710,13 +4738,13 @@ UPB_INLINE char* envoy_config_route_v3_RouteAction_RequestMirrorPolicy_serialize
4710
4738
  return ptr;
4711
4739
  }
4712
4740
  UPB_INLINE void envoy_config_route_v3_RouteAction_RequestMirrorPolicy_clear_cluster(envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg) {
4713
- const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4741
+ const upb_MiniTableField field = {1, UPB_SIZE(24, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4714
4742
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4715
4743
  }
4716
4744
  UPB_INLINE upb_StringView envoy_config_route_v3_RouteAction_RequestMirrorPolicy_cluster(const envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg) {
4717
4745
  upb_StringView default_val = upb_StringView_FromString("");
4718
4746
  upb_StringView ret;
4719
- const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4747
+ const upb_MiniTableField field = {1, UPB_SIZE(24, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4720
4748
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4721
4749
  &default_val, &ret);
4722
4750
  return ret;
@@ -4754,25 +4782,37 @@ UPB_INLINE bool envoy_config_route_v3_RouteAction_RequestMirrorPolicy_has_trace_
4754
4782
  return upb_Message_HasBaseField(UPB_UPCAST(msg), &field);
4755
4783
  }
4756
4784
  UPB_INLINE void envoy_config_route_v3_RouteAction_RequestMirrorPolicy_clear_cluster_header(envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg) {
4757
- const upb_MiniTableField field = {5, UPB_SIZE(28, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4785
+ const upb_MiniTableField field = {5, UPB_SIZE(32, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4758
4786
  upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4759
4787
  }
4760
4788
  UPB_INLINE upb_StringView envoy_config_route_v3_RouteAction_RequestMirrorPolicy_cluster_header(const envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg) {
4761
4789
  upb_StringView default_val = upb_StringView_FromString("");
4762
4790
  upb_StringView ret;
4763
- const upb_MiniTableField field = {5, UPB_SIZE(28, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4791
+ const upb_MiniTableField field = {5, UPB_SIZE(32, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4792
+ _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4793
+ &default_val, &ret);
4794
+ return ret;
4795
+ }
4796
+ UPB_INLINE void envoy_config_route_v3_RouteAction_RequestMirrorPolicy_clear_disable_shadow_host_suffix_append(envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg) {
4797
+ const upb_MiniTableField field = {6, UPB_SIZE(20, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4798
+ upb_Message_ClearBaseField(UPB_UPCAST(msg), &field);
4799
+ }
4800
+ UPB_INLINE bool envoy_config_route_v3_RouteAction_RequestMirrorPolicy_disable_shadow_host_suffix_append(const envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg) {
4801
+ bool default_val = false;
4802
+ bool ret;
4803
+ const upb_MiniTableField field = {6, UPB_SIZE(20, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4764
4804
  _upb_Message_GetNonExtensionField(UPB_UPCAST(msg), &field,
4765
4805
  &default_val, &ret);
4766
4806
  return ret;
4767
4807
  }
4768
4808
 
4769
4809
  UPB_INLINE void envoy_config_route_v3_RouteAction_RequestMirrorPolicy_set_cluster(envoy_config_route_v3_RouteAction_RequestMirrorPolicy *msg, upb_StringView value) {
4770
- const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4771
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4810
+ const upb_MiniTableField field = {1, UPB_SIZE(24, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4811
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4772
4812
  }
4773
4813
  UPB_INLINE void envoy_config_route_v3_RouteAction_RequestMirrorPolicy_set_runtime_fraction(envoy_config_route_v3_RouteAction_RequestMirrorPolicy *msg, struct envoy_config_core_v3_RuntimeFractionalPercent* value) {
4774
4814
  const upb_MiniTableField field = {3, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4775
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4815
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4776
4816
  }
4777
4817
  UPB_INLINE struct envoy_config_core_v3_RuntimeFractionalPercent* envoy_config_route_v3_RouteAction_RequestMirrorPolicy_mutable_runtime_fraction(envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg, upb_Arena* arena) {
4778
4818
  struct envoy_config_core_v3_RuntimeFractionalPercent* sub = (struct envoy_config_core_v3_RuntimeFractionalPercent*)envoy_config_route_v3_RouteAction_RequestMirrorPolicy_runtime_fraction(msg);
@@ -4784,7 +4824,7 @@ UPB_INLINE struct envoy_config_core_v3_RuntimeFractionalPercent* envoy_config_ro
4784
4824
  }
4785
4825
  UPB_INLINE void envoy_config_route_v3_RouteAction_RequestMirrorPolicy_set_trace_sampled(envoy_config_route_v3_RouteAction_RequestMirrorPolicy *msg, struct google_protobuf_BoolValue* value) {
4786
4826
  const upb_MiniTableField field = {4, UPB_SIZE(16, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4787
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4827
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4788
4828
  }
4789
4829
  UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RouteAction_RequestMirrorPolicy_mutable_trace_sampled(envoy_config_route_v3_RouteAction_RequestMirrorPolicy* msg, upb_Arena* arena) {
4790
4830
  struct google_protobuf_BoolValue* sub = (struct google_protobuf_BoolValue*)envoy_config_route_v3_RouteAction_RequestMirrorPolicy_trace_sampled(msg);
@@ -4795,8 +4835,12 @@ UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RouteAction_R
4795
4835
  return sub;
4796
4836
  }
4797
4837
  UPB_INLINE void envoy_config_route_v3_RouteAction_RequestMirrorPolicy_set_cluster_header(envoy_config_route_v3_RouteAction_RequestMirrorPolicy *msg, upb_StringView value) {
4798
- const upb_MiniTableField field = {5, UPB_SIZE(28, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4799
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4838
+ const upb_MiniTableField field = {5, UPB_SIZE(32, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
4839
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4840
+ }
4841
+ UPB_INLINE void envoy_config_route_v3_RouteAction_RequestMirrorPolicy_set_disable_shadow_host_suffix_append(envoy_config_route_v3_RouteAction_RequestMirrorPolicy *msg, bool value) {
4842
+ const upb_MiniTableField field = {6, UPB_SIZE(20, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4843
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4800
4844
  }
4801
4845
 
4802
4846
  /* envoy.config.route.v3.RouteAction.HashPolicy */
@@ -4943,7 +4987,7 @@ UPB_INLINE bool envoy_config_route_v3_RouteAction_HashPolicy_has_filter_state(co
4943
4987
 
4944
4988
  UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_set_header(envoy_config_route_v3_RouteAction_HashPolicy *msg, envoy_config_route_v3_RouteAction_HashPolicy_Header* value) {
4945
4989
  const upb_MiniTableField field = {1, 16, -13, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4946
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
4990
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4947
4991
  }
4948
4992
  UPB_INLINE struct envoy_config_route_v3_RouteAction_HashPolicy_Header* envoy_config_route_v3_RouteAction_HashPolicy_mutable_header(envoy_config_route_v3_RouteAction_HashPolicy* msg, upb_Arena* arena) {
4949
4993
  struct envoy_config_route_v3_RouteAction_HashPolicy_Header* sub = (struct envoy_config_route_v3_RouteAction_HashPolicy_Header*)envoy_config_route_v3_RouteAction_HashPolicy_header(msg);
@@ -4955,7 +4999,7 @@ UPB_INLINE struct envoy_config_route_v3_RouteAction_HashPolicy_Header* envoy_con
4955
4999
  }
4956
5000
  UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_set_cookie(envoy_config_route_v3_RouteAction_HashPolicy *msg, envoy_config_route_v3_RouteAction_HashPolicy_Cookie* value) {
4957
5001
  const upb_MiniTableField field = {2, 16, -13, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4958
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5002
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4959
5003
  }
4960
5004
  UPB_INLINE struct envoy_config_route_v3_RouteAction_HashPolicy_Cookie* envoy_config_route_v3_RouteAction_HashPolicy_mutable_cookie(envoy_config_route_v3_RouteAction_HashPolicy* msg, upb_Arena* arena) {
4961
5005
  struct envoy_config_route_v3_RouteAction_HashPolicy_Cookie* sub = (struct envoy_config_route_v3_RouteAction_HashPolicy_Cookie*)envoy_config_route_v3_RouteAction_HashPolicy_cookie(msg);
@@ -4967,7 +5011,7 @@ UPB_INLINE struct envoy_config_route_v3_RouteAction_HashPolicy_Cookie* envoy_con
4967
5011
  }
4968
5012
  UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_set_connection_properties(envoy_config_route_v3_RouteAction_HashPolicy *msg, envoy_config_route_v3_RouteAction_HashPolicy_ConnectionProperties* value) {
4969
5013
  const upb_MiniTableField field = {3, 16, -13, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4970
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5014
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4971
5015
  }
4972
5016
  UPB_INLINE struct envoy_config_route_v3_RouteAction_HashPolicy_ConnectionProperties* envoy_config_route_v3_RouteAction_HashPolicy_mutable_connection_properties(envoy_config_route_v3_RouteAction_HashPolicy* msg, upb_Arena* arena) {
4973
5017
  struct envoy_config_route_v3_RouteAction_HashPolicy_ConnectionProperties* sub = (struct envoy_config_route_v3_RouteAction_HashPolicy_ConnectionProperties*)envoy_config_route_v3_RouteAction_HashPolicy_connection_properties(msg);
@@ -4979,11 +5023,11 @@ UPB_INLINE struct envoy_config_route_v3_RouteAction_HashPolicy_ConnectionPropert
4979
5023
  }
4980
5024
  UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_set_terminal(envoy_config_route_v3_RouteAction_HashPolicy *msg, bool value) {
4981
5025
  const upb_MiniTableField field = {4, 8, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
4982
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5026
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4983
5027
  }
4984
5028
  UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_set_query_parameter(envoy_config_route_v3_RouteAction_HashPolicy *msg, envoy_config_route_v3_RouteAction_HashPolicy_QueryParameter* value) {
4985
5029
  const upb_MiniTableField field = {5, 16, -13, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4986
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5030
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4987
5031
  }
4988
5032
  UPB_INLINE struct envoy_config_route_v3_RouteAction_HashPolicy_QueryParameter* envoy_config_route_v3_RouteAction_HashPolicy_mutable_query_parameter(envoy_config_route_v3_RouteAction_HashPolicy* msg, upb_Arena* arena) {
4989
5033
  struct envoy_config_route_v3_RouteAction_HashPolicy_QueryParameter* sub = (struct envoy_config_route_v3_RouteAction_HashPolicy_QueryParameter*)envoy_config_route_v3_RouteAction_HashPolicy_query_parameter(msg);
@@ -4995,7 +5039,7 @@ UPB_INLINE struct envoy_config_route_v3_RouteAction_HashPolicy_QueryParameter* e
4995
5039
  }
4996
5040
  UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_set_filter_state(envoy_config_route_v3_RouteAction_HashPolicy *msg, envoy_config_route_v3_RouteAction_HashPolicy_FilterState* value) {
4997
5041
  const upb_MiniTableField field = {6, 16, -13, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
4998
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5042
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
4999
5043
  }
5000
5044
  UPB_INLINE struct envoy_config_route_v3_RouteAction_HashPolicy_FilterState* envoy_config_route_v3_RouteAction_HashPolicy_mutable_filter_state(envoy_config_route_v3_RouteAction_HashPolicy* msg, upb_Arena* arena) {
5001
5045
  struct envoy_config_route_v3_RouteAction_HashPolicy_FilterState* sub = (struct envoy_config_route_v3_RouteAction_HashPolicy_FilterState*)envoy_config_route_v3_RouteAction_HashPolicy_filter_state(msg);
@@ -5073,11 +5117,11 @@ UPB_INLINE bool envoy_config_route_v3_RouteAction_HashPolicy_Header_has_regex_re
5073
5117
 
5074
5118
  UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_Header_set_header_name(envoy_config_route_v3_RouteAction_HashPolicy_Header *msg, upb_StringView value) {
5075
5119
  const upb_MiniTableField field = {1, 16, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5076
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5120
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5077
5121
  }
5078
5122
  UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_Header_set_regex_rewrite(envoy_config_route_v3_RouteAction_HashPolicy_Header *msg, struct envoy_type_matcher_v3_RegexMatchAndSubstitute* value) {
5079
5123
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5080
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5124
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5081
5125
  }
5082
5126
  UPB_INLINE struct envoy_type_matcher_v3_RegexMatchAndSubstitute* envoy_config_route_v3_RouteAction_HashPolicy_Header_mutable_regex_rewrite(envoy_config_route_v3_RouteAction_HashPolicy_Header* msg, upb_Arena* arena) {
5083
5127
  struct envoy_type_matcher_v3_RegexMatchAndSubstitute* sub = (struct envoy_type_matcher_v3_RegexMatchAndSubstitute*)envoy_config_route_v3_RouteAction_HashPolicy_Header_regex_rewrite(msg);
@@ -5151,11 +5195,11 @@ UPB_INLINE upb_StringView envoy_config_route_v3_RouteAction_HashPolicy_CookieAtt
5151
5195
 
5152
5196
  UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_CookieAttribute_set_name(envoy_config_route_v3_RouteAction_HashPolicy_CookieAttribute *msg, upb_StringView value) {
5153
5197
  const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5154
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5198
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5155
5199
  }
5156
5200
  UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_CookieAttribute_set_value(envoy_config_route_v3_RouteAction_HashPolicy_CookieAttribute *msg, upb_StringView value) {
5157
5201
  const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5158
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5202
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5159
5203
  }
5160
5204
 
5161
5205
  /* envoy.config.route.v3.RouteAction.HashPolicy.Cookie */
@@ -5269,11 +5313,11 @@ UPB_INLINE upb_Array* _envoy_config_route_v3_RouteAction_HashPolicy_Cookie_attri
5269
5313
 
5270
5314
  UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_Cookie_set_name(envoy_config_route_v3_RouteAction_HashPolicy_Cookie *msg, upb_StringView value) {
5271
5315
  const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5272
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5316
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5273
5317
  }
5274
5318
  UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_Cookie_set_ttl(envoy_config_route_v3_RouteAction_HashPolicy_Cookie *msg, struct google_protobuf_Duration* value) {
5275
5319
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5276
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5320
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5277
5321
  }
5278
5322
  UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_HashPolicy_Cookie_mutable_ttl(envoy_config_route_v3_RouteAction_HashPolicy_Cookie* msg, upb_Arena* arena) {
5279
5323
  struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_route_v3_RouteAction_HashPolicy_Cookie_ttl(msg);
@@ -5285,7 +5329,7 @@ UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_Ha
5285
5329
  }
5286
5330
  UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_Cookie_set_path(envoy_config_route_v3_RouteAction_HashPolicy_Cookie *msg, upb_StringView value) {
5287
5331
  const upb_MiniTableField field = {3, UPB_SIZE(28, 40), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5288
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5332
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5289
5333
  }
5290
5334
  UPB_INLINE envoy_config_route_v3_RouteAction_HashPolicy_CookieAttribute** envoy_config_route_v3_RouteAction_HashPolicy_Cookie_mutable_attributes(envoy_config_route_v3_RouteAction_HashPolicy_Cookie* msg, size_t* size) {
5291
5335
  upb_MiniTableField field = {4, UPB_SIZE(16, 56), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
@@ -5369,7 +5413,7 @@ UPB_INLINE bool envoy_config_route_v3_RouteAction_HashPolicy_ConnectionPropertie
5369
5413
 
5370
5414
  UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_ConnectionProperties_set_source_ip(envoy_config_route_v3_RouteAction_HashPolicy_ConnectionProperties *msg, bool value) {
5371
5415
  const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
5372
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5416
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5373
5417
  }
5374
5418
 
5375
5419
  /* envoy.config.route.v3.RouteAction.HashPolicy.QueryParameter */
@@ -5423,7 +5467,7 @@ UPB_INLINE upb_StringView envoy_config_route_v3_RouteAction_HashPolicy_QueryPara
5423
5467
 
5424
5468
  UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_QueryParameter_set_name(envoy_config_route_v3_RouteAction_HashPolicy_QueryParameter *msg, upb_StringView value) {
5425
5469
  const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5426
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5470
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5427
5471
  }
5428
5472
 
5429
5473
  /* envoy.config.route.v3.RouteAction.HashPolicy.FilterState */
@@ -5477,7 +5521,7 @@ UPB_INLINE upb_StringView envoy_config_route_v3_RouteAction_HashPolicy_FilterSta
5477
5521
 
5478
5522
  UPB_INLINE void envoy_config_route_v3_RouteAction_HashPolicy_FilterState_set_key(envoy_config_route_v3_RouteAction_HashPolicy_FilterState *msg, upb_StringView value) {
5479
5523
  const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5480
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5524
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5481
5525
  }
5482
5526
 
5483
5527
  /* envoy.config.route.v3.RouteAction.UpgradeConfig */
@@ -5563,11 +5607,11 @@ UPB_INLINE bool envoy_config_route_v3_RouteAction_UpgradeConfig_has_connect_conf
5563
5607
 
5564
5608
  UPB_INLINE void envoy_config_route_v3_RouteAction_UpgradeConfig_set_upgrade_type(envoy_config_route_v3_RouteAction_UpgradeConfig *msg, upb_StringView value) {
5565
5609
  const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
5566
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5610
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5567
5611
  }
5568
5612
  UPB_INLINE void envoy_config_route_v3_RouteAction_UpgradeConfig_set_enabled(envoy_config_route_v3_RouteAction_UpgradeConfig *msg, struct google_protobuf_BoolValue* value) {
5569
5613
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5570
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5614
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5571
5615
  }
5572
5616
  UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RouteAction_UpgradeConfig_mutable_enabled(envoy_config_route_v3_RouteAction_UpgradeConfig* msg, upb_Arena* arena) {
5573
5617
  struct google_protobuf_BoolValue* sub = (struct google_protobuf_BoolValue*)envoy_config_route_v3_RouteAction_UpgradeConfig_enabled(msg);
@@ -5579,7 +5623,7 @@ UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RouteAction_U
5579
5623
  }
5580
5624
  UPB_INLINE void envoy_config_route_v3_RouteAction_UpgradeConfig_set_connect_config(envoy_config_route_v3_RouteAction_UpgradeConfig *msg, envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig* value) {
5581
5625
  const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5582
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5626
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5583
5627
  }
5584
5628
  UPB_INLINE struct envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig* envoy_config_route_v3_RouteAction_UpgradeConfig_mutable_connect_config(envoy_config_route_v3_RouteAction_UpgradeConfig* msg, upb_Arena* arena) {
5585
5629
  struct envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig* sub = (struct envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig*)envoy_config_route_v3_RouteAction_UpgradeConfig_connect_config(msg);
@@ -5657,7 +5701,7 @@ UPB_INLINE bool envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig_al
5657
5701
 
5658
5702
  UPB_INLINE void envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig_set_proxy_protocol_config(envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig *msg, struct envoy_config_core_v3_ProxyProtocolConfig* value) {
5659
5703
  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)};
5660
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5704
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5661
5705
  }
5662
5706
  UPB_INLINE struct envoy_config_core_v3_ProxyProtocolConfig* envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig_mutable_proxy_protocol_config(envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig* msg, upb_Arena* arena) {
5663
5707
  struct envoy_config_core_v3_ProxyProtocolConfig* sub = (struct envoy_config_core_v3_ProxyProtocolConfig*)envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig_proxy_protocol_config(msg);
@@ -5669,7 +5713,7 @@ UPB_INLINE struct envoy_config_core_v3_ProxyProtocolConfig* envoy_config_route_v
5669
5713
  }
5670
5714
  UPB_INLINE void envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig_set_allow_post(envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig *msg, bool value) {
5671
5715
  const upb_MiniTableField field = {2, UPB_SIZE(16, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
5672
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5716
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5673
5717
  }
5674
5718
 
5675
5719
  /* envoy.config.route.v3.RouteAction.MaxStreamDuration */
@@ -5759,7 +5803,7 @@ UPB_INLINE bool envoy_config_route_v3_RouteAction_MaxStreamDuration_has_grpc_tim
5759
5803
 
5760
5804
  UPB_INLINE void envoy_config_route_v3_RouteAction_MaxStreamDuration_set_max_stream_duration(envoy_config_route_v3_RouteAction_MaxStreamDuration *msg, struct google_protobuf_Duration* value) {
5761
5805
  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)};
5762
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5806
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5763
5807
  }
5764
5808
  UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_MaxStreamDuration_mutable_max_stream_duration(envoy_config_route_v3_RouteAction_MaxStreamDuration* msg, upb_Arena* arena) {
5765
5809
  struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_route_v3_RouteAction_MaxStreamDuration_max_stream_duration(msg);
@@ -5771,7 +5815,7 @@ UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_Ma
5771
5815
  }
5772
5816
  UPB_INLINE void envoy_config_route_v3_RouteAction_MaxStreamDuration_set_grpc_timeout_header_max(envoy_config_route_v3_RouteAction_MaxStreamDuration *msg, struct google_protobuf_Duration* value) {
5773
5817
  const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5774
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5818
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5775
5819
  }
5776
5820
  UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_MaxStreamDuration_mutable_grpc_timeout_header_max(envoy_config_route_v3_RouteAction_MaxStreamDuration* msg, upb_Arena* arena) {
5777
5821
  struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_route_v3_RouteAction_MaxStreamDuration_grpc_timeout_header_max(msg);
@@ -5783,7 +5827,7 @@ UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_Ma
5783
5827
  }
5784
5828
  UPB_INLINE void envoy_config_route_v3_RouteAction_MaxStreamDuration_set_grpc_timeout_header_offset(envoy_config_route_v3_RouteAction_MaxStreamDuration *msg, struct google_protobuf_Duration* value) {
5785
5829
  const upb_MiniTableField field = {3, UPB_SIZE(20, 32), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
5786
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
5830
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
5787
5831
  }
5788
5832
  UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RouteAction_MaxStreamDuration_mutable_grpc_timeout_header_offset(envoy_config_route_v3_RouteAction_MaxStreamDuration* msg, upb_Arena* arena) {
5789
5833
  struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_route_v3_RouteAction_MaxStreamDuration_grpc_timeout_header_offset(msg);
@@ -6113,11 +6157,11 @@ UPB_INLINE bool envoy_config_route_v3_RetryPolicy_has_per_try_idle_timeout(const
6113
6157
 
6114
6158
  UPB_INLINE void envoy_config_route_v3_RetryPolicy_set_retry_on(envoy_config_route_v3_RetryPolicy *msg, upb_StringView value) {
6115
6159
  const upb_MiniTableField field = {1, UPB_SIZE(56, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6116
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6160
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6117
6161
  }
6118
6162
  UPB_INLINE void envoy_config_route_v3_RetryPolicy_set_num_retries(envoy_config_route_v3_RetryPolicy *msg, struct google_protobuf_UInt32Value* value) {
6119
6163
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6120
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6164
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6121
6165
  }
6122
6166
  UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_RetryPolicy_mutable_num_retries(envoy_config_route_v3_RetryPolicy* msg, upb_Arena* arena) {
6123
6167
  struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_route_v3_RetryPolicy_num_retries(msg);
@@ -6129,7 +6173,7 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_RetryPolicy
6129
6173
  }
6130
6174
  UPB_INLINE void envoy_config_route_v3_RetryPolicy_set_per_try_timeout(envoy_config_route_v3_RetryPolicy *msg, struct google_protobuf_Duration* value) {
6131
6175
  const upb_MiniTableField field = {3, UPB_SIZE(16, 40), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6132
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6176
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6133
6177
  }
6134
6178
  UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RetryPolicy_mutable_per_try_timeout(envoy_config_route_v3_RetryPolicy* msg, upb_Arena* arena) {
6135
6179
  struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_route_v3_RetryPolicy_per_try_timeout(msg);
@@ -6141,7 +6185,7 @@ UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RetryPolicy_mu
6141
6185
  }
6142
6186
  UPB_INLINE void envoy_config_route_v3_RetryPolicy_set_retry_priority(envoy_config_route_v3_RetryPolicy *msg, envoy_config_route_v3_RetryPolicy_RetryPriority* value) {
6143
6187
  const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6144
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6188
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6145
6189
  }
6146
6190
  UPB_INLINE struct envoy_config_route_v3_RetryPolicy_RetryPriority* envoy_config_route_v3_RetryPolicy_mutable_retry_priority(envoy_config_route_v3_RetryPolicy* msg, upb_Arena* arena) {
6147
6191
  struct envoy_config_route_v3_RetryPolicy_RetryPriority* sub = (struct envoy_config_route_v3_RetryPolicy_RetryPriority*)envoy_config_route_v3_RetryPolicy_retry_priority(msg);
@@ -6183,7 +6227,7 @@ UPB_INLINE struct envoy_config_route_v3_RetryPolicy_RetryHostPredicate* envoy_co
6183
6227
  }
6184
6228
  UPB_INLINE void envoy_config_route_v3_RetryPolicy_set_host_selection_retry_max_attempts(envoy_config_route_v3_RetryPolicy *msg, int64_t value) {
6185
6229
  const upb_MiniTableField field = {6, 64, 0, kUpb_NoSub, 3, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_8Byte << kUpb_FieldRep_Shift)};
6186
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6230
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6187
6231
  }
6188
6232
  UPB_INLINE uint32_t* envoy_config_route_v3_RetryPolicy_mutable_retriable_status_codes(envoy_config_route_v3_RetryPolicy* msg, size_t* size) {
6189
6233
  upb_MiniTableField field = {7, UPB_SIZE(28, 72), 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Array | (int)kUpb_LabelFlags_IsPacked | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
@@ -6215,7 +6259,7 @@ UPB_INLINE bool envoy_config_route_v3_RetryPolicy_add_retriable_status_codes(env
6215
6259
  }
6216
6260
  UPB_INLINE void envoy_config_route_v3_RetryPolicy_set_retry_back_off(envoy_config_route_v3_RetryPolicy *msg, envoy_config_route_v3_RetryPolicy_RetryBackOff* value) {
6217
6261
  const upb_MiniTableField field = {8, UPB_SIZE(32, 80), 67, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6218
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6262
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6219
6263
  }
6220
6264
  UPB_INLINE struct envoy_config_route_v3_RetryPolicy_RetryBackOff* envoy_config_route_v3_RetryPolicy_mutable_retry_back_off(envoy_config_route_v3_RetryPolicy* msg, upb_Arena* arena) {
6221
6265
  struct envoy_config_route_v3_RetryPolicy_RetryBackOff* sub = (struct envoy_config_route_v3_RetryPolicy_RetryBackOff*)envoy_config_route_v3_RetryPolicy_retry_back_off(msg);
@@ -6287,7 +6331,7 @@ UPB_INLINE struct envoy_config_route_v3_HeaderMatcher* envoy_config_route_v3_Ret
6287
6331
  }
6288
6332
  UPB_INLINE void envoy_config_route_v3_RetryPolicy_set_rate_limited_retry_back_off(envoy_config_route_v3_RetryPolicy *msg, envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff* value) {
6289
6333
  const upb_MiniTableField field = {11, UPB_SIZE(44, 104), 68, 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6290
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6334
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6291
6335
  }
6292
6336
  UPB_INLINE struct envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff* envoy_config_route_v3_RetryPolicy_mutable_rate_limited_retry_back_off(envoy_config_route_v3_RetryPolicy* msg, upb_Arena* arena) {
6293
6337
  struct envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff* sub = (struct envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff*)envoy_config_route_v3_RetryPolicy_rate_limited_retry_back_off(msg);
@@ -6329,7 +6373,7 @@ UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_route_
6329
6373
  }
6330
6374
  UPB_INLINE void envoy_config_route_v3_RetryPolicy_set_per_try_idle_timeout(envoy_config_route_v3_RetryPolicy *msg, struct google_protobuf_Duration* value) {
6331
6375
  const upb_MiniTableField field = {13, UPB_SIZE(52, 120), 69, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6332
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6376
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6333
6377
  }
6334
6378
  UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RetryPolicy_mutable_per_try_idle_timeout(envoy_config_route_v3_RetryPolicy* msg, upb_Arena* arena) {
6335
6379
  struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_route_v3_RetryPolicy_per_try_idle_timeout(msg);
@@ -6416,11 +6460,11 @@ UPB_INLINE bool envoy_config_route_v3_RetryPolicy_RetryPriority_has_typed_config
6416
6460
 
6417
6461
  UPB_INLINE void envoy_config_route_v3_RetryPolicy_RetryPriority_set_name(envoy_config_route_v3_RetryPolicy_RetryPriority *msg, upb_StringView value) {
6418
6462
  const upb_MiniTableField field = {1, 16, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6419
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6463
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6420
6464
  }
6421
6465
  UPB_INLINE void envoy_config_route_v3_RetryPolicy_RetryPriority_set_typed_config(envoy_config_route_v3_RetryPolicy_RetryPriority *msg, struct google_protobuf_Any* value) {
6422
6466
  const upb_MiniTableField field = {3, UPB_SIZE(12, 32), -9, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6423
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6467
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6424
6468
  }
6425
6469
  UPB_INLINE struct google_protobuf_Any* envoy_config_route_v3_RetryPolicy_RetryPriority_mutable_typed_config(envoy_config_route_v3_RetryPolicy_RetryPriority* msg, upb_Arena* arena) {
6426
6470
  struct google_protobuf_Any* sub = (struct google_protobuf_Any*)envoy_config_route_v3_RetryPolicy_RetryPriority_typed_config(msg);
@@ -6507,11 +6551,11 @@ UPB_INLINE bool envoy_config_route_v3_RetryPolicy_RetryHostPredicate_has_typed_c
6507
6551
 
6508
6552
  UPB_INLINE void envoy_config_route_v3_RetryPolicy_RetryHostPredicate_set_name(envoy_config_route_v3_RetryPolicy_RetryHostPredicate *msg, upb_StringView value) {
6509
6553
  const upb_MiniTableField field = {1, 16, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6510
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6554
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6511
6555
  }
6512
6556
  UPB_INLINE void envoy_config_route_v3_RetryPolicy_RetryHostPredicate_set_typed_config(envoy_config_route_v3_RetryPolicy_RetryHostPredicate *msg, struct google_protobuf_Any* value) {
6513
6557
  const upb_MiniTableField field = {3, UPB_SIZE(12, 32), -9, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6514
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6558
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6515
6559
  }
6516
6560
  UPB_INLINE struct google_protobuf_Any* envoy_config_route_v3_RetryPolicy_RetryHostPredicate_mutable_typed_config(envoy_config_route_v3_RetryPolicy_RetryHostPredicate* msg, upb_Arena* arena) {
6517
6561
  struct google_protobuf_Any* sub = (struct google_protobuf_Any*)envoy_config_route_v3_RetryPolicy_RetryHostPredicate_typed_config(msg);
@@ -6593,7 +6637,7 @@ UPB_INLINE bool envoy_config_route_v3_RetryPolicy_RetryBackOff_has_max_interval(
6593
6637
 
6594
6638
  UPB_INLINE void envoy_config_route_v3_RetryPolicy_RetryBackOff_set_base_interval(envoy_config_route_v3_RetryPolicy_RetryBackOff *msg, struct google_protobuf_Duration* value) {
6595
6639
  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)};
6596
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6640
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6597
6641
  }
6598
6642
  UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RetryPolicy_RetryBackOff_mutable_base_interval(envoy_config_route_v3_RetryPolicy_RetryBackOff* msg, upb_Arena* arena) {
6599
6643
  struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_route_v3_RetryPolicy_RetryBackOff_base_interval(msg);
@@ -6605,7 +6649,7 @@ UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RetryPolicy_Re
6605
6649
  }
6606
6650
  UPB_INLINE void envoy_config_route_v3_RetryPolicy_RetryBackOff_set_max_interval(envoy_config_route_v3_RetryPolicy_RetryBackOff *msg, struct google_protobuf_Duration* value) {
6607
6651
  const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6608
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6652
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6609
6653
  }
6610
6654
  UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RetryPolicy_RetryBackOff_mutable_max_interval(envoy_config_route_v3_RetryPolicy_RetryBackOff* msg, upb_Arena* arena) {
6611
6655
  struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_route_v3_RetryPolicy_RetryBackOff_max_interval(msg);
@@ -6679,11 +6723,11 @@ UPB_INLINE int32_t envoy_config_route_v3_RetryPolicy_ResetHeader_format(const en
6679
6723
 
6680
6724
  UPB_INLINE void envoy_config_route_v3_RetryPolicy_ResetHeader_set_name(envoy_config_route_v3_RetryPolicy_ResetHeader *msg, upb_StringView value) {
6681
6725
  const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
6682
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6726
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6683
6727
  }
6684
6728
  UPB_INLINE void envoy_config_route_v3_RetryPolicy_ResetHeader_set_format(envoy_config_route_v3_RetryPolicy_ResetHeader *msg, int32_t value) {
6685
6729
  const upb_MiniTableField field = {2, 8, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
6686
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6730
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6687
6731
  }
6688
6732
 
6689
6733
  /* envoy.config.route.v3.RetryPolicy.RateLimitedRetryBackOff */
@@ -6803,7 +6847,7 @@ UPB_INLINE struct envoy_config_route_v3_RetryPolicy_ResetHeader* envoy_config_ro
6803
6847
  }
6804
6848
  UPB_INLINE void envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff_set_max_interval(envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff *msg, struct google_protobuf_Duration* value) {
6805
6849
  const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 64, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6806
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6850
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6807
6851
  }
6808
6852
  UPB_INLINE struct google_protobuf_Duration* envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff_mutable_max_interval(envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff* msg, upb_Arena* arena) {
6809
6853
  struct google_protobuf_Duration* sub = (struct google_protobuf_Duration*)envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff_max_interval(msg);
@@ -6897,7 +6941,7 @@ UPB_INLINE bool envoy_config_route_v3_HedgePolicy_hedge_on_per_try_timeout(const
6897
6941
 
6898
6942
  UPB_INLINE void envoy_config_route_v3_HedgePolicy_set_initial_requests(envoy_config_route_v3_HedgePolicy *msg, struct google_protobuf_UInt32Value* value) {
6899
6943
  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)};
6900
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6944
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6901
6945
  }
6902
6946
  UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_HedgePolicy_mutable_initial_requests(envoy_config_route_v3_HedgePolicy* msg, upb_Arena* arena) {
6903
6947
  struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_route_v3_HedgePolicy_initial_requests(msg);
@@ -6909,7 +6953,7 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_HedgePolicy
6909
6953
  }
6910
6954
  UPB_INLINE void envoy_config_route_v3_HedgePolicy_set_additional_request_chance(envoy_config_route_v3_HedgePolicy *msg, struct envoy_type_v3_FractionalPercent* value) {
6911
6955
  const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
6912
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6956
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6913
6957
  }
6914
6958
  UPB_INLINE struct envoy_type_v3_FractionalPercent* envoy_config_route_v3_HedgePolicy_mutable_additional_request_chance(envoy_config_route_v3_HedgePolicy* msg, upb_Arena* arena) {
6915
6959
  struct envoy_type_v3_FractionalPercent* sub = (struct envoy_type_v3_FractionalPercent*)envoy_config_route_v3_HedgePolicy_additional_request_chance(msg);
@@ -6921,7 +6965,7 @@ UPB_INLINE struct envoy_type_v3_FractionalPercent* envoy_config_route_v3_HedgePo
6921
6965
  }
6922
6966
  UPB_INLINE void envoy_config_route_v3_HedgePolicy_set_hedge_on_per_try_timeout(envoy_config_route_v3_HedgePolicy *msg, bool value) {
6923
6967
  const upb_MiniTableField field = {3, UPB_SIZE(20, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
6924
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
6968
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
6925
6969
  }
6926
6970
 
6927
6971
  /* envoy.config.route.v3.RedirectAction */
@@ -7112,39 +7156,39 @@ UPB_INLINE bool envoy_config_route_v3_RedirectAction_has_regex_rewrite(const env
7112
7156
 
7113
7157
  UPB_INLINE void envoy_config_route_v3_RedirectAction_set_host_redirect(envoy_config_route_v3_RedirectAction *msg, upb_StringView value) {
7114
7158
  const upb_MiniTableField field = {1, UPB_SIZE(44, 64), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
7115
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
7159
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
7116
7160
  }
7117
7161
  UPB_INLINE void envoy_config_route_v3_RedirectAction_set_path_redirect(envoy_config_route_v3_RedirectAction *msg, upb_StringView value) {
7118
7162
  const upb_MiniTableField field = {2, UPB_SIZE(36, 48), -25, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
7119
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
7163
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
7120
7164
  }
7121
7165
  UPB_INLINE void envoy_config_route_v3_RedirectAction_set_response_code(envoy_config_route_v3_RedirectAction *msg, int32_t value) {
7122
7166
  const upb_MiniTableField field = {3, 8, 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
7123
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
7167
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
7124
7168
  }
7125
7169
  UPB_INLINE void envoy_config_route_v3_RedirectAction_set_https_redirect(envoy_config_route_v3_RedirectAction *msg, bool value) {
7126
7170
  const upb_MiniTableField field = {4, UPB_SIZE(28, 32), -17, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
7127
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
7171
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
7128
7172
  }
7129
7173
  UPB_INLINE void envoy_config_route_v3_RedirectAction_set_prefix_rewrite(envoy_config_route_v3_RedirectAction *msg, upb_StringView value) {
7130
7174
  const upb_MiniTableField field = {5, UPB_SIZE(36, 48), -25, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
7131
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
7175
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
7132
7176
  }
7133
7177
  UPB_INLINE void envoy_config_route_v3_RedirectAction_set_strip_query(envoy_config_route_v3_RedirectAction *msg, bool value) {
7134
7178
  const upb_MiniTableField field = {6, 12, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
7135
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
7179
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
7136
7180
  }
7137
7181
  UPB_INLINE void envoy_config_route_v3_RedirectAction_set_scheme_redirect(envoy_config_route_v3_RedirectAction *msg, upb_StringView value) {
7138
7182
  const upb_MiniTableField field = {7, UPB_SIZE(28, 32), -17, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
7139
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
7183
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
7140
7184
  }
7141
7185
  UPB_INLINE void envoy_config_route_v3_RedirectAction_set_port_redirect(envoy_config_route_v3_RedirectAction *msg, uint32_t value) {
7142
7186
  const upb_MiniTableField field = {8, 20, 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
7143
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
7187
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
7144
7188
  }
7145
7189
  UPB_INLINE void envoy_config_route_v3_RedirectAction_set_regex_rewrite(envoy_config_route_v3_RedirectAction *msg, struct envoy_type_matcher_v3_RegexMatchAndSubstitute* value) {
7146
7190
  const upb_MiniTableField field = {9, UPB_SIZE(36, 48), -25, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
7147
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
7191
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
7148
7192
  }
7149
7193
  UPB_INLINE struct envoy_type_matcher_v3_RegexMatchAndSubstitute* envoy_config_route_v3_RedirectAction_mutable_regex_rewrite(envoy_config_route_v3_RedirectAction* msg, upb_Arena* arena) {
7150
7194
  struct envoy_type_matcher_v3_RegexMatchAndSubstitute* sub = (struct envoy_type_matcher_v3_RegexMatchAndSubstitute*)envoy_config_route_v3_RedirectAction_regex_rewrite(msg);
@@ -7222,11 +7266,11 @@ UPB_INLINE bool envoy_config_route_v3_DirectResponseAction_has_body(const envoy_
7222
7266
 
7223
7267
  UPB_INLINE void envoy_config_route_v3_DirectResponseAction_set_status(envoy_config_route_v3_DirectResponseAction *msg, uint32_t value) {
7224
7268
  const upb_MiniTableField field = {1, 12, 0, kUpb_NoSub, 13, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
7225
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
7269
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
7226
7270
  }
7227
7271
  UPB_INLINE void envoy_config_route_v3_DirectResponseAction_set_body(envoy_config_route_v3_DirectResponseAction *msg, struct envoy_config_core_v3_DataSource* value) {
7228
7272
  const upb_MiniTableField field = {2, 16, 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
7229
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
7273
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
7230
7274
  }
7231
7275
  UPB_INLINE struct envoy_config_core_v3_DataSource* envoy_config_route_v3_DirectResponseAction_mutable_body(envoy_config_route_v3_DirectResponseAction* msg, upb_Arena* arena) {
7232
7276
  struct envoy_config_core_v3_DataSource* sub = (struct envoy_config_core_v3_DataSource*)envoy_config_route_v3_DirectResponseAction_body(msg);
@@ -7342,11 +7386,11 @@ UPB_INLINE bool envoy_config_route_v3_Decorator_has_propagate(const envoy_config
7342
7386
 
7343
7387
  UPB_INLINE void envoy_config_route_v3_Decorator_set_operation(envoy_config_route_v3_Decorator *msg, upb_StringView value) {
7344
7388
  const upb_MiniTableField field = {1, 16, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
7345
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
7389
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
7346
7390
  }
7347
7391
  UPB_INLINE void envoy_config_route_v3_Decorator_set_propagate(envoy_config_route_v3_Decorator *msg, struct google_protobuf_BoolValue* value) {
7348
7392
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
7349
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
7393
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
7350
7394
  }
7351
7395
  UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_Decorator_mutable_propagate(envoy_config_route_v3_Decorator* msg, upb_Arena* arena) {
7352
7396
  struct google_protobuf_BoolValue* sub = (struct google_protobuf_BoolValue*)envoy_config_route_v3_Decorator_propagate(msg);
@@ -7476,7 +7520,7 @@ UPB_INLINE upb_Array* _envoy_config_route_v3_Tracing_custom_tags_mutable_upb_arr
7476
7520
 
7477
7521
  UPB_INLINE void envoy_config_route_v3_Tracing_set_client_sampling(envoy_config_route_v3_Tracing *msg, struct envoy_type_v3_FractionalPercent* value) {
7478
7522
  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)};
7479
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
7523
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
7480
7524
  }
7481
7525
  UPB_INLINE struct envoy_type_v3_FractionalPercent* envoy_config_route_v3_Tracing_mutable_client_sampling(envoy_config_route_v3_Tracing* msg, upb_Arena* arena) {
7482
7526
  struct envoy_type_v3_FractionalPercent* sub = (struct envoy_type_v3_FractionalPercent*)envoy_config_route_v3_Tracing_client_sampling(msg);
@@ -7488,7 +7532,7 @@ UPB_INLINE struct envoy_type_v3_FractionalPercent* envoy_config_route_v3_Tracing
7488
7532
  }
7489
7533
  UPB_INLINE void envoy_config_route_v3_Tracing_set_random_sampling(envoy_config_route_v3_Tracing *msg, struct envoy_type_v3_FractionalPercent* value) {
7490
7534
  const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
7491
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
7535
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
7492
7536
  }
7493
7537
  UPB_INLINE struct envoy_type_v3_FractionalPercent* envoy_config_route_v3_Tracing_mutable_random_sampling(envoy_config_route_v3_Tracing* msg, upb_Arena* arena) {
7494
7538
  struct envoy_type_v3_FractionalPercent* sub = (struct envoy_type_v3_FractionalPercent*)envoy_config_route_v3_Tracing_random_sampling(msg);
@@ -7500,7 +7544,7 @@ UPB_INLINE struct envoy_type_v3_FractionalPercent* envoy_config_route_v3_Tracing
7500
7544
  }
7501
7545
  UPB_INLINE void envoy_config_route_v3_Tracing_set_overall_sampling(envoy_config_route_v3_Tracing *msg, struct envoy_type_v3_FractionalPercent* value) {
7502
7546
  const upb_MiniTableField field = {3, UPB_SIZE(20, 32), 66, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
7503
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
7547
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
7504
7548
  }
7505
7549
  UPB_INLINE struct envoy_type_v3_FractionalPercent* envoy_config_route_v3_Tracing_mutable_overall_sampling(envoy_config_route_v3_Tracing* msg, upb_Arena* arena) {
7506
7550
  struct envoy_type_v3_FractionalPercent* sub = (struct envoy_type_v3_FractionalPercent*)envoy_config_route_v3_Tracing_overall_sampling(msg);
@@ -7624,7 +7668,7 @@ UPB_INLINE upb_Array* _envoy_config_route_v3_VirtualCluster_headers_mutable_upb_
7624
7668
 
7625
7669
  UPB_INLINE void envoy_config_route_v3_VirtualCluster_set_name(envoy_config_route_v3_VirtualCluster *msg, upb_StringView value) {
7626
7670
  const upb_MiniTableField field = {2, UPB_SIZE(12, 8), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
7627
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
7671
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
7628
7672
  }
7629
7673
  UPB_INLINE envoy_config_route_v3_HeaderMatcher** envoy_config_route_v3_VirtualCluster_mutable_headers(envoy_config_route_v3_VirtualCluster* msg, size_t* size) {
7630
7674
  upb_MiniTableField field = {4, UPB_SIZE(8, 24), 0, 0, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
@@ -7772,7 +7816,7 @@ UPB_INLINE bool envoy_config_route_v3_RateLimit_has_limit(const envoy_config_rou
7772
7816
 
7773
7817
  UPB_INLINE void envoy_config_route_v3_RateLimit_set_stage(envoy_config_route_v3_RateLimit *msg, struct google_protobuf_UInt32Value* value) {
7774
7818
  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)};
7775
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
7819
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
7776
7820
  }
7777
7821
  UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_RateLimit_mutable_stage(envoy_config_route_v3_RateLimit* msg, upb_Arena* arena) {
7778
7822
  struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_route_v3_RateLimit_stage(msg);
@@ -7784,7 +7828,7 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_RateLimit_m
7784
7828
  }
7785
7829
  UPB_INLINE void envoy_config_route_v3_RateLimit_set_disable_key(envoy_config_route_v3_RateLimit *msg, upb_StringView value) {
7786
7830
  const upb_MiniTableField field = {2, 24, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
7787
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
7831
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
7788
7832
  }
7789
7833
  UPB_INLINE envoy_config_route_v3_RateLimit_Action** envoy_config_route_v3_RateLimit_mutable_actions(envoy_config_route_v3_RateLimit* msg, size_t* size) {
7790
7834
  upb_MiniTableField field = {3, UPB_SIZE(16, 40), 0, 1, 11, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
@@ -7818,7 +7862,7 @@ UPB_INLINE struct envoy_config_route_v3_RateLimit_Action* envoy_config_route_v3_
7818
7862
  }
7819
7863
  UPB_INLINE void envoy_config_route_v3_RateLimit_set_limit(envoy_config_route_v3_RateLimit *msg, envoy_config_route_v3_RateLimit_Override* value) {
7820
7864
  const upb_MiniTableField field = {4, UPB_SIZE(20, 48), 65, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
7821
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
7865
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
7822
7866
  }
7823
7867
  UPB_INLINE struct envoy_config_route_v3_RateLimit_Override* envoy_config_route_v3_RateLimit_mutable_limit(envoy_config_route_v3_RateLimit* msg, upb_Arena* arena) {
7824
7868
  struct envoy_config_route_v3_RateLimit_Override* sub = (struct envoy_config_route_v3_RateLimit_Override*)envoy_config_route_v3_RateLimit_limit(msg);
@@ -8063,7 +8107,7 @@ UPB_INLINE bool envoy_config_route_v3_RateLimit_Action_has_query_parameter_value
8063
8107
 
8064
8108
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_set_source_cluster(envoy_config_route_v3_RateLimit_Action *msg, envoy_config_route_v3_RateLimit_Action_SourceCluster* value) {
8065
8109
  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)};
8066
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
8110
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
8067
8111
  }
8068
8112
  UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_SourceCluster* envoy_config_route_v3_RateLimit_Action_mutable_source_cluster(envoy_config_route_v3_RateLimit_Action* msg, upb_Arena* arena) {
8069
8113
  struct envoy_config_route_v3_RateLimit_Action_SourceCluster* sub = (struct envoy_config_route_v3_RateLimit_Action_SourceCluster*)envoy_config_route_v3_RateLimit_Action_source_cluster(msg);
@@ -8075,7 +8119,7 @@ UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_SourceCluster* envoy_co
8075
8119
  }
8076
8120
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_set_destination_cluster(envoy_config_route_v3_RateLimit_Action *msg, envoy_config_route_v3_RateLimit_Action_DestinationCluster* value) {
8077
8121
  const upb_MiniTableField field = {2, UPB_SIZE(12, 16), -9, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
8078
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
8122
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
8079
8123
  }
8080
8124
  UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_DestinationCluster* envoy_config_route_v3_RateLimit_Action_mutable_destination_cluster(envoy_config_route_v3_RateLimit_Action* msg, upb_Arena* arena) {
8081
8125
  struct envoy_config_route_v3_RateLimit_Action_DestinationCluster* sub = (struct envoy_config_route_v3_RateLimit_Action_DestinationCluster*)envoy_config_route_v3_RateLimit_Action_destination_cluster(msg);
@@ -8087,7 +8131,7 @@ UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_DestinationCluster* env
8087
8131
  }
8088
8132
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_set_request_headers(envoy_config_route_v3_RateLimit_Action *msg, envoy_config_route_v3_RateLimit_Action_RequestHeaders* value) {
8089
8133
  const upb_MiniTableField field = {3, UPB_SIZE(12, 16), -9, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
8090
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
8134
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
8091
8135
  }
8092
8136
  UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_RequestHeaders* envoy_config_route_v3_RateLimit_Action_mutable_request_headers(envoy_config_route_v3_RateLimit_Action* msg, upb_Arena* arena) {
8093
8137
  struct envoy_config_route_v3_RateLimit_Action_RequestHeaders* sub = (struct envoy_config_route_v3_RateLimit_Action_RequestHeaders*)envoy_config_route_v3_RateLimit_Action_request_headers(msg);
@@ -8099,7 +8143,7 @@ UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_RequestHeaders* envoy_c
8099
8143
  }
8100
8144
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_set_remote_address(envoy_config_route_v3_RateLimit_Action *msg, envoy_config_route_v3_RateLimit_Action_RemoteAddress* value) {
8101
8145
  const upb_MiniTableField field = {4, UPB_SIZE(12, 16), -9, 3, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
8102
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
8146
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
8103
8147
  }
8104
8148
  UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_RemoteAddress* envoy_config_route_v3_RateLimit_Action_mutable_remote_address(envoy_config_route_v3_RateLimit_Action* msg, upb_Arena* arena) {
8105
8149
  struct envoy_config_route_v3_RateLimit_Action_RemoteAddress* sub = (struct envoy_config_route_v3_RateLimit_Action_RemoteAddress*)envoy_config_route_v3_RateLimit_Action_remote_address(msg);
@@ -8111,7 +8155,7 @@ UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_RemoteAddress* envoy_co
8111
8155
  }
8112
8156
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_set_generic_key(envoy_config_route_v3_RateLimit_Action *msg, envoy_config_route_v3_RateLimit_Action_GenericKey* value) {
8113
8157
  const upb_MiniTableField field = {5, UPB_SIZE(12, 16), -9, 4, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
8114
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
8158
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
8115
8159
  }
8116
8160
  UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_GenericKey* envoy_config_route_v3_RateLimit_Action_mutable_generic_key(envoy_config_route_v3_RateLimit_Action* msg, upb_Arena* arena) {
8117
8161
  struct envoy_config_route_v3_RateLimit_Action_GenericKey* sub = (struct envoy_config_route_v3_RateLimit_Action_GenericKey*)envoy_config_route_v3_RateLimit_Action_generic_key(msg);
@@ -8123,7 +8167,7 @@ UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_GenericKey* envoy_confi
8123
8167
  }
8124
8168
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_set_header_value_match(envoy_config_route_v3_RateLimit_Action *msg, envoy_config_route_v3_RateLimit_Action_HeaderValueMatch* value) {
8125
8169
  const upb_MiniTableField field = {6, UPB_SIZE(12, 16), -9, 5, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
8126
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
8170
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
8127
8171
  }
8128
8172
  UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_HeaderValueMatch* envoy_config_route_v3_RateLimit_Action_mutable_header_value_match(envoy_config_route_v3_RateLimit_Action* msg, upb_Arena* arena) {
8129
8173
  struct envoy_config_route_v3_RateLimit_Action_HeaderValueMatch* sub = (struct envoy_config_route_v3_RateLimit_Action_HeaderValueMatch*)envoy_config_route_v3_RateLimit_Action_header_value_match(msg);
@@ -8135,7 +8179,7 @@ UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_HeaderValueMatch* envoy
8135
8179
  }
8136
8180
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_set_dynamic_metadata(envoy_config_route_v3_RateLimit_Action *msg, envoy_config_route_v3_RateLimit_Action_DynamicMetaData* value) {
8137
8181
  const upb_MiniTableField field = {7, UPB_SIZE(12, 16), -9, 6, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
8138
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
8182
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
8139
8183
  }
8140
8184
  UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_DynamicMetaData* envoy_config_route_v3_RateLimit_Action_mutable_dynamic_metadata(envoy_config_route_v3_RateLimit_Action* msg, upb_Arena* arena) {
8141
8185
  struct envoy_config_route_v3_RateLimit_Action_DynamicMetaData* sub = (struct envoy_config_route_v3_RateLimit_Action_DynamicMetaData*)envoy_config_route_v3_RateLimit_Action_dynamic_metadata(msg);
@@ -8147,7 +8191,7 @@ UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_DynamicMetaData* envoy_
8147
8191
  }
8148
8192
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_set_metadata(envoy_config_route_v3_RateLimit_Action *msg, envoy_config_route_v3_RateLimit_Action_MetaData* value) {
8149
8193
  const upb_MiniTableField field = {8, UPB_SIZE(12, 16), -9, 7, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
8150
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
8194
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
8151
8195
  }
8152
8196
  UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_MetaData* envoy_config_route_v3_RateLimit_Action_mutable_metadata(envoy_config_route_v3_RateLimit_Action* msg, upb_Arena* arena) {
8153
8197
  struct envoy_config_route_v3_RateLimit_Action_MetaData* sub = (struct envoy_config_route_v3_RateLimit_Action_MetaData*)envoy_config_route_v3_RateLimit_Action_metadata(msg);
@@ -8159,7 +8203,7 @@ UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_MetaData* envoy_config_
8159
8203
  }
8160
8204
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_set_extension(envoy_config_route_v3_RateLimit_Action *msg, struct envoy_config_core_v3_TypedExtensionConfig* value) {
8161
8205
  const upb_MiniTableField field = {9, UPB_SIZE(12, 16), -9, 8, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
8162
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
8206
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
8163
8207
  }
8164
8208
  UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_route_v3_RateLimit_Action_mutable_extension(envoy_config_route_v3_RateLimit_Action* msg, upb_Arena* arena) {
8165
8209
  struct envoy_config_core_v3_TypedExtensionConfig* sub = (struct envoy_config_core_v3_TypedExtensionConfig*)envoy_config_route_v3_RateLimit_Action_extension(msg);
@@ -8171,7 +8215,7 @@ UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_route_
8171
8215
  }
8172
8216
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_set_masked_remote_address(envoy_config_route_v3_RateLimit_Action *msg, envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress* value) {
8173
8217
  const upb_MiniTableField field = {10, UPB_SIZE(12, 16), -9, 9, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
8174
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
8218
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
8175
8219
  }
8176
8220
  UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress* envoy_config_route_v3_RateLimit_Action_mutable_masked_remote_address(envoy_config_route_v3_RateLimit_Action* msg, upb_Arena* arena) {
8177
8221
  struct envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress* sub = (struct envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress*)envoy_config_route_v3_RateLimit_Action_masked_remote_address(msg);
@@ -8183,7 +8227,7 @@ UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress* en
8183
8227
  }
8184
8228
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_set_query_parameter_value_match(envoy_config_route_v3_RateLimit_Action *msg, envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch* value) {
8185
8229
  const upb_MiniTableField field = {11, UPB_SIZE(12, 16), -9, 10, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
8186
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
8230
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
8187
8231
  }
8188
8232
  UPB_INLINE struct envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch* envoy_config_route_v3_RateLimit_Action_mutable_query_parameter_value_match(envoy_config_route_v3_RateLimit_Action* msg, upb_Arena* arena) {
8189
8233
  struct envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch* sub = (struct envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch*)envoy_config_route_v3_RateLimit_Action_query_parameter_value_match(msg);
@@ -8345,15 +8389,15 @@ UPB_INLINE bool envoy_config_route_v3_RateLimit_Action_RequestHeaders_skip_if_ab
8345
8389
 
8346
8390
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_RequestHeaders_set_header_name(envoy_config_route_v3_RateLimit_Action_RequestHeaders *msg, upb_StringView value) {
8347
8391
  const upb_MiniTableField field = {1, UPB_SIZE(12, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
8348
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
8392
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
8349
8393
  }
8350
8394
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_RequestHeaders_set_descriptor_key(envoy_config_route_v3_RateLimit_Action_RequestHeaders *msg, upb_StringView value) {
8351
8395
  const upb_MiniTableField field = {2, UPB_SIZE(20, 32), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
8352
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
8396
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
8353
8397
  }
8354
8398
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_RequestHeaders_set_skip_if_absent(envoy_config_route_v3_RateLimit_Action_RequestHeaders *msg, bool value) {
8355
8399
  const upb_MiniTableField field = {3, 8, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
8356
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
8400
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
8357
8401
  }
8358
8402
 
8359
8403
  /* envoy.config.route.v3.RateLimit.Action.RemoteAddress */
@@ -8465,7 +8509,7 @@ UPB_INLINE bool envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress_has_v
8465
8509
 
8466
8510
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress_set_v4_prefix_mask_len(envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress *msg, struct google_protobuf_UInt32Value* value) {
8467
8511
  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)};
8468
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
8512
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
8469
8513
  }
8470
8514
  UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress_mutable_v4_prefix_mask_len(envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress* msg, upb_Arena* arena) {
8471
8515
  struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress_v4_prefix_mask_len(msg);
@@ -8477,7 +8521,7 @@ UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_RateLimit_A
8477
8521
  }
8478
8522
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress_set_v6_prefix_mask_len(envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress *msg, struct google_protobuf_UInt32Value* value) {
8479
8523
  const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 65, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
8480
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
8524
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
8481
8525
  }
8482
8526
  UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress_mutable_v6_prefix_mask_len(envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress* msg, upb_Arena* arena) {
8483
8527
  struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_route_v3_RateLimit_Action_MaskedRemoteAddress_v6_prefix_mask_len(msg);
@@ -8551,11 +8595,11 @@ UPB_INLINE upb_StringView envoy_config_route_v3_RateLimit_Action_GenericKey_desc
8551
8595
 
8552
8596
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_GenericKey_set_descriptor_value(envoy_config_route_v3_RateLimit_Action_GenericKey *msg, upb_StringView value) {
8553
8597
  const upb_MiniTableField field = {1, 8, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
8554
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
8598
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
8555
8599
  }
8556
8600
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_GenericKey_set_descriptor_key(envoy_config_route_v3_RateLimit_Action_GenericKey *msg, upb_StringView value) {
8557
8601
  const upb_MiniTableField field = {2, UPB_SIZE(16, 24), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
8558
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
8602
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
8559
8603
  }
8560
8604
 
8561
8605
  /* envoy.config.route.v3.RateLimit.Action.HeaderValueMatch */
@@ -8669,11 +8713,11 @@ UPB_INLINE upb_StringView envoy_config_route_v3_RateLimit_Action_HeaderValueMatc
8669
8713
 
8670
8714
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_HeaderValueMatch_set_descriptor_value(envoy_config_route_v3_RateLimit_Action_HeaderValueMatch *msg, upb_StringView value) {
8671
8715
  const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
8672
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
8716
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
8673
8717
  }
8674
8718
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_HeaderValueMatch_set_expect_match(envoy_config_route_v3_RateLimit_Action_HeaderValueMatch *msg, struct google_protobuf_BoolValue* value) {
8675
8719
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
8676
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
8720
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
8677
8721
  }
8678
8722
  UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RateLimit_Action_HeaderValueMatch_mutable_expect_match(envoy_config_route_v3_RateLimit_Action_HeaderValueMatch* msg, upb_Arena* arena) {
8679
8723
  struct google_protobuf_BoolValue* sub = (struct google_protobuf_BoolValue*)envoy_config_route_v3_RateLimit_Action_HeaderValueMatch_expect_match(msg);
@@ -8715,7 +8759,7 @@ UPB_INLINE struct envoy_config_route_v3_HeaderMatcher* envoy_config_route_v3_Rat
8715
8759
  }
8716
8760
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_HeaderValueMatch_set_descriptor_key(envoy_config_route_v3_RateLimit_Action_HeaderValueMatch *msg, upb_StringView value) {
8717
8761
  const upb_MiniTableField field = {4, UPB_SIZE(28, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
8718
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
8762
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
8719
8763
  }
8720
8764
 
8721
8765
  /* envoy.config.route.v3.RateLimit.Action.DynamicMetaData */
@@ -8797,11 +8841,11 @@ UPB_INLINE upb_StringView envoy_config_route_v3_RateLimit_Action_DynamicMetaData
8797
8841
 
8798
8842
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_DynamicMetaData_set_descriptor_key(envoy_config_route_v3_RateLimit_Action_DynamicMetaData *msg, upb_StringView value) {
8799
8843
  const upb_MiniTableField field = {1, 16, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
8800
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
8844
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
8801
8845
  }
8802
8846
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_DynamicMetaData_set_metadata_key(envoy_config_route_v3_RateLimit_Action_DynamicMetaData *msg, struct envoy_type_metadata_v3_MetadataKey* value) {
8803
8847
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
8804
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
8848
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
8805
8849
  }
8806
8850
  UPB_INLINE struct envoy_type_metadata_v3_MetadataKey* envoy_config_route_v3_RateLimit_Action_DynamicMetaData_mutable_metadata_key(envoy_config_route_v3_RateLimit_Action_DynamicMetaData* msg, upb_Arena* arena) {
8807
8851
  struct envoy_type_metadata_v3_MetadataKey* sub = (struct envoy_type_metadata_v3_MetadataKey*)envoy_config_route_v3_RateLimit_Action_DynamicMetaData_metadata_key(msg);
@@ -8813,7 +8857,7 @@ UPB_INLINE struct envoy_type_metadata_v3_MetadataKey* envoy_config_route_v3_Rate
8813
8857
  }
8814
8858
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_DynamicMetaData_set_default_value(envoy_config_route_v3_RateLimit_Action_DynamicMetaData *msg, upb_StringView value) {
8815
8859
  const upb_MiniTableField field = {3, UPB_SIZE(24, 40), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
8816
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
8860
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
8817
8861
  }
8818
8862
 
8819
8863
  /* envoy.config.route.v3.RateLimit.Action.MetaData */
@@ -8919,11 +8963,11 @@ UPB_INLINE bool envoy_config_route_v3_RateLimit_Action_MetaData_skip_if_absent(c
8919
8963
 
8920
8964
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_MetaData_set_descriptor_key(envoy_config_route_v3_RateLimit_Action_MetaData *msg, upb_StringView value) {
8921
8965
  const upb_MiniTableField field = {1, 24, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
8922
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
8966
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
8923
8967
  }
8924
8968
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_MetaData_set_metadata_key(envoy_config_route_v3_RateLimit_Action_MetaData *msg, struct envoy_type_metadata_v3_MetadataKey* value) {
8925
8969
  const upb_MiniTableField field = {2, UPB_SIZE(12, 40), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
8926
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
8970
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
8927
8971
  }
8928
8972
  UPB_INLINE struct envoy_type_metadata_v3_MetadataKey* envoy_config_route_v3_RateLimit_Action_MetaData_mutable_metadata_key(envoy_config_route_v3_RateLimit_Action_MetaData* msg, upb_Arena* arena) {
8929
8973
  struct envoy_type_metadata_v3_MetadataKey* sub = (struct envoy_type_metadata_v3_MetadataKey*)envoy_config_route_v3_RateLimit_Action_MetaData_metadata_key(msg);
@@ -8935,15 +8979,15 @@ UPB_INLINE struct envoy_type_metadata_v3_MetadataKey* envoy_config_route_v3_Rate
8935
8979
  }
8936
8980
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_MetaData_set_default_value(envoy_config_route_v3_RateLimit_Action_MetaData *msg, upb_StringView value) {
8937
8981
  const upb_MiniTableField field = {3, UPB_SIZE(32, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
8938
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
8982
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
8939
8983
  }
8940
8984
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_MetaData_set_source(envoy_config_route_v3_RateLimit_Action_MetaData *msg, int32_t value) {
8941
8985
  const upb_MiniTableField field = {4, UPB_SIZE(16, 12), 0, kUpb_NoSub, 5, (int)kUpb_FieldMode_Scalar | (int)kUpb_LabelFlags_IsAlternate | ((int)kUpb_FieldRep_4Byte << kUpb_FieldRep_Shift)};
8942
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
8986
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
8943
8987
  }
8944
8988
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_MetaData_set_skip_if_absent(envoy_config_route_v3_RateLimit_Action_MetaData *msg, bool value) {
8945
8989
  const upb_MiniTableField field = {5, UPB_SIZE(20, 16), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
8946
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
8990
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
8947
8991
  }
8948
8992
 
8949
8993
  /* envoy.config.route.v3.RateLimit.Action.QueryParameterValueMatch */
@@ -9057,11 +9101,11 @@ UPB_INLINE upb_StringView envoy_config_route_v3_RateLimit_Action_QueryParameterV
9057
9101
 
9058
9102
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch_set_descriptor_value(envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch *msg, upb_StringView value) {
9059
9103
  const upb_MiniTableField field = {1, UPB_SIZE(20, 16), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
9060
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
9104
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
9061
9105
  }
9062
9106
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch_set_expect_match(envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch *msg, struct google_protobuf_BoolValue* value) {
9063
9107
  const upb_MiniTableField field = {2, UPB_SIZE(12, 32), 64, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
9064
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
9108
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
9065
9109
  }
9066
9110
  UPB_INLINE struct google_protobuf_BoolValue* envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch_mutable_expect_match(envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch* msg, upb_Arena* arena) {
9067
9111
  struct google_protobuf_BoolValue* sub = (struct google_protobuf_BoolValue*)envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch_expect_match(msg);
@@ -9103,7 +9147,7 @@ UPB_INLINE struct envoy_config_route_v3_QueryParameterMatcher* envoy_config_rout
9103
9147
  }
9104
9148
  UPB_INLINE void envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch_set_descriptor_key(envoy_config_route_v3_RateLimit_Action_QueryParameterValueMatch *msg, upb_StringView value) {
9105
9149
  const upb_MiniTableField field = {4, UPB_SIZE(28, 48), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
9106
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
9150
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
9107
9151
  }
9108
9152
 
9109
9153
  /* envoy.config.route.v3.RateLimit.Override */
@@ -9170,7 +9214,7 @@ UPB_INLINE bool envoy_config_route_v3_RateLimit_Override_has_dynamic_metadata(co
9170
9214
 
9171
9215
  UPB_INLINE void envoy_config_route_v3_RateLimit_Override_set_dynamic_metadata(envoy_config_route_v3_RateLimit_Override *msg, envoy_config_route_v3_RateLimit_Override_DynamicMetadata* value) {
9172
9216
  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)};
9173
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
9217
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
9174
9218
  }
9175
9219
  UPB_INLINE struct envoy_config_route_v3_RateLimit_Override_DynamicMetadata* envoy_config_route_v3_RateLimit_Override_mutable_dynamic_metadata(envoy_config_route_v3_RateLimit_Override* msg, upb_Arena* arena) {
9176
9220
  struct envoy_config_route_v3_RateLimit_Override_DynamicMetadata* sub = (struct envoy_config_route_v3_RateLimit_Override_DynamicMetadata*)envoy_config_route_v3_RateLimit_Override_dynamic_metadata(msg);
@@ -9236,7 +9280,7 @@ UPB_INLINE bool envoy_config_route_v3_RateLimit_Override_DynamicMetadata_has_met
9236
9280
 
9237
9281
  UPB_INLINE void envoy_config_route_v3_RateLimit_Override_DynamicMetadata_set_metadata_key(envoy_config_route_v3_RateLimit_Override_DynamicMetadata *msg, struct envoy_type_metadata_v3_MetadataKey* value) {
9238
9282
  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)};
9239
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
9283
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
9240
9284
  }
9241
9285
  UPB_INLINE struct envoy_type_metadata_v3_MetadataKey* envoy_config_route_v3_RateLimit_Override_DynamicMetadata_mutable_metadata_key(envoy_config_route_v3_RateLimit_Override_DynamicMetadata* msg, upb_Arena* arena) {
9242
9286
  struct envoy_type_metadata_v3_MetadataKey* sub = (struct envoy_type_metadata_v3_MetadataKey*)envoy_config_route_v3_RateLimit_Override_DynamicMetadata_metadata_key(msg);
@@ -9466,15 +9510,15 @@ UPB_INLINE bool envoy_config_route_v3_HeaderMatcher_treat_missing_header_as_empt
9466
9510
 
9467
9511
  UPB_INLINE void envoy_config_route_v3_HeaderMatcher_set_name(envoy_config_route_v3_HeaderMatcher *msg, upb_StringView value) {
9468
9512
  const upb_MiniTableField field = {1, UPB_SIZE(28, 40), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
9469
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
9513
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
9470
9514
  }
9471
9515
  UPB_INLINE void envoy_config_route_v3_HeaderMatcher_set_exact_match(envoy_config_route_v3_HeaderMatcher *msg, upb_StringView value) {
9472
9516
  const upb_MiniTableField field = {4, UPB_SIZE(20, 24), -13, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
9473
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
9517
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
9474
9518
  }
9475
9519
  UPB_INLINE void envoy_config_route_v3_HeaderMatcher_set_range_match(envoy_config_route_v3_HeaderMatcher *msg, struct envoy_type_v3_Int64Range* value) {
9476
9520
  const upb_MiniTableField field = {6, UPB_SIZE(20, 24), -13, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
9477
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
9521
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
9478
9522
  }
9479
9523
  UPB_INLINE struct envoy_type_v3_Int64Range* envoy_config_route_v3_HeaderMatcher_mutable_range_match(envoy_config_route_v3_HeaderMatcher* msg, upb_Arena* arena) {
9480
9524
  struct envoy_type_v3_Int64Range* sub = (struct envoy_type_v3_Int64Range*)envoy_config_route_v3_HeaderMatcher_range_match(msg);
@@ -9486,23 +9530,23 @@ UPB_INLINE struct envoy_type_v3_Int64Range* envoy_config_route_v3_HeaderMatcher_
9486
9530
  }
9487
9531
  UPB_INLINE void envoy_config_route_v3_HeaderMatcher_set_present_match(envoy_config_route_v3_HeaderMatcher *msg, bool value) {
9488
9532
  const upb_MiniTableField field = {7, UPB_SIZE(20, 24), -13, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
9489
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
9533
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
9490
9534
  }
9491
9535
  UPB_INLINE void envoy_config_route_v3_HeaderMatcher_set_invert_match(envoy_config_route_v3_HeaderMatcher *msg, bool value) {
9492
9536
  const upb_MiniTableField field = {8, 8, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
9493
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
9537
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
9494
9538
  }
9495
9539
  UPB_INLINE void envoy_config_route_v3_HeaderMatcher_set_prefix_match(envoy_config_route_v3_HeaderMatcher *msg, upb_StringView value) {
9496
9540
  const upb_MiniTableField field = {9, UPB_SIZE(20, 24), -13, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
9497
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
9541
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
9498
9542
  }
9499
9543
  UPB_INLINE void envoy_config_route_v3_HeaderMatcher_set_suffix_match(envoy_config_route_v3_HeaderMatcher *msg, upb_StringView value) {
9500
9544
  const upb_MiniTableField field = {10, UPB_SIZE(20, 24), -13, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
9501
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
9545
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
9502
9546
  }
9503
9547
  UPB_INLINE void envoy_config_route_v3_HeaderMatcher_set_safe_regex_match(envoy_config_route_v3_HeaderMatcher *msg, struct envoy_type_matcher_v3_RegexMatcher* value) {
9504
9548
  const upb_MiniTableField field = {11, UPB_SIZE(20, 24), -13, 1, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
9505
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
9549
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
9506
9550
  }
9507
9551
  UPB_INLINE struct envoy_type_matcher_v3_RegexMatcher* envoy_config_route_v3_HeaderMatcher_mutable_safe_regex_match(envoy_config_route_v3_HeaderMatcher* msg, upb_Arena* arena) {
9508
9552
  struct envoy_type_matcher_v3_RegexMatcher* sub = (struct envoy_type_matcher_v3_RegexMatcher*)envoy_config_route_v3_HeaderMatcher_safe_regex_match(msg);
@@ -9514,11 +9558,11 @@ UPB_INLINE struct envoy_type_matcher_v3_RegexMatcher* envoy_config_route_v3_Head
9514
9558
  }
9515
9559
  UPB_INLINE void envoy_config_route_v3_HeaderMatcher_set_contains_match(envoy_config_route_v3_HeaderMatcher *msg, upb_StringView value) {
9516
9560
  const upb_MiniTableField field = {12, UPB_SIZE(20, 24), -13, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
9517
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
9561
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
9518
9562
  }
9519
9563
  UPB_INLINE void envoy_config_route_v3_HeaderMatcher_set_string_match(envoy_config_route_v3_HeaderMatcher *msg, struct envoy_type_matcher_v3_StringMatcher* value) {
9520
9564
  const upb_MiniTableField field = {13, UPB_SIZE(20, 24), -13, 2, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
9521
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
9565
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
9522
9566
  }
9523
9567
  UPB_INLINE struct envoy_type_matcher_v3_StringMatcher* envoy_config_route_v3_HeaderMatcher_mutable_string_match(envoy_config_route_v3_HeaderMatcher* msg, upb_Arena* arena) {
9524
9568
  struct envoy_type_matcher_v3_StringMatcher* sub = (struct envoy_type_matcher_v3_StringMatcher*)envoy_config_route_v3_HeaderMatcher_string_match(msg);
@@ -9530,7 +9574,7 @@ UPB_INLINE struct envoy_type_matcher_v3_StringMatcher* envoy_config_route_v3_Hea
9530
9574
  }
9531
9575
  UPB_INLINE void envoy_config_route_v3_HeaderMatcher_set_treat_missing_header_as_empty(envoy_config_route_v3_HeaderMatcher *msg, bool value) {
9532
9576
  const upb_MiniTableField field = {14, 16, 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
9533
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
9577
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
9534
9578
  }
9535
9579
 
9536
9580
  /* envoy.config.route.v3.QueryParameterMatcher */
@@ -9626,11 +9670,11 @@ UPB_INLINE bool envoy_config_route_v3_QueryParameterMatcher_has_present_match(co
9626
9670
 
9627
9671
  UPB_INLINE void envoy_config_route_v3_QueryParameterMatcher_set_name(envoy_config_route_v3_QueryParameterMatcher *msg, upb_StringView value) {
9628
9672
  const upb_MiniTableField field = {1, 16, 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_StringView << kUpb_FieldRep_Shift)};
9629
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
9673
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
9630
9674
  }
9631
9675
  UPB_INLINE void envoy_config_route_v3_QueryParameterMatcher_set_string_match(envoy_config_route_v3_QueryParameterMatcher *msg, struct envoy_type_matcher_v3_StringMatcher* value) {
9632
9676
  const upb_MiniTableField field = {5, UPB_SIZE(12, 32), -9, 0, 11, (int)kUpb_FieldMode_Scalar | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
9633
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
9677
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
9634
9678
  }
9635
9679
  UPB_INLINE struct envoy_type_matcher_v3_StringMatcher* envoy_config_route_v3_QueryParameterMatcher_mutable_string_match(envoy_config_route_v3_QueryParameterMatcher* msg, upb_Arena* arena) {
9636
9680
  struct envoy_type_matcher_v3_StringMatcher* sub = (struct envoy_type_matcher_v3_StringMatcher*)envoy_config_route_v3_QueryParameterMatcher_string_match(msg);
@@ -9642,7 +9686,7 @@ UPB_INLINE struct envoy_type_matcher_v3_StringMatcher* envoy_config_route_v3_Que
9642
9686
  }
9643
9687
  UPB_INLINE void envoy_config_route_v3_QueryParameterMatcher_set_present_match(envoy_config_route_v3_QueryParameterMatcher *msg, bool value) {
9644
9688
  const upb_MiniTableField field = {6, UPB_SIZE(12, 32), -9, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
9645
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
9689
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
9646
9690
  }
9647
9691
 
9648
9692
  /* envoy.config.route.v3.InternalRedirectPolicy */
@@ -9808,7 +9852,7 @@ UPB_INLINE upb_Array* _envoy_config_route_v3_InternalRedirectPolicy_response_hea
9808
9852
 
9809
9853
  UPB_INLINE void envoy_config_route_v3_InternalRedirectPolicy_set_max_internal_redirects(envoy_config_route_v3_InternalRedirectPolicy *msg, struct google_protobuf_UInt32Value* value) {
9810
9854
  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)};
9811
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
9855
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
9812
9856
  }
9813
9857
  UPB_INLINE struct google_protobuf_UInt32Value* envoy_config_route_v3_InternalRedirectPolicy_mutable_max_internal_redirects(envoy_config_route_v3_InternalRedirectPolicy* msg, upb_Arena* arena) {
9814
9858
  struct google_protobuf_UInt32Value* sub = (struct google_protobuf_UInt32Value*)envoy_config_route_v3_InternalRedirectPolicy_max_internal_redirects(msg);
@@ -9878,7 +9922,7 @@ UPB_INLINE struct envoy_config_core_v3_TypedExtensionConfig* envoy_config_route_
9878
9922
  }
9879
9923
  UPB_INLINE void envoy_config_route_v3_InternalRedirectPolicy_set_allow_cross_scheme_redirect(envoy_config_route_v3_InternalRedirectPolicy *msg, bool value) {
9880
9924
  const upb_MiniTableField field = {4, UPB_SIZE(24, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
9881
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
9925
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
9882
9926
  }
9883
9927
  UPB_INLINE upb_StringView* envoy_config_route_v3_InternalRedirectPolicy_mutable_response_headers_to_copy(envoy_config_route_v3_InternalRedirectPolicy* msg, size_t* size) {
9884
9928
  upb_MiniTableField field = {5, UPB_SIZE(28, 40), 0, kUpb_NoSub, 9, (int)kUpb_FieldMode_Array | ((int)UPB_SIZE(kUpb_FieldRep_4Byte, kUpb_FieldRep_8Byte) << kUpb_FieldRep_Shift)};
@@ -9988,7 +10032,7 @@ UPB_INLINE bool envoy_config_route_v3_FilterConfig_disabled(const envoy_config_r
9988
10032
 
9989
10033
  UPB_INLINE void envoy_config_route_v3_FilterConfig_set_config(envoy_config_route_v3_FilterConfig *msg, struct google_protobuf_Any* value) {
9990
10034
  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)};
9991
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
10035
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
9992
10036
  }
9993
10037
  UPB_INLINE struct google_protobuf_Any* envoy_config_route_v3_FilterConfig_mutable_config(envoy_config_route_v3_FilterConfig* msg, upb_Arena* arena) {
9994
10038
  struct google_protobuf_Any* sub = (struct google_protobuf_Any*)envoy_config_route_v3_FilterConfig_config(msg);
@@ -10000,11 +10044,11 @@ UPB_INLINE struct google_protobuf_Any* envoy_config_route_v3_FilterConfig_mutabl
10000
10044
  }
10001
10045
  UPB_INLINE void envoy_config_route_v3_FilterConfig_set_is_optional(envoy_config_route_v3_FilterConfig *msg, bool value) {
10002
10046
  const upb_MiniTableField field = {2, UPB_SIZE(16, 9), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
10003
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
10047
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
10004
10048
  }
10005
10049
  UPB_INLINE void envoy_config_route_v3_FilterConfig_set_disabled(envoy_config_route_v3_FilterConfig *msg, bool value) {
10006
10050
  const upb_MiniTableField field = {3, UPB_SIZE(17, 10), 0, kUpb_NoSub, 8, (int)kUpb_FieldMode_Scalar | ((int)kUpb_FieldRep_1Byte << kUpb_FieldRep_Shift)};
10007
- _upb_Message_SetNonExtensionField((upb_Message *)msg, &field, &value);
10051
+ upb_Message_SetBaseField((upb_Message *)msg, &field, &value);
10008
10052
  }
10009
10053
 
10010
10054
  #ifdef __cplusplus