grpc 1.34.0 → 1.35.0.pre1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of grpc might be problematic. Click here for more details.

Files changed (458) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +808 -2787
  3. data/etc/roots.pem +257 -573
  4. data/include/grpc/compression.h +1 -1
  5. data/include/grpc/grpc.h +14 -0
  6. data/include/grpc/grpc_security.h +61 -3
  7. data/include/grpc/impl/codegen/atm_windows.h +4 -0
  8. data/include/grpc/impl/codegen/byte_buffer.h +1 -1
  9. data/include/grpc/impl/codegen/grpc_types.h +1 -1
  10. data/include/grpc/impl/codegen/log.h +0 -2
  11. data/include/grpc/impl/codegen/sync_windows.h +4 -0
  12. data/include/grpc/slice_buffer.h +3 -3
  13. data/include/grpc/support/sync.h +3 -3
  14. data/include/grpc/support/time.h +7 -7
  15. data/src/core/ext/filters/client_channel/backend_metric.cc +2 -4
  16. data/src/core/ext/filters/client_channel/client_channel.cc +2734 -1498
  17. data/src/core/ext/filters/client_channel/client_channel.h +0 -4
  18. data/src/core/ext/filters/client_channel/client_channel_plugin.cc +1 -1
  19. data/src/core/ext/filters/client_channel/config_selector.h +4 -0
  20. data/src/core/ext/filters/client_channel/dynamic_filters.cc +186 -0
  21. data/src/core/ext/filters/client_channel/dynamic_filters.h +99 -0
  22. data/src/core/ext/filters/client_channel/health/health_check_client.cc +6 -6
  23. data/src/core/ext/filters/client_channel/health/health_check_client.h +2 -2
  24. data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +4 -5
  25. data/src/core/ext/filters/client_channel/http_proxy.cc +21 -20
  26. data/src/core/ext/filters/client_channel/lb_policy.cc +1 -1
  27. data/src/core/ext/filters/client_channel/lb_policy.h +2 -3
  28. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +32 -30
  29. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +3 -3
  30. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +1 -1
  31. data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +162 -20
  32. data/src/core/ext/filters/client_channel/lb_policy/xds/xds.h +0 -8
  33. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h +24 -0
  34. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +5 -2
  35. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +1 -1
  36. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +1262 -0
  37. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +7 -14
  38. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +1 -32
  39. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +2 -2
  40. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +454 -16
  41. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +5 -0
  42. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +6 -9
  43. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +2 -2
  44. data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +18 -31
  45. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +3 -5
  46. data/src/core/ext/filters/client_channel/resolver_factory.h +6 -6
  47. data/src/core/ext/filters/client_channel/resolver_registry.cc +40 -39
  48. data/src/core/ext/filters/client_channel/resolver_registry.h +2 -2
  49. data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +11 -13
  50. data/src/core/ext/filters/client_channel/resolver_result_parsing.h +8 -8
  51. data/src/core/ext/filters/client_channel/retry_throttle.cc +5 -3
  52. data/src/core/ext/filters/client_channel/retry_throttle.h +3 -1
  53. data/src/core/ext/filters/client_channel/service_config_call_data.h +19 -1
  54. data/src/core/ext/filters/client_channel/subchannel.cc +34 -50
  55. data/src/core/ext/filters/client_channel/subchannel.h +12 -18
  56. data/src/core/ext/filters/deadline/deadline_filter.cc +4 -2
  57. data/src/core/ext/filters/http/client_authority_filter.cc +6 -6
  58. data/src/core/ext/filters/http/http_filters_plugin.cc +6 -3
  59. data/src/core/ext/filters/message_size/message_size_filter.cc +1 -1
  60. data/src/core/ext/filters/workarounds/workaround_utils.cc +1 -1
  61. data/src/core/ext/transport/chttp2/client/authority.cc +3 -3
  62. data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +20 -8
  63. data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc +21 -10
  64. data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +26 -14
  65. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +178 -86
  66. data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +12 -5
  67. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +7 -8
  68. data/src/core/ext/transport/chttp2/transport/flow_control.h +1 -1
  69. data/src/core/ext/transport/chttp2/transport/frame_settings.h +2 -1
  70. data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +6 -6
  71. data/src/core/ext/transport/chttp2/transport/writing.cc +1 -1
  72. data/src/core/ext/transport/inproc/inproc_transport.cc +42 -8
  73. data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +1 -0
  74. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +1 -1
  75. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +7 -0
  76. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +27 -27
  77. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +139 -40
  78. data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c +13 -13
  79. data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h +44 -17
  80. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +111 -111
  81. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +424 -241
  82. data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c +3 -3
  83. data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h +13 -5
  84. data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c +22 -22
  85. data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h +47 -21
  86. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c +21 -21
  87. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h +88 -39
  88. data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c +4 -4
  89. data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h +15 -6
  90. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +44 -44
  91. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h +200 -78
  92. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +17 -17
  93. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +72 -35
  94. data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c +1 -1
  95. data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h +7 -0
  96. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c +7 -7
  97. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h +27 -11
  98. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +30 -30
  99. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +136 -49
  100. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +39 -39
  101. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +157 -89
  102. data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c +4 -4
  103. data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h +17 -9
  104. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +47 -47
  105. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +163 -78
  106. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c +1 -1
  107. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h +7 -0
  108. data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.c +2 -2
  109. data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h +9 -2
  110. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c +1 -1
  111. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h +7 -0
  112. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c +13 -13
  113. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h +59 -36
  114. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c +16 -16
  115. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h +61 -29
  116. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c +26 -26
  117. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h +101 -66
  118. data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c +2 -2
  119. data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h +11 -3
  120. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +28 -28
  121. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +122 -77
  122. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c +23 -23
  123. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h +106 -54
  124. data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c +2 -2
  125. data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h +13 -0
  126. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +16 -16
  127. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +81 -35
  128. data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c +7 -7
  129. data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h +38 -22
  130. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +203 -203
  131. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +845 -495
  132. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c +5 -5
  133. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h +26 -6
  134. data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c +3 -3
  135. data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h +17 -3
  136. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +87 -87
  137. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +343 -204
  138. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +1 -0
  139. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c +20 -20
  140. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h +85 -46
  141. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c +7 -7
  142. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +33 -11
  143. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c +32 -32
  144. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +118 -67
  145. data/src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.c +1 -1
  146. data/src/core/ext/upb-generated/envoy/service/cluster/v3/cds.upb.h +7 -0
  147. data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c +1 -1
  148. data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h +7 -0
  149. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c +29 -29
  150. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h +120 -82
  151. data/src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.c +1 -1
  152. data/src/core/ext/upb-generated/envoy/service/endpoint/v3/eds.upb.h +7 -0
  153. data/src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.c +1 -1
  154. data/src/core/ext/upb-generated/envoy/service/listener/v3/lds.upb.h +7 -0
  155. data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c +7 -7
  156. data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h +31 -16
  157. data/src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.c +1 -1
  158. data/src/core/ext/upb-generated/envoy/service/route/v3/rds.upb.h +7 -0
  159. data/src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.c +1 -1
  160. data/src/core/ext/upb-generated/envoy/service/route/v3/srds.upb.h +7 -0
  161. data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c +5 -5
  162. data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h +25 -11
  163. data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c +1 -1
  164. data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h +7 -0
  165. data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c +1 -1
  166. data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h +7 -0
  167. data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c +6 -6
  168. data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h +29 -8
  169. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c +2 -2
  170. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h +16 -3
  171. data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c +3 -3
  172. data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h +19 -0
  173. data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c +7 -7
  174. data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h +46 -3
  175. data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c +8 -8
  176. data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h +41 -8
  177. data/src/core/ext/upb-generated/envoy/type/v3/http.upb.h +1 -0
  178. data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.c +3 -3
  179. data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.h +15 -2
  180. data/src/core/ext/upb-generated/envoy/type/v3/range.upb.c +3 -3
  181. data/src/core/ext/upb-generated/envoy/type/v3/range.upb.h +19 -0
  182. data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c +1 -1
  183. data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h +7 -0
  184. data/src/core/ext/upb-generated/google/api/annotations.upb.h +1 -0
  185. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c +34 -34
  186. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h +149 -72
  187. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c +34 -34
  188. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h +142 -59
  189. data/src/core/ext/upb-generated/google/api/http.upb.c +3 -3
  190. data/src/core/ext/upb-generated/google/api/http.upb.h +25 -6
  191. data/src/core/ext/upb-generated/google/protobuf/any.upb.c +1 -1
  192. data/src/core/ext/upb-generated/google/protobuf/any.upb.h +7 -0
  193. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +90 -90
  194. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +455 -292
  195. data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +1 -1
  196. data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +7 -0
  197. data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +1 -1
  198. data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +7 -0
  199. data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +4 -4
  200. data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +22 -3
  201. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +1 -1
  202. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +7 -0
  203. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +9 -9
  204. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +55 -0
  205. data/src/core/ext/upb-generated/google/rpc/status.upb.c +1 -1
  206. data/src/core/ext/upb-generated/google/rpc/status.upb.h +10 -3
  207. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +4 -4
  208. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +11 -3
  209. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +41 -41
  210. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +149 -76
  211. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +5 -5
  212. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +21 -6
  213. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +2 -2
  214. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +13 -0
  215. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +17 -17
  216. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +82 -25
  217. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +3 -3
  218. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +19 -0
  219. data/src/core/ext/upb-generated/udpa/annotations/security.upb.c +1 -1
  220. data/src/core/ext/upb-generated/udpa/annotations/security.upb.h +7 -0
  221. data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +1 -0
  222. data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +2 -2
  223. data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +9 -2
  224. data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.c +1 -1
  225. data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.h +7 -0
  226. data/src/core/ext/upb-generated/udpa/core/v1/authority.upb.c +1 -1
  227. data/src/core/ext/upb-generated/udpa/core/v1/authority.upb.h +7 -0
  228. data/src/core/ext/upb-generated/udpa/core/v1/collection_entry.upb.c +5 -5
  229. data/src/core/ext/upb-generated/udpa/core/v1/collection_entry.upb.h +21 -7
  230. data/src/core/ext/upb-generated/udpa/core/v1/context_params.upb.c +2 -2
  231. data/src/core/ext/upb-generated/udpa/core/v1/context_params.upb.h +7 -0
  232. data/src/core/ext/upb-generated/udpa/core/v1/resource.upb.c +4 -4
  233. data/src/core/ext/upb-generated/udpa/core/v1/resource.upb.h +17 -8
  234. data/src/core/ext/upb-generated/udpa/core/v1/resource_locator.upb.c +7 -7
  235. data/src/core/ext/upb-generated/udpa/core/v1/resource_locator.upb.h +31 -18
  236. data/src/core/ext/upb-generated/udpa/core/v1/resource_name.upb.c +5 -5
  237. data/src/core/ext/upb-generated/udpa/core/v1/resource_name.upb.h +19 -11
  238. data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.c +3 -3
  239. data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.h +7 -0
  240. data/src/core/ext/upb-generated/validate/validate.upb.c +64 -64
  241. data/src/core/ext/upb-generated/validate/validate.upb.h +296 -157
  242. data/src/core/ext/xds/certificate_provider_store.cc +10 -7
  243. data/src/core/ext/xds/certificate_provider_store.h +12 -7
  244. data/src/core/ext/xds/file_watcher_certificate_provider_factory.cc +25 -0
  245. data/src/core/ext/xds/file_watcher_certificate_provider_factory.h +1 -4
  246. data/src/core/ext/xds/xds_api.cc +220 -31
  247. data/src/core/ext/xds/xds_api.h +41 -10
  248. data/src/core/ext/xds/xds_bootstrap.h +0 -1
  249. data/src/core/ext/xds/xds_certificate_provider.cc +61 -2
  250. data/src/core/ext/xds/xds_certificate_provider.h +40 -2
  251. data/src/core/ext/xds/xds_client.cc +31 -29
  252. data/src/core/ext/xds/xds_client.h +6 -1
  253. data/src/core/ext/xds/xds_client_stats.cc +2 -2
  254. data/src/core/ext/xds/xds_server_config_fetcher.cc +131 -0
  255. data/src/core/lib/channel/channel_args.cc +8 -8
  256. data/src/core/lib/channel/channel_trace.h +1 -1
  257. data/src/core/lib/channel/channelz.cc +13 -14
  258. data/src/core/lib/channel/channelz.h +0 -1
  259. data/src/core/lib/channel/channelz_registry.h +0 -1
  260. data/src/core/lib/channel/handshaker.cc +2 -2
  261. data/src/core/lib/compression/compression_args.cc +3 -2
  262. data/src/core/lib/debug/stats.h +2 -2
  263. data/src/core/lib/debug/stats_data.h +13 -13
  264. data/src/core/lib/gpr/alloc.cc +3 -2
  265. data/src/core/lib/gpr/log.cc +53 -16
  266. data/src/core/lib/gpr/log_linux.cc +3 -1
  267. data/src/core/lib/gpr/log_posix.cc +3 -1
  268. data/src/core/lib/gpr/log_windows.cc +3 -1
  269. data/src/core/lib/gpr/spinlock.h +10 -2
  270. data/src/core/lib/gpr/string.cc +22 -21
  271. data/src/core/lib/gpr/string.h +5 -6
  272. data/src/core/lib/gpr/sync.cc +4 -4
  273. data/src/core/lib/gpr/time.cc +12 -12
  274. data/src/core/lib/gprpp/arena.h +3 -2
  275. data/src/core/lib/gprpp/ref_counted.h +2 -2
  276. data/src/core/lib/gprpp/ref_counted_ptr.h +9 -1
  277. data/src/core/lib/gprpp/thd_posix.cc +6 -1
  278. data/src/core/lib/gprpp/thd_windows.cc +3 -1
  279. data/src/core/lib/http/httpcli.cc +1 -1
  280. data/src/core/lib/http/httpcli.h +2 -3
  281. data/src/core/lib/http/httpcli_security_connector.cc +1 -1
  282. data/src/core/lib/http/parser.cc +1 -2
  283. data/src/core/lib/iomgr/call_combiner.cc +8 -5
  284. data/src/core/lib/iomgr/combiner.cc +2 -1
  285. data/src/core/lib/iomgr/endpoint.h +1 -1
  286. data/src/core/lib/iomgr/error.cc +15 -11
  287. data/src/core/lib/iomgr/error_internal.h +1 -1
  288. data/src/core/lib/iomgr/ev_epoll1_linux.cc +20 -13
  289. data/src/core/lib/iomgr/ev_epollex_linux.cc +17 -13
  290. data/src/core/lib/iomgr/ev_poll_posix.cc +9 -7
  291. data/src/core/lib/iomgr/exec_ctx.h +6 -4
  292. data/src/core/lib/iomgr/executor.cc +2 -1
  293. data/src/core/lib/iomgr/executor.h +1 -1
  294. data/src/core/lib/iomgr/executor/threadpool.h +1 -1
  295. data/src/core/lib/iomgr/iomgr.cc +1 -1
  296. data/src/core/lib/iomgr/load_file.h +1 -1
  297. data/src/core/lib/iomgr/lockfree_event.cc +19 -14
  298. data/src/core/lib/iomgr/lockfree_event.h +2 -2
  299. data/src/core/lib/iomgr/parse_address.cc +52 -46
  300. data/src/core/lib/iomgr/parse_address.h +13 -9
  301. data/src/core/lib/iomgr/poller/eventmanager_libuv.h +1 -1
  302. data/src/core/lib/iomgr/pollset_set_custom.cc +1 -1
  303. data/src/core/lib/iomgr/python_util.h +1 -1
  304. data/src/core/lib/iomgr/resolve_address.cc +4 -4
  305. data/src/core/lib/iomgr/resource_quota.cc +4 -4
  306. data/src/core/lib/iomgr/sockaddr_utils.cc +10 -10
  307. data/src/core/lib/iomgr/sockaddr_utils.h +1 -1
  308. data/src/core/lib/iomgr/socket_factory_posix.cc +3 -2
  309. data/src/core/lib/iomgr/socket_mutator.cc +3 -2
  310. data/src/core/lib/iomgr/tcp_client.cc +3 -3
  311. data/src/core/lib/iomgr/tcp_client_custom.cc +7 -6
  312. data/src/core/lib/iomgr/tcp_custom.cc +22 -17
  313. data/src/core/lib/iomgr/tcp_posix.cc +9 -6
  314. data/src/core/lib/iomgr/tcp_server_custom.cc +28 -22
  315. data/src/core/lib/iomgr/timer_custom.cc +3 -3
  316. data/src/core/lib/iomgr/timer_generic.cc +3 -3
  317. data/src/core/lib/iomgr/timer_manager.cc +2 -2
  318. data/src/core/lib/iomgr/udp_server.cc +1 -2
  319. data/src/core/lib/iomgr/udp_server.h +1 -2
  320. data/src/core/lib/iomgr/unix_sockets_posix.cc +17 -18
  321. data/src/core/lib/json/json.h +10 -0
  322. data/src/core/lib/security/authorization/evaluate_args.cc +5 -10
  323. data/src/core/lib/security/authorization/evaluate_args.h +1 -1
  324. data/src/core/lib/security/context/security_context.cc +4 -3
  325. data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +1 -1
  326. data/src/core/lib/security/credentials/credentials.cc +6 -6
  327. data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +413 -0
  328. data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +80 -0
  329. data/src/core/lib/security/credentials/external/aws_request_signer.cc +15 -10
  330. data/src/core/lib/security/credentials/external/aws_request_signer.h +1 -2
  331. data/src/core/lib/security/credentials/external/external_account_credentials.cc +217 -31
  332. data/src/core/lib/security/credentials/external/external_account_credentials.h +7 -5
  333. data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +5 -6
  334. data/src/core/lib/security/credentials/external/file_external_account_credentials.h +3 -4
  335. data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +20 -18
  336. data/src/core/lib/security/credentials/external/url_external_account_credentials.h +5 -6
  337. data/src/core/lib/security/credentials/fake/fake_credentials.cc +2 -1
  338. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +18 -12
  339. data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +18 -5
  340. data/src/core/lib/security/credentials/jwt/json_token.cc +1 -1
  341. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +3 -3
  342. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +37 -44
  343. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +5 -4
  344. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +1 -1
  345. data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +5 -5
  346. data/src/core/lib/security/credentials/ssl/ssl_credentials.h +1 -1
  347. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +1 -6
  348. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +1 -6
  349. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +326 -5
  350. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +64 -0
  351. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +1 -1
  352. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +0 -1
  353. data/src/core/lib/security/credentials/tls/tls_credentials.cc +1 -1
  354. data/src/core/lib/security/credentials/tls/tls_utils.cc +91 -0
  355. data/src/core/lib/security/credentials/tls/tls_utils.h +38 -0
  356. data/src/core/lib/security/credentials/xds/xds_credentials.cc +140 -10
  357. data/src/core/lib/security/credentials/xds/xds_credentials.h +27 -9
  358. data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +1 -1
  359. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +1 -1
  360. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +46 -13
  361. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +23 -6
  362. data/src/core/lib/security/security_connector/local/local_security_connector.cc +1 -1
  363. data/src/core/lib/security/security_connector/security_connector.cc +3 -2
  364. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +4 -4
  365. data/src/core/lib/security/security_connector/ssl_utils.cc +2 -2
  366. data/src/core/lib/security/security_connector/ssl_utils.h +12 -19
  367. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +57 -12
  368. data/src/core/lib/security/security_connector/tls/tls_security_connector.h +2 -3
  369. data/src/core/lib/security/transport/secure_endpoint.cc +2 -2
  370. data/src/core/lib/security/transport/security_handshaker.cc +2 -2
  371. data/src/core/lib/slice/slice_intern.cc +4 -5
  372. data/src/core/lib/slice/slice_internal.h +2 -2
  373. data/src/core/lib/surface/call.cc +32 -24
  374. data/src/core/lib/surface/call_details.cc +8 -8
  375. data/src/core/lib/surface/channel.cc +16 -10
  376. data/src/core/lib/surface/channel.h +3 -2
  377. data/src/core/lib/surface/channel_init.cc +1 -1
  378. data/src/core/lib/surface/completion_queue.cc +23 -18
  379. data/src/core/lib/surface/completion_queue.h +16 -16
  380. data/src/core/lib/surface/init.cc +6 -5
  381. data/src/core/lib/surface/lame_client.cc +20 -46
  382. data/src/core/lib/surface/lame_client.h +4 -0
  383. data/src/core/lib/surface/server.cc +59 -15
  384. data/src/core/lib/surface/server.h +37 -5
  385. data/src/core/lib/surface/version.cc +1 -1
  386. data/src/core/lib/transport/authority_override.cc +6 -4
  387. data/src/core/lib/transport/authority_override.h +5 -2
  388. data/src/core/lib/transport/connectivity_state.h +6 -4
  389. data/src/core/lib/transport/error_utils.h +1 -1
  390. data/src/core/lib/transport/metadata_batch.h +4 -4
  391. data/src/core/lib/transport/static_metadata.cc +1 -1
  392. data/src/core/lib/transport/status_metadata.cc +4 -3
  393. data/src/core/lib/transport/transport.h +7 -7
  394. data/src/core/lib/uri/uri_parser.cc +131 -249
  395. data/src/core/lib/uri/uri_parser.h +57 -21
  396. data/src/core/plugin_registry/grpc_plugin_registry.cc +10 -4
  397. data/src/core/tsi/alts/crypt/gsec.cc +5 -4
  398. data/src/core/tsi/alts/frame_protector/frame_handler.cc +8 -6
  399. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +1 -1
  400. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +23 -23
  401. data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +8 -6
  402. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +4 -4
  403. data/src/core/tsi/fake_transport_security.cc +5 -3
  404. data/src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc +1 -1
  405. data/src/core/tsi/ssl_transport_security.cc +62 -49
  406. data/src/core/tsi/ssl_transport_security.h +6 -6
  407. data/src/core/tsi/transport_security.cc +6 -6
  408. data/src/core/tsi/transport_security_interface.h +1 -1
  409. data/src/ruby/ext/grpc/rb_event_thread.c +2 -0
  410. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +12 -0
  411. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +31 -13
  412. data/src/ruby/lib/grpc/version.rb +1 -1
  413. data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +28 -0
  414. data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +18 -0
  415. data/src/ruby/spec/pb/codegen/package_option_spec.rb +2 -6
  416. data/third_party/abseil-cpp/absl/container/flat_hash_map.h +606 -0
  417. data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +197 -0
  418. data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +399 -0
  419. data/third_party/abseil-cpp/absl/status/statusor.cc +71 -0
  420. data/third_party/abseil-cpp/absl/status/statusor.h +760 -0
  421. data/third_party/upb/third_party/wyhash/wyhash.h +145 -0
  422. data/third_party/upb/upb/decode.c +248 -167
  423. data/third_party/upb/upb/decode.h +20 -1
  424. data/third_party/upb/upb/decode.int.h +163 -0
  425. data/third_party/upb/upb/decode_fast.c +1040 -0
  426. data/third_party/upb/upb/decode_fast.h +126 -0
  427. data/third_party/upb/upb/def.c +525 -516
  428. data/third_party/upb/upb/def.h +16 -31
  429. data/third_party/upb/upb/def.hpp +37 -123
  430. data/third_party/upb/upb/encode.c +227 -169
  431. data/third_party/upb/upb/encode.h +27 -2
  432. data/third_party/upb/upb/json_decode.c +1443 -0
  433. data/third_party/upb/upb/json_decode.h +23 -0
  434. data/third_party/upb/upb/json_encode.c +713 -0
  435. data/third_party/upb/upb/json_encode.h +36 -0
  436. data/third_party/upb/upb/msg.c +167 -88
  437. data/third_party/upb/upb/msg.h +174 -34
  438. data/third_party/upb/upb/port_def.inc +74 -61
  439. data/third_party/upb/upb/port_undef.inc +3 -7
  440. data/third_party/upb/upb/reflection.c +36 -19
  441. data/third_party/upb/upb/table.c +34 -197
  442. data/third_party/upb/upb/table.int.h +14 -5
  443. data/third_party/upb/upb/text_encode.c +45 -22
  444. data/third_party/upb/upb/text_encode.h +4 -1
  445. data/third_party/upb/upb/upb.c +18 -41
  446. data/third_party/upb/upb/upb.h +36 -7
  447. data/third_party/upb/upb/upb.hpp +4 -4
  448. data/third_party/upb/upb/upb.int.h +29 -0
  449. metadata +60 -46
  450. data/src/core/ext/filters/client_channel/lb_policy/xds/eds.cc +0 -909
  451. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc +0 -485
  452. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc +0 -68
  453. data/src/core/ext/filters/client_channel/resolving_lb_policy.cc +0 -355
  454. data/src/core/ext/filters/client_channel/resolving_lb_policy.h +0 -138
  455. data/src/core/ext/xds/google_mesh_ca_certificate_provider_factory.cc +0 -265
  456. data/src/core/ext/xds/google_mesh_ca_certificate_provider_factory.h +0 -104
  457. data/src/core/lib/gprpp/map.h +0 -53
  458. data/third_party/upb/upb/port.c +0 -26
@@ -30,7 +30,7 @@
30
30
 
31
31
  #include "upb/port_def.inc"
32
32
 
33
- static const upb_msglayout *const envoy_config_route_v3_VirtualHost_submsgs[11] = {
33
+ static const upb_msglayout *const envoy_config_route_v3_VirtualHost_submsgs[10] = {
34
34
  &envoy_config_core_v3_HeaderValueOption_msginit,
35
35
  &envoy_config_route_v3_CorsPolicy_msginit,
36
36
  &envoy_config_route_v3_HedgePolicy_msginit,
@@ -47,27 +47,27 @@ static const upb_msglayout_field envoy_config_route_v3_VirtualHost__fields[18] =
47
47
  {1, UPB_SIZE(12, 16), 0, 0, 9, 1},
48
48
  {2, UPB_SIZE(40, 72), 0, 0, 9, 3},
49
49
  {3, UPB_SIZE(44, 80), 0, 5, 11, 3},
50
- {4, UPB_SIZE(0, 0), 0, 0, 14, 1},
50
+ {4, UPB_SIZE(4, 4), 0, 0, 14, 1},
51
51
  {5, UPB_SIZE(48, 88), 0, 6, 11, 3},
52
52
  {6, UPB_SIZE(52, 96), 0, 3, 11, 3},
53
53
  {7, UPB_SIZE(56, 104), 0, 0, 11, 3},
54
- {8, UPB_SIZE(20, 32), 0, 1, 11, 1},
54
+ {8, UPB_SIZE(20, 32), 1, 1, 11, 1},
55
55
  {10, UPB_SIZE(60, 112), 0, 0, 11, 3},
56
56
  {11, UPB_SIZE(64, 120), 0, 0, 9, 3},
57
57
  {13, UPB_SIZE(68, 128), 0, 0, 9, 3},
58
58
  {14, UPB_SIZE(8, 8), 0, 0, 8, 1},
59
59
  {15, UPB_SIZE(72, 136), 0, 7, 11, _UPB_LABEL_MAP},
60
- {16, UPB_SIZE(24, 40), 0, 4, 11, 1},
61
- {17, UPB_SIZE(28, 48), 0, 2, 11, 1},
62
- {18, UPB_SIZE(32, 56), 0, 9, 11, 1},
60
+ {16, UPB_SIZE(24, 40), 2, 4, 11, 1},
61
+ {17, UPB_SIZE(28, 48), 3, 2, 11, 1},
62
+ {18, UPB_SIZE(32, 56), 4, 9, 11, 1},
63
63
  {19, UPB_SIZE(9, 9), 0, 0, 8, 1},
64
- {20, UPB_SIZE(36, 64), 0, 8, 11, 1},
64
+ {20, UPB_SIZE(36, 64), 5, 8, 11, 1},
65
65
  };
66
66
 
67
67
  const upb_msglayout envoy_config_route_v3_VirtualHost_msginit = {
68
68
  &envoy_config_route_v3_VirtualHost_submsgs[0],
69
69
  &envoy_config_route_v3_VirtualHost__fields[0],
70
- UPB_SIZE(80, 144), 18, false,
70
+ UPB_SIZE(80, 144), 18, false, 255,
71
71
  };
72
72
 
73
73
  static const upb_msglayout *const envoy_config_route_v3_VirtualHost_TypedPerFilterConfigEntry_submsgs[1] = {
@@ -82,7 +82,7 @@ static const upb_msglayout_field envoy_config_route_v3_VirtualHost_TypedPerFilte
82
82
  const upb_msglayout envoy_config_route_v3_VirtualHost_TypedPerFilterConfigEntry_msginit = {
83
83
  &envoy_config_route_v3_VirtualHost_TypedPerFilterConfigEntry_submsgs[0],
84
84
  &envoy_config_route_v3_VirtualHost_TypedPerFilterConfigEntry__fields[0],
85
- UPB_SIZE(16, 32), 2, false,
85
+ UPB_SIZE(16, 32), 2, false, 255,
86
86
  };
87
87
 
88
88
  static const upb_msglayout *const envoy_config_route_v3_FilterAction_submsgs[1] = {
@@ -90,16 +90,16 @@ static const upb_msglayout *const envoy_config_route_v3_FilterAction_submsgs[1]
90
90
  };
91
91
 
92
92
  static const upb_msglayout_field envoy_config_route_v3_FilterAction__fields[1] = {
93
- {1, UPB_SIZE(0, 0), 0, 0, 11, 1},
93
+ {1, UPB_SIZE(4, 8), 1, 0, 11, 1},
94
94
  };
95
95
 
96
96
  const upb_msglayout envoy_config_route_v3_FilterAction_msginit = {
97
97
  &envoy_config_route_v3_FilterAction_submsgs[0],
98
98
  &envoy_config_route_v3_FilterAction__fields[0],
99
- UPB_SIZE(4, 8), 1, false,
99
+ UPB_SIZE(8, 16), 1, false, 255,
100
100
  };
101
101
 
102
- static const upb_msglayout *const envoy_config_route_v3_Route_submsgs[12] = {
102
+ static const upb_msglayout *const envoy_config_route_v3_Route_submsgs[11] = {
103
103
  &envoy_config_core_v3_HeaderValueOption_msginit,
104
104
  &envoy_config_core_v3_Metadata_msginit,
105
105
  &envoy_config_route_v3_Decorator_msginit,
@@ -114,27 +114,27 @@ static const upb_msglayout *const envoy_config_route_v3_Route_submsgs[12] = {
114
114
  };
115
115
 
116
116
  static const upb_msglayout_field envoy_config_route_v3_Route__fields[15] = {
117
- {1, UPB_SIZE(8, 16), 0, 8, 11, 1},
118
- {2, UPB_SIZE(48, 96), UPB_SIZE(-53, -105), 7, 11, 1},
119
- {3, UPB_SIZE(48, 96), UPB_SIZE(-53, -105), 5, 11, 1},
120
- {4, UPB_SIZE(12, 24), 0, 1, 11, 1},
121
- {5, UPB_SIZE(16, 32), 0, 2, 11, 1},
122
- {7, UPB_SIZE(48, 96), UPB_SIZE(-53, -105), 3, 11, 1},
123
- {9, UPB_SIZE(28, 56), 0, 0, 11, 3},
124
- {10, UPB_SIZE(32, 64), 0, 0, 11, 3},
125
- {11, UPB_SIZE(36, 72), 0, 0, 9, 3},
126
- {12, UPB_SIZE(40, 80), 0, 0, 9, 3},
127
- {13, UPB_SIZE(44, 88), 0, 6, 11, _UPB_LABEL_MAP},
128
- {14, UPB_SIZE(0, 0), 0, 0, 9, 1},
129
- {15, UPB_SIZE(20, 40), 0, 9, 11, 1},
130
- {16, UPB_SIZE(24, 48), 0, 10, 11, 1},
131
- {17, UPB_SIZE(48, 96), UPB_SIZE(-53, -105), 4, 11, 1},
117
+ {1, UPB_SIZE(12, 24), 1, 8, 11, 1},
118
+ {2, UPB_SIZE(52, 104), UPB_SIZE(-57, -113), 7, 11, 1},
119
+ {3, UPB_SIZE(52, 104), UPB_SIZE(-57, -113), 5, 11, 1},
120
+ {4, UPB_SIZE(16, 32), 2, 1, 11, 1},
121
+ {5, UPB_SIZE(20, 40), 3, 2, 11, 1},
122
+ {7, UPB_SIZE(52, 104), UPB_SIZE(-57, -113), 3, 11, 1},
123
+ {9, UPB_SIZE(32, 64), 0, 0, 11, 3},
124
+ {10, UPB_SIZE(36, 72), 0, 0, 11, 3},
125
+ {11, UPB_SIZE(40, 80), 0, 0, 9, 3},
126
+ {12, UPB_SIZE(44, 88), 0, 0, 9, 3},
127
+ {13, UPB_SIZE(48, 96), 0, 6, 11, _UPB_LABEL_MAP},
128
+ {14, UPB_SIZE(4, 8), 0, 0, 9, 1},
129
+ {15, UPB_SIZE(24, 48), 4, 9, 11, 1},
130
+ {16, UPB_SIZE(28, 56), 5, 10, 11, 1},
131
+ {17, UPB_SIZE(52, 104), UPB_SIZE(-57, -113), 4, 11, 1},
132
132
  };
133
133
 
134
134
  const upb_msglayout envoy_config_route_v3_Route_msginit = {
135
135
  &envoy_config_route_v3_Route_submsgs[0],
136
136
  &envoy_config_route_v3_Route__fields[0],
137
- UPB_SIZE(56, 112), 15, false,
137
+ UPB_SIZE(64, 128), 15, false, 255,
138
138
  };
139
139
 
140
140
  static const upb_msglayout *const envoy_config_route_v3_Route_TypedPerFilterConfigEntry_submsgs[1] = {
@@ -149,7 +149,7 @@ static const upb_msglayout_field envoy_config_route_v3_Route_TypedPerFilterConfi
149
149
  const upb_msglayout envoy_config_route_v3_Route_TypedPerFilterConfigEntry_msginit = {
150
150
  &envoy_config_route_v3_Route_TypedPerFilterConfigEntry_submsgs[0],
151
151
  &envoy_config_route_v3_Route_TypedPerFilterConfigEntry__fields[0],
152
- UPB_SIZE(16, 32), 2, false,
152
+ UPB_SIZE(16, 32), 2, false, 255,
153
153
  };
154
154
 
155
155
  static const upb_msglayout *const envoy_config_route_v3_WeightedCluster_submsgs[2] = {
@@ -158,18 +158,18 @@ static const upb_msglayout *const envoy_config_route_v3_WeightedCluster_submsgs[
158
158
  };
159
159
 
160
160
  static const upb_msglayout_field envoy_config_route_v3_WeightedCluster__fields[3] = {
161
- {1, UPB_SIZE(12, 24), 0, 0, 11, 3},
162
- {2, UPB_SIZE(0, 0), 0, 0, 9, 1},
163
- {3, UPB_SIZE(8, 16), 0, 1, 11, 1},
161
+ {1, UPB_SIZE(16, 32), 0, 0, 11, 3},
162
+ {2, UPB_SIZE(4, 8), 0, 0, 9, 1},
163
+ {3, UPB_SIZE(12, 24), 1, 1, 11, 1},
164
164
  };
165
165
 
166
166
  const upb_msglayout envoy_config_route_v3_WeightedCluster_msginit = {
167
167
  &envoy_config_route_v3_WeightedCluster_submsgs[0],
168
168
  &envoy_config_route_v3_WeightedCluster__fields[0],
169
- UPB_SIZE(16, 32), 3, false,
169
+ UPB_SIZE(24, 48), 3, false, 255,
170
170
  };
171
171
 
172
- static const upb_msglayout *const envoy_config_route_v3_WeightedCluster_ClusterWeight_submsgs[5] = {
172
+ static const upb_msglayout *const envoy_config_route_v3_WeightedCluster_ClusterWeight_submsgs[4] = {
173
173
  &envoy_config_core_v3_HeaderValueOption_msginit,
174
174
  &envoy_config_core_v3_Metadata_msginit,
175
175
  &envoy_config_route_v3_WeightedCluster_ClusterWeight_TypedPerFilterConfigEntry_msginit,
@@ -177,20 +177,20 @@ static const upb_msglayout *const envoy_config_route_v3_WeightedCluster_ClusterW
177
177
  };
178
178
 
179
179
  static const upb_msglayout_field envoy_config_route_v3_WeightedCluster_ClusterWeight__fields[8] = {
180
- {1, UPB_SIZE(0, 0), 0, 0, 9, 1},
181
- {2, UPB_SIZE(8, 16), 0, 3, 11, 1},
182
- {3, UPB_SIZE(12, 24), 0, 1, 11, 1},
183
- {4, UPB_SIZE(16, 32), 0, 0, 11, 3},
184
- {5, UPB_SIZE(20, 40), 0, 0, 11, 3},
185
- {6, UPB_SIZE(24, 48), 0, 0, 9, 3},
186
- {9, UPB_SIZE(28, 56), 0, 0, 9, 3},
187
- {10, UPB_SIZE(32, 64), 0, 2, 11, _UPB_LABEL_MAP},
180
+ {1, UPB_SIZE(4, 8), 0, 0, 9, 1},
181
+ {2, UPB_SIZE(12, 24), 1, 3, 11, 1},
182
+ {3, UPB_SIZE(16, 32), 2, 1, 11, 1},
183
+ {4, UPB_SIZE(20, 40), 0, 0, 11, 3},
184
+ {5, UPB_SIZE(24, 48), 0, 0, 11, 3},
185
+ {6, UPB_SIZE(28, 56), 0, 0, 9, 3},
186
+ {9, UPB_SIZE(32, 64), 0, 0, 9, 3},
187
+ {10, UPB_SIZE(36, 72), 0, 2, 11, _UPB_LABEL_MAP},
188
188
  };
189
189
 
190
190
  const upb_msglayout envoy_config_route_v3_WeightedCluster_ClusterWeight_msginit = {
191
191
  &envoy_config_route_v3_WeightedCluster_ClusterWeight_submsgs[0],
192
192
  &envoy_config_route_v3_WeightedCluster_ClusterWeight__fields[0],
193
- UPB_SIZE(40, 80), 8, false,
193
+ UPB_SIZE(40, 80), 8, false, 255,
194
194
  };
195
195
 
196
196
  static const upb_msglayout *const envoy_config_route_v3_WeightedCluster_ClusterWeight_TypedPerFilterConfigEntry_submsgs[1] = {
@@ -205,7 +205,7 @@ static const upb_msglayout_field envoy_config_route_v3_WeightedCluster_ClusterWe
205
205
  const upb_msglayout envoy_config_route_v3_WeightedCluster_ClusterWeight_TypedPerFilterConfigEntry_msginit = {
206
206
  &envoy_config_route_v3_WeightedCluster_ClusterWeight_TypedPerFilterConfigEntry_submsgs[0],
207
207
  &envoy_config_route_v3_WeightedCluster_ClusterWeight_TypedPerFilterConfigEntry__fields[0],
208
- UPB_SIZE(16, 32), 2, false,
208
+ UPB_SIZE(16, 32), 2, false, 255,
209
209
  };
210
210
 
211
211
  static const upb_msglayout *const envoy_config_route_v3_RouteMatch_submsgs[8] = {
@@ -220,75 +220,75 @@ static const upb_msglayout *const envoy_config_route_v3_RouteMatch_submsgs[8] =
220
220
  };
221
221
 
222
222
  static const upb_msglayout_field envoy_config_route_v3_RouteMatch__fields[10] = {
223
- {1, UPB_SIZE(24, 48), UPB_SIZE(-33, -65), 0, 9, 1},
224
- {2, UPB_SIZE(24, 48), UPB_SIZE(-33, -65), 0, 9, 1},
225
- {4, UPB_SIZE(0, 0), 0, 7, 11, 1},
226
- {6, UPB_SIZE(16, 32), 0, 1, 11, 3},
227
- {7, UPB_SIZE(20, 40), 0, 2, 11, 3},
228
- {8, UPB_SIZE(4, 8), 0, 4, 11, 1},
229
- {9, UPB_SIZE(8, 16), 0, 0, 11, 1},
230
- {10, UPB_SIZE(24, 48), UPB_SIZE(-33, -65), 6, 11, 1},
231
- {11, UPB_SIZE(12, 24), 0, 5, 11, 1},
232
- {12, UPB_SIZE(24, 48), UPB_SIZE(-33, -65), 3, 11, 1},
223
+ {1, UPB_SIZE(28, 56), UPB_SIZE(-37, -73), 0, 9, 1},
224
+ {2, UPB_SIZE(28, 56), UPB_SIZE(-37, -73), 0, 9, 1},
225
+ {4, UPB_SIZE(4, 8), 1, 7, 11, 1},
226
+ {6, UPB_SIZE(20, 40), 0, 1, 11, 3},
227
+ {7, UPB_SIZE(24, 48), 0, 2, 11, 3},
228
+ {8, UPB_SIZE(8, 16), 2, 4, 11, 1},
229
+ {9, UPB_SIZE(12, 24), 3, 0, 11, 1},
230
+ {10, UPB_SIZE(28, 56), UPB_SIZE(-37, -73), 6, 11, 1},
231
+ {11, UPB_SIZE(16, 32), 4, 5, 11, 1},
232
+ {12, UPB_SIZE(28, 56), UPB_SIZE(-37, -73), 3, 11, 1},
233
233
  };
234
234
 
235
235
  const upb_msglayout envoy_config_route_v3_RouteMatch_msginit = {
236
236
  &envoy_config_route_v3_RouteMatch_submsgs[0],
237
237
  &envoy_config_route_v3_RouteMatch__fields[0],
238
- UPB_SIZE(40, 80), 10, false,
238
+ UPB_SIZE(40, 80), 10, false, 255,
239
239
  };
240
240
 
241
241
  const upb_msglayout envoy_config_route_v3_RouteMatch_GrpcRouteMatchOptions_msginit = {
242
242
  NULL,
243
243
  NULL,
244
- UPB_SIZE(0, 0), 0, false,
244
+ UPB_SIZE(0, 0), 0, false, 255,
245
245
  };
246
246
 
247
- static const upb_msglayout *const envoy_config_route_v3_RouteMatch_TlsContextMatchOptions_submsgs[2] = {
247
+ static const upb_msglayout *const envoy_config_route_v3_RouteMatch_TlsContextMatchOptions_submsgs[1] = {
248
248
  &google_protobuf_BoolValue_msginit,
249
249
  };
250
250
 
251
251
  static const upb_msglayout_field envoy_config_route_v3_RouteMatch_TlsContextMatchOptions__fields[2] = {
252
- {1, UPB_SIZE(0, 0), 0, 0, 11, 1},
253
- {2, UPB_SIZE(4, 8), 0, 0, 11, 1},
252
+ {1, UPB_SIZE(4, 8), 1, 0, 11, 1},
253
+ {2, UPB_SIZE(8, 16), 2, 0, 11, 1},
254
254
  };
255
255
 
256
256
  const upb_msglayout envoy_config_route_v3_RouteMatch_TlsContextMatchOptions_msginit = {
257
257
  &envoy_config_route_v3_RouteMatch_TlsContextMatchOptions_submsgs[0],
258
258
  &envoy_config_route_v3_RouteMatch_TlsContextMatchOptions__fields[0],
259
- UPB_SIZE(8, 16), 2, false,
259
+ UPB_SIZE(16, 24), 2, false, 255,
260
260
  };
261
261
 
262
262
  const upb_msglayout envoy_config_route_v3_RouteMatch_ConnectMatcher_msginit = {
263
263
  NULL,
264
264
  NULL,
265
- UPB_SIZE(0, 0), 0, false,
265
+ UPB_SIZE(0, 0), 0, false, 255,
266
266
  };
267
267
 
268
- static const upb_msglayout *const envoy_config_route_v3_CorsPolicy_submsgs[4] = {
268
+ static const upb_msglayout *const envoy_config_route_v3_CorsPolicy_submsgs[3] = {
269
269
  &envoy_config_core_v3_RuntimeFractionalPercent_msginit,
270
270
  &envoy_type_matcher_v3_StringMatcher_msginit,
271
271
  &google_protobuf_BoolValue_msginit,
272
272
  };
273
273
 
274
274
  static const upb_msglayout_field envoy_config_route_v3_CorsPolicy__fields[8] = {
275
- {2, UPB_SIZE(0, 0), 0, 0, 9, 1},
276
- {3, UPB_SIZE(8, 16), 0, 0, 9, 1},
277
- {4, UPB_SIZE(16, 32), 0, 0, 9, 1},
278
- {5, UPB_SIZE(24, 48), 0, 0, 9, 1},
279
- {6, UPB_SIZE(32, 64), 0, 2, 11, 1},
280
- {9, UPB_SIZE(44, 88), UPB_SIZE(-49, -97), 0, 11, 1},
281
- {10, UPB_SIZE(36, 72), 0, 0, 11, 1},
282
- {11, UPB_SIZE(40, 80), 0, 1, 11, 3},
275
+ {2, UPB_SIZE(4, 8), 0, 0, 9, 1},
276
+ {3, UPB_SIZE(12, 24), 0, 0, 9, 1},
277
+ {4, UPB_SIZE(20, 40), 0, 0, 9, 1},
278
+ {5, UPB_SIZE(28, 56), 0, 0, 9, 1},
279
+ {6, UPB_SIZE(36, 72), 1, 2, 11, 1},
280
+ {9, UPB_SIZE(48, 96), UPB_SIZE(-53, -105), 0, 11, 1},
281
+ {10, UPB_SIZE(40, 80), 2, 0, 11, 1},
282
+ {11, UPB_SIZE(44, 88), 0, 1, 11, 3},
283
283
  };
284
284
 
285
285
  const upb_msglayout envoy_config_route_v3_CorsPolicy_msginit = {
286
286
  &envoy_config_route_v3_CorsPolicy_submsgs[0],
287
287
  &envoy_config_route_v3_CorsPolicy__fields[0],
288
- UPB_SIZE(56, 112), 8, false,
288
+ UPB_SIZE(56, 112), 8, false, 255,
289
289
  };
290
290
 
291
- static const upb_msglayout *const envoy_config_route_v3_RouteAction_submsgs[21] = {
291
+ static const upb_msglayout *const envoy_config_route_v3_RouteAction_submsgs[16] = {
292
292
  &envoy_config_core_v3_Metadata_msginit,
293
293
  &envoy_config_route_v3_CorsPolicy_msginit,
294
294
  &envoy_config_route_v3_HedgePolicy_msginit,
@@ -308,41 +308,41 @@ static const upb_msglayout *const envoy_config_route_v3_RouteAction_submsgs[21]
308
308
  };
309
309
 
310
310
  static const upb_msglayout_field envoy_config_route_v3_RouteAction__fields[29] = {
311
- {1, UPB_SIZE(104, 184), UPB_SIZE(-113, -201), 0, 9, 1},
312
- {2, UPB_SIZE(104, 184), UPB_SIZE(-113, -201), 0, 9, 1},
313
- {3, UPB_SIZE(104, 184), UPB_SIZE(-113, -201), 10, 11, 1},
314
- {4, UPB_SIZE(32, 40), 0, 0, 11, 1},
315
- {5, UPB_SIZE(24, 24), 0, 0, 9, 1},
316
- {6, UPB_SIZE(116, 208), UPB_SIZE(-125, -225), 0, 9, 1},
317
- {7, UPB_SIZE(116, 208), UPB_SIZE(-125, -225), 13, 11, 1},
318
- {8, UPB_SIZE(36, 48), 0, 14, 11, 1},
319
- {9, UPB_SIZE(40, 56), 0, 5, 11, 1},
320
- {11, UPB_SIZE(0, 0), 0, 0, 14, 1},
321
- {13, UPB_SIZE(88, 152), 0, 4, 11, 3},
322
- {14, UPB_SIZE(44, 64), 0, 13, 11, 1},
323
- {15, UPB_SIZE(92, 160), 0, 6, 11, 3},
324
- {17, UPB_SIZE(48, 72), 0, 1, 11, 1},
311
+ {1, UPB_SIZE(96, 176), UPB_SIZE(-105, -193), 0, 9, 1},
312
+ {2, UPB_SIZE(96, 176), UPB_SIZE(-105, -193), 0, 9, 1},
313
+ {3, UPB_SIZE(96, 176), UPB_SIZE(-105, -193), 10, 11, 1},
314
+ {4, UPB_SIZE(24, 32), 1, 0, 11, 1},
315
+ {5, UPB_SIZE(16, 16), 0, 0, 9, 1},
316
+ {6, UPB_SIZE(108, 200), UPB_SIZE(-117, -217), 0, 9, 1},
317
+ {7, UPB_SIZE(108, 200), UPB_SIZE(-117, -217), 13, 11, 1},
318
+ {8, UPB_SIZE(28, 40), 2, 14, 11, 1},
319
+ {9, UPB_SIZE(32, 48), 3, 5, 11, 1},
320
+ {11, UPB_SIZE(4, 4), 0, 0, 14, 1},
321
+ {13, UPB_SIZE(80, 144), 0, 4, 11, 3},
322
+ {14, UPB_SIZE(36, 56), 4, 13, 11, 1},
323
+ {15, UPB_SIZE(84, 152), 0, 6, 11, 3},
324
+ {17, UPB_SIZE(40, 64), 5, 1, 11, 1},
325
325
  {20, UPB_SIZE(8, 8), 0, 0, 14, 1},
326
- {23, UPB_SIZE(52, 80), 0, 14, 11, 1},
327
- {24, UPB_SIZE(56, 88), 0, 14, 11, 1},
328
- {25, UPB_SIZE(96, 168), 0, 9, 11, 3},
329
- {26, UPB_SIZE(16, 16), 0, 0, 14, 1},
330
- {27, UPB_SIZE(60, 96), 0, 2, 11, 1},
331
- {28, UPB_SIZE(64, 104), 0, 14, 11, 1},
332
- {29, UPB_SIZE(116, 208), UPB_SIZE(-125, -225), 0, 9, 1},
333
- {30, UPB_SIZE(100, 176), 0, 8, 11, 3},
334
- {31, UPB_SIZE(68, 112), 0, 15, 11, 1},
335
- {32, UPB_SIZE(72, 120), 0, 11, 11, 1},
336
- {33, UPB_SIZE(76, 128), 0, 12, 11, 1},
337
- {34, UPB_SIZE(80, 136), 0, 3, 11, 1},
338
- {35, UPB_SIZE(116, 208), UPB_SIZE(-125, -225), 11, 11, 1},
339
- {36, UPB_SIZE(84, 144), 0, 7, 11, 1},
326
+ {23, UPB_SIZE(44, 72), 6, 14, 11, 1},
327
+ {24, UPB_SIZE(48, 80), 7, 14, 11, 1},
328
+ {25, UPB_SIZE(88, 160), 0, 9, 11, 3},
329
+ {26, UPB_SIZE(12, 12), 0, 0, 14, 1},
330
+ {27, UPB_SIZE(52, 88), 8, 2, 11, 1},
331
+ {28, UPB_SIZE(56, 96), 9, 14, 11, 1},
332
+ {29, UPB_SIZE(108, 200), UPB_SIZE(-117, -217), 0, 9, 1},
333
+ {30, UPB_SIZE(92, 168), 0, 8, 11, 3},
334
+ {31, UPB_SIZE(60, 104), 10, 15, 11, 1},
335
+ {32, UPB_SIZE(64, 112), 11, 11, 11, 1},
336
+ {33, UPB_SIZE(68, 120), 12, 12, 11, 1},
337
+ {34, UPB_SIZE(72, 128), 13, 3, 11, 1},
338
+ {35, UPB_SIZE(108, 200), UPB_SIZE(-117, -217), 11, 11, 1},
339
+ {36, UPB_SIZE(76, 136), 14, 7, 11, 1},
340
340
  };
341
341
 
342
342
  const upb_msglayout envoy_config_route_v3_RouteAction_msginit = {
343
343
  &envoy_config_route_v3_RouteAction_submsgs[0],
344
344
  &envoy_config_route_v3_RouteAction__fields[0],
345
- UPB_SIZE(128, 240), 29, false,
345
+ UPB_SIZE(120, 224), 29, false, 255,
346
346
  };
347
347
 
348
348
  static const upb_msglayout *const envoy_config_route_v3_RouteAction_RequestMirrorPolicy_submsgs[2] = {
@@ -351,15 +351,15 @@ static const upb_msglayout *const envoy_config_route_v3_RouteAction_RequestMirro
351
351
  };
352
352
 
353
353
  static const upb_msglayout_field envoy_config_route_v3_RouteAction_RequestMirrorPolicy__fields[3] = {
354
- {1, UPB_SIZE(0, 0), 0, 0, 9, 1},
355
- {3, UPB_SIZE(8, 16), 0, 0, 11, 1},
356
- {4, UPB_SIZE(12, 24), 0, 1, 11, 1},
354
+ {1, UPB_SIZE(4, 8), 0, 0, 9, 1},
355
+ {3, UPB_SIZE(12, 24), 1, 0, 11, 1},
356
+ {4, UPB_SIZE(16, 32), 2, 1, 11, 1},
357
357
  };
358
358
 
359
359
  const upb_msglayout envoy_config_route_v3_RouteAction_RequestMirrorPolicy_msginit = {
360
360
  &envoy_config_route_v3_RouteAction_RequestMirrorPolicy_submsgs[0],
361
361
  &envoy_config_route_v3_RouteAction_RequestMirrorPolicy__fields[0],
362
- UPB_SIZE(16, 32), 3, false,
362
+ UPB_SIZE(24, 48), 3, false, 255,
363
363
  };
364
364
 
365
365
  static const upb_msglayout *const envoy_config_route_v3_RouteAction_HashPolicy_submsgs[5] = {
@@ -382,7 +382,7 @@ static const upb_msglayout_field envoy_config_route_v3_RouteAction_HashPolicy__f
382
382
  const upb_msglayout envoy_config_route_v3_RouteAction_HashPolicy_msginit = {
383
383
  &envoy_config_route_v3_RouteAction_HashPolicy_submsgs[0],
384
384
  &envoy_config_route_v3_RouteAction_HashPolicy__fields[0],
385
- UPB_SIZE(12, 24), 6, false,
385
+ UPB_SIZE(16, 24), 6, false, 255,
386
386
  };
387
387
 
388
388
  static const upb_msglayout *const envoy_config_route_v3_RouteAction_HashPolicy_Header_submsgs[1] = {
@@ -390,14 +390,14 @@ static const upb_msglayout *const envoy_config_route_v3_RouteAction_HashPolicy_H
390
390
  };
391
391
 
392
392
  static const upb_msglayout_field envoy_config_route_v3_RouteAction_HashPolicy_Header__fields[2] = {
393
- {1, UPB_SIZE(0, 0), 0, 0, 9, 1},
394
- {2, UPB_SIZE(8, 16), 0, 0, 11, 1},
393
+ {1, UPB_SIZE(4, 8), 0, 0, 9, 1},
394
+ {2, UPB_SIZE(12, 24), 1, 0, 11, 1},
395
395
  };
396
396
 
397
397
  const upb_msglayout envoy_config_route_v3_RouteAction_HashPolicy_Header_msginit = {
398
398
  &envoy_config_route_v3_RouteAction_HashPolicy_Header_submsgs[0],
399
399
  &envoy_config_route_v3_RouteAction_HashPolicy_Header__fields[0],
400
- UPB_SIZE(16, 32), 2, false,
400
+ UPB_SIZE(16, 32), 2, false, 255,
401
401
  };
402
402
 
403
403
  static const upb_msglayout *const envoy_config_route_v3_RouteAction_HashPolicy_Cookie_submsgs[1] = {
@@ -405,15 +405,15 @@ static const upb_msglayout *const envoy_config_route_v3_RouteAction_HashPolicy_C
405
405
  };
406
406
 
407
407
  static const upb_msglayout_field envoy_config_route_v3_RouteAction_HashPolicy_Cookie__fields[3] = {
408
- {1, UPB_SIZE(0, 0), 0, 0, 9, 1},
409
- {2, UPB_SIZE(16, 32), 0, 0, 11, 1},
410
- {3, UPB_SIZE(8, 16), 0, 0, 9, 1},
408
+ {1, UPB_SIZE(4, 8), 0, 0, 9, 1},
409
+ {2, UPB_SIZE(20, 40), 1, 0, 11, 1},
410
+ {3, UPB_SIZE(12, 24), 0, 0, 9, 1},
411
411
  };
412
412
 
413
413
  const upb_msglayout envoy_config_route_v3_RouteAction_HashPolicy_Cookie_msginit = {
414
414
  &envoy_config_route_v3_RouteAction_HashPolicy_Cookie_submsgs[0],
415
415
  &envoy_config_route_v3_RouteAction_HashPolicy_Cookie__fields[0],
416
- UPB_SIZE(24, 48), 3, false,
416
+ UPB_SIZE(24, 48), 3, false, 255,
417
417
  };
418
418
 
419
419
  static const upb_msglayout_field envoy_config_route_v3_RouteAction_HashPolicy_ConnectionProperties__fields[1] = {
@@ -423,7 +423,7 @@ static const upb_msglayout_field envoy_config_route_v3_RouteAction_HashPolicy_Co
423
423
  const upb_msglayout envoy_config_route_v3_RouteAction_HashPolicy_ConnectionProperties_msginit = {
424
424
  NULL,
425
425
  &envoy_config_route_v3_RouteAction_HashPolicy_ConnectionProperties__fields[0],
426
- UPB_SIZE(1, 1), 1, false,
426
+ UPB_SIZE(8, 8), 1, false, 255,
427
427
  };
428
428
 
429
429
  static const upb_msglayout_field envoy_config_route_v3_RouteAction_HashPolicy_QueryParameter__fields[1] = {
@@ -433,7 +433,7 @@ static const upb_msglayout_field envoy_config_route_v3_RouteAction_HashPolicy_Qu
433
433
  const upb_msglayout envoy_config_route_v3_RouteAction_HashPolicy_QueryParameter_msginit = {
434
434
  NULL,
435
435
  &envoy_config_route_v3_RouteAction_HashPolicy_QueryParameter__fields[0],
436
- UPB_SIZE(8, 16), 1, false,
436
+ UPB_SIZE(8, 16), 1, false, 255,
437
437
  };
438
438
 
439
439
  static const upb_msglayout_field envoy_config_route_v3_RouteAction_HashPolicy_FilterState__fields[1] = {
@@ -443,7 +443,7 @@ static const upb_msglayout_field envoy_config_route_v3_RouteAction_HashPolicy_Fi
443
443
  const upb_msglayout envoy_config_route_v3_RouteAction_HashPolicy_FilterState_msginit = {
444
444
  NULL,
445
445
  &envoy_config_route_v3_RouteAction_HashPolicy_FilterState__fields[0],
446
- UPB_SIZE(8, 16), 1, false,
446
+ UPB_SIZE(8, 16), 1, false, 255,
447
447
  };
448
448
 
449
449
  static const upb_msglayout *const envoy_config_route_v3_RouteAction_UpgradeConfig_submsgs[2] = {
@@ -452,15 +452,15 @@ static const upb_msglayout *const envoy_config_route_v3_RouteAction_UpgradeConfi
452
452
  };
453
453
 
454
454
  static const upb_msglayout_field envoy_config_route_v3_RouteAction_UpgradeConfig__fields[3] = {
455
- {1, UPB_SIZE(0, 0), 0, 0, 9, 1},
456
- {2, UPB_SIZE(8, 16), 0, 1, 11, 1},
457
- {3, UPB_SIZE(12, 24), 0, 0, 11, 1},
455
+ {1, UPB_SIZE(4, 8), 0, 0, 9, 1},
456
+ {2, UPB_SIZE(12, 24), 1, 1, 11, 1},
457
+ {3, UPB_SIZE(16, 32), 2, 0, 11, 1},
458
458
  };
459
459
 
460
460
  const upb_msglayout envoy_config_route_v3_RouteAction_UpgradeConfig_msginit = {
461
461
  &envoy_config_route_v3_RouteAction_UpgradeConfig_submsgs[0],
462
462
  &envoy_config_route_v3_RouteAction_UpgradeConfig__fields[0],
463
- UPB_SIZE(16, 32), 3, false,
463
+ UPB_SIZE(24, 48), 3, false, 255,
464
464
  };
465
465
 
466
466
  static const upb_msglayout *const envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig_submsgs[1] = {
@@ -468,32 +468,32 @@ static const upb_msglayout *const envoy_config_route_v3_RouteAction_UpgradeConfi
468
468
  };
469
469
 
470
470
  static const upb_msglayout_field envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig__fields[1] = {
471
- {1, UPB_SIZE(0, 0), 0, 0, 11, 1},
471
+ {1, UPB_SIZE(4, 8), 1, 0, 11, 1},
472
472
  };
473
473
 
474
474
  const upb_msglayout envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig_msginit = {
475
475
  &envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig_submsgs[0],
476
476
  &envoy_config_route_v3_RouteAction_UpgradeConfig_ConnectConfig__fields[0],
477
- UPB_SIZE(4, 8), 1, false,
477
+ UPB_SIZE(8, 16), 1, false, 255,
478
478
  };
479
479
 
480
- static const upb_msglayout *const envoy_config_route_v3_RouteAction_MaxStreamDuration_submsgs[3] = {
480
+ static const upb_msglayout *const envoy_config_route_v3_RouteAction_MaxStreamDuration_submsgs[1] = {
481
481
  &google_protobuf_Duration_msginit,
482
482
  };
483
483
 
484
484
  static const upb_msglayout_field envoy_config_route_v3_RouteAction_MaxStreamDuration__fields[3] = {
485
- {1, UPB_SIZE(0, 0), 0, 0, 11, 1},
486
- {2, UPB_SIZE(4, 8), 0, 0, 11, 1},
487
- {3, UPB_SIZE(8, 16), 0, 0, 11, 1},
485
+ {1, UPB_SIZE(4, 8), 1, 0, 11, 1},
486
+ {2, UPB_SIZE(8, 16), 2, 0, 11, 1},
487
+ {3, UPB_SIZE(12, 24), 3, 0, 11, 1},
488
488
  };
489
489
 
490
490
  const upb_msglayout envoy_config_route_v3_RouteAction_MaxStreamDuration_msginit = {
491
491
  &envoy_config_route_v3_RouteAction_MaxStreamDuration_submsgs[0],
492
492
  &envoy_config_route_v3_RouteAction_MaxStreamDuration__fields[0],
493
- UPB_SIZE(12, 24), 3, false,
493
+ UPB_SIZE(16, 32), 3, false, 255,
494
494
  };
495
495
 
496
- static const upb_msglayout *const envoy_config_route_v3_RetryPolicy_submsgs[8] = {
496
+ static const upb_msglayout *const envoy_config_route_v3_RetryPolicy_submsgs[7] = {
497
497
  &envoy_config_route_v3_HeaderMatcher_msginit,
498
498
  &envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff_msginit,
499
499
  &envoy_config_route_v3_RetryPolicy_RetryBackOff_msginit,
@@ -504,23 +504,23 @@ static const upb_msglayout *const envoy_config_route_v3_RetryPolicy_submsgs[8] =
504
504
  };
505
505
 
506
506
  static const upb_msglayout_field envoy_config_route_v3_RetryPolicy__fields[11] = {
507
- {1, UPB_SIZE(8, 8), 0, 0, 9, 1},
508
- {2, UPB_SIZE(16, 24), 0, 6, 11, 1},
509
- {3, UPB_SIZE(20, 32), 0, 5, 11, 1},
510
- {4, UPB_SIZE(24, 40), 0, 4, 11, 1},
511
- {5, UPB_SIZE(36, 64), 0, 3, 11, 3},
512
- {6, UPB_SIZE(0, 0), 0, 0, 3, 1},
513
- {7, UPB_SIZE(40, 72), 0, 0, 13, _UPB_LABEL_PACKED},
514
- {8, UPB_SIZE(28, 48), 0, 2, 11, 1},
515
- {9, UPB_SIZE(44, 80), 0, 0, 11, 3},
516
- {10, UPB_SIZE(48, 88), 0, 0, 11, 3},
517
- {11, UPB_SIZE(32, 56), 0, 1, 11, 1},
507
+ {1, UPB_SIZE(16, 16), 0, 0, 9, 1},
508
+ {2, UPB_SIZE(24, 32), 1, 6, 11, 1},
509
+ {3, UPB_SIZE(28, 40), 2, 5, 11, 1},
510
+ {4, UPB_SIZE(32, 48), 3, 4, 11, 1},
511
+ {5, UPB_SIZE(44, 72), 0, 3, 11, 3},
512
+ {6, UPB_SIZE(8, 8), 0, 0, 3, 1},
513
+ {7, UPB_SIZE(48, 80), 0, 0, 13, _UPB_LABEL_PACKED},
514
+ {8, UPB_SIZE(36, 56), 4, 2, 11, 1},
515
+ {9, UPB_SIZE(52, 88), 0, 0, 11, 3},
516
+ {10, UPB_SIZE(56, 96), 0, 0, 11, 3},
517
+ {11, UPB_SIZE(40, 64), 5, 1, 11, 1},
518
518
  };
519
519
 
520
520
  const upb_msglayout envoy_config_route_v3_RetryPolicy_msginit = {
521
521
  &envoy_config_route_v3_RetryPolicy_submsgs[0],
522
522
  &envoy_config_route_v3_RetryPolicy__fields[0],
523
- UPB_SIZE(56, 96), 11, false,
523
+ UPB_SIZE(64, 112), 11, false, 255,
524
524
  };
525
525
 
526
526
  static const upb_msglayout *const envoy_config_route_v3_RetryPolicy_RetryPriority_submsgs[1] = {
@@ -535,7 +535,7 @@ static const upb_msglayout_field envoy_config_route_v3_RetryPolicy_RetryPriority
535
535
  const upb_msglayout envoy_config_route_v3_RetryPolicy_RetryPriority_msginit = {
536
536
  &envoy_config_route_v3_RetryPolicy_RetryPriority_submsgs[0],
537
537
  &envoy_config_route_v3_RetryPolicy_RetryPriority__fields[0],
538
- UPB_SIZE(16, 32), 2, false,
538
+ UPB_SIZE(16, 32), 2, false, 255,
539
539
  };
540
540
 
541
541
  static const upb_msglayout *const envoy_config_route_v3_RetryPolicy_RetryHostPredicate_submsgs[1] = {
@@ -550,33 +550,33 @@ static const upb_msglayout_field envoy_config_route_v3_RetryPolicy_RetryHostPred
550
550
  const upb_msglayout envoy_config_route_v3_RetryPolicy_RetryHostPredicate_msginit = {
551
551
  &envoy_config_route_v3_RetryPolicy_RetryHostPredicate_submsgs[0],
552
552
  &envoy_config_route_v3_RetryPolicy_RetryHostPredicate__fields[0],
553
- UPB_SIZE(16, 32), 2, false,
553
+ UPB_SIZE(16, 32), 2, false, 255,
554
554
  };
555
555
 
556
- static const upb_msglayout *const envoy_config_route_v3_RetryPolicy_RetryBackOff_submsgs[2] = {
556
+ static const upb_msglayout *const envoy_config_route_v3_RetryPolicy_RetryBackOff_submsgs[1] = {
557
557
  &google_protobuf_Duration_msginit,
558
558
  };
559
559
 
560
560
  static const upb_msglayout_field envoy_config_route_v3_RetryPolicy_RetryBackOff__fields[2] = {
561
- {1, UPB_SIZE(0, 0), 0, 0, 11, 1},
562
- {2, UPB_SIZE(4, 8), 0, 0, 11, 1},
561
+ {1, UPB_SIZE(4, 8), 1, 0, 11, 1},
562
+ {2, UPB_SIZE(8, 16), 2, 0, 11, 1},
563
563
  };
564
564
 
565
565
  const upb_msglayout envoy_config_route_v3_RetryPolicy_RetryBackOff_msginit = {
566
566
  &envoy_config_route_v3_RetryPolicy_RetryBackOff_submsgs[0],
567
567
  &envoy_config_route_v3_RetryPolicy_RetryBackOff__fields[0],
568
- UPB_SIZE(8, 16), 2, false,
568
+ UPB_SIZE(16, 24), 2, false, 255,
569
569
  };
570
570
 
571
571
  static const upb_msglayout_field envoy_config_route_v3_RetryPolicy_ResetHeader__fields[2] = {
572
- {1, UPB_SIZE(8, 8), 0, 0, 9, 1},
572
+ {1, UPB_SIZE(4, 8), 0, 0, 9, 1},
573
573
  {2, UPB_SIZE(0, 0), 0, 0, 14, 1},
574
574
  };
575
575
 
576
576
  const upb_msglayout envoy_config_route_v3_RetryPolicy_ResetHeader_msginit = {
577
577
  NULL,
578
578
  &envoy_config_route_v3_RetryPolicy_ResetHeader__fields[0],
579
- UPB_SIZE(16, 32), 2, false,
579
+ UPB_SIZE(16, 32), 2, false, 255,
580
580
  };
581
581
 
582
582
  static const upb_msglayout *const envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff_submsgs[2] = {
@@ -585,14 +585,14 @@ static const upb_msglayout *const envoy_config_route_v3_RetryPolicy_RateLimitedR
585
585
  };
586
586
 
587
587
  static const upb_msglayout_field envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff__fields[2] = {
588
- {1, UPB_SIZE(4, 8), 0, 0, 11, 3},
589
- {2, UPB_SIZE(0, 0), 0, 1, 11, 1},
588
+ {1, UPB_SIZE(8, 16), 0, 0, 11, 3},
589
+ {2, UPB_SIZE(4, 8), 1, 1, 11, 1},
590
590
  };
591
591
 
592
592
  const upb_msglayout envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff_msginit = {
593
593
  &envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff_submsgs[0],
594
594
  &envoy_config_route_v3_RetryPolicy_RateLimitedRetryBackOff__fields[0],
595
- UPB_SIZE(8, 16), 2, false,
595
+ UPB_SIZE(16, 24), 2, false, 255,
596
596
  };
597
597
 
598
598
  static const upb_msglayout *const envoy_config_route_v3_HedgePolicy_submsgs[2] = {
@@ -601,32 +601,32 @@ static const upb_msglayout *const envoy_config_route_v3_HedgePolicy_submsgs[2] =
601
601
  };
602
602
 
603
603
  static const upb_msglayout_field envoy_config_route_v3_HedgePolicy__fields[3] = {
604
- {1, UPB_SIZE(4, 8), 0, 1, 11, 1},
605
- {2, UPB_SIZE(8, 16), 0, 0, 11, 1},
606
- {3, UPB_SIZE(0, 0), 0, 0, 8, 1},
604
+ {1, UPB_SIZE(4, 8), 1, 1, 11, 1},
605
+ {2, UPB_SIZE(8, 16), 2, 0, 11, 1},
606
+ {3, UPB_SIZE(1, 1), 0, 0, 8, 1},
607
607
  };
608
608
 
609
609
  const upb_msglayout envoy_config_route_v3_HedgePolicy_msginit = {
610
610
  &envoy_config_route_v3_HedgePolicy_submsgs[0],
611
611
  &envoy_config_route_v3_HedgePolicy__fields[0],
612
- UPB_SIZE(12, 24), 3, false,
612
+ UPB_SIZE(16, 24), 3, false, 255,
613
613
  };
614
614
 
615
615
  static const upb_msglayout_field envoy_config_route_v3_RedirectAction__fields[8] = {
616
- {1, UPB_SIZE(16, 16), 0, 0, 9, 1},
617
- {2, UPB_SIZE(24, 32), UPB_SIZE(-33, -49), 0, 9, 1},
616
+ {1, UPB_SIZE(12, 16), 0, 0, 9, 1},
617
+ {2, UPB_SIZE(20, 32), UPB_SIZE(-29, -49), 0, 9, 1},
618
618
  {3, UPB_SIZE(0, 0), 0, 0, 14, 1},
619
- {4, UPB_SIZE(36, 56), UPB_SIZE(-45, -73), 0, 8, 1},
620
- {5, UPB_SIZE(24, 32), UPB_SIZE(-33, -49), 0, 9, 1},
621
- {6, UPB_SIZE(12, 12), 0, 0, 8, 1},
622
- {7, UPB_SIZE(36, 56), UPB_SIZE(-45, -73), 0, 9, 1},
623
- {8, UPB_SIZE(8, 8), 0, 0, 13, 1},
619
+ {4, UPB_SIZE(32, 56), UPB_SIZE(-41, -73), 0, 8, 1},
620
+ {5, UPB_SIZE(20, 32), UPB_SIZE(-29, -49), 0, 9, 1},
621
+ {6, UPB_SIZE(8, 8), 0, 0, 8, 1},
622
+ {7, UPB_SIZE(32, 56), UPB_SIZE(-41, -73), 0, 9, 1},
623
+ {8, UPB_SIZE(4, 4), 0, 0, 13, 1},
624
624
  };
625
625
 
626
626
  const upb_msglayout envoy_config_route_v3_RedirectAction_msginit = {
627
627
  NULL,
628
628
  &envoy_config_route_v3_RedirectAction__fields[0],
629
- UPB_SIZE(48, 80), 8, false,
629
+ UPB_SIZE(48, 80), 8, false, 255,
630
630
  };
631
631
 
632
632
  static const upb_msglayout *const envoy_config_route_v3_DirectResponseAction_submsgs[1] = {
@@ -634,14 +634,14 @@ static const upb_msglayout *const envoy_config_route_v3_DirectResponseAction_sub
634
634
  };
635
635
 
636
636
  static const upb_msglayout_field envoy_config_route_v3_DirectResponseAction__fields[2] = {
637
- {1, UPB_SIZE(0, 0), 0, 0, 13, 1},
638
- {2, UPB_SIZE(4, 8), 0, 0, 11, 1},
637
+ {1, UPB_SIZE(4, 4), 0, 0, 13, 1},
638
+ {2, UPB_SIZE(8, 8), 1, 0, 11, 1},
639
639
  };
640
640
 
641
641
  const upb_msglayout envoy_config_route_v3_DirectResponseAction_msginit = {
642
642
  &envoy_config_route_v3_DirectResponseAction_submsgs[0],
643
643
  &envoy_config_route_v3_DirectResponseAction__fields[0],
644
- UPB_SIZE(8, 16), 2, false,
644
+ UPB_SIZE(16, 16), 2, false, 255,
645
645
  };
646
646
 
647
647
  static const upb_msglayout *const envoy_config_route_v3_Decorator_submsgs[1] = {
@@ -649,32 +649,32 @@ static const upb_msglayout *const envoy_config_route_v3_Decorator_submsgs[1] = {
649
649
  };
650
650
 
651
651
  static const upb_msglayout_field envoy_config_route_v3_Decorator__fields[2] = {
652
- {1, UPB_SIZE(0, 0), 0, 0, 9, 1},
653
- {2, UPB_SIZE(8, 16), 0, 0, 11, 1},
652
+ {1, UPB_SIZE(4, 8), 0, 0, 9, 1},
653
+ {2, UPB_SIZE(12, 24), 1, 0, 11, 1},
654
654
  };
655
655
 
656
656
  const upb_msglayout envoy_config_route_v3_Decorator_msginit = {
657
657
  &envoy_config_route_v3_Decorator_submsgs[0],
658
658
  &envoy_config_route_v3_Decorator__fields[0],
659
- UPB_SIZE(16, 32), 2, false,
659
+ UPB_SIZE(16, 32), 2, false, 255,
660
660
  };
661
661
 
662
- static const upb_msglayout *const envoy_config_route_v3_Tracing_submsgs[4] = {
662
+ static const upb_msglayout *const envoy_config_route_v3_Tracing_submsgs[2] = {
663
663
  &envoy_type_tracing_v3_CustomTag_msginit,
664
664
  &envoy_type_v3_FractionalPercent_msginit,
665
665
  };
666
666
 
667
667
  static const upb_msglayout_field envoy_config_route_v3_Tracing__fields[4] = {
668
- {1, UPB_SIZE(0, 0), 0, 1, 11, 1},
669
- {2, UPB_SIZE(4, 8), 0, 1, 11, 1},
670
- {3, UPB_SIZE(8, 16), 0, 1, 11, 1},
671
- {4, UPB_SIZE(12, 24), 0, 0, 11, 3},
668
+ {1, UPB_SIZE(4, 8), 1, 1, 11, 1},
669
+ {2, UPB_SIZE(8, 16), 2, 1, 11, 1},
670
+ {3, UPB_SIZE(12, 24), 3, 1, 11, 1},
671
+ {4, UPB_SIZE(16, 32), 0, 0, 11, 3},
672
672
  };
673
673
 
674
674
  const upb_msglayout envoy_config_route_v3_Tracing_msginit = {
675
675
  &envoy_config_route_v3_Tracing_submsgs[0],
676
676
  &envoy_config_route_v3_Tracing__fields[0],
677
- UPB_SIZE(16, 32), 4, false,
677
+ UPB_SIZE(24, 40), 4, false, 255,
678
678
  };
679
679
 
680
680
  static const upb_msglayout *const envoy_config_route_v3_VirtualCluster_submsgs[1] = {
@@ -689,7 +689,7 @@ static const upb_msglayout_field envoy_config_route_v3_VirtualCluster__fields[2]
689
689
  const upb_msglayout envoy_config_route_v3_VirtualCluster_msginit = {
690
690
  &envoy_config_route_v3_VirtualCluster_submsgs[0],
691
691
  &envoy_config_route_v3_VirtualCluster__fields[0],
692
- UPB_SIZE(16, 32), 2, false,
692
+ UPB_SIZE(16, 32), 2, false, 255,
693
693
  };
694
694
 
695
695
  static const upb_msglayout *const envoy_config_route_v3_RateLimit_submsgs[3] = {
@@ -699,16 +699,16 @@ static const upb_msglayout *const envoy_config_route_v3_RateLimit_submsgs[3] = {
699
699
  };
700
700
 
701
701
  static const upb_msglayout_field envoy_config_route_v3_RateLimit__fields[4] = {
702
- {1, UPB_SIZE(8, 16), 0, 2, 11, 1},
703
- {2, UPB_SIZE(0, 0), 0, 0, 9, 1},
704
- {3, UPB_SIZE(16, 32), 0, 0, 11, 3},
705
- {4, UPB_SIZE(12, 24), 0, 1, 11, 1},
702
+ {1, UPB_SIZE(12, 24), 1, 2, 11, 1},
703
+ {2, UPB_SIZE(4, 8), 0, 0, 9, 1},
704
+ {3, UPB_SIZE(20, 40), 0, 0, 11, 3},
705
+ {4, UPB_SIZE(16, 32), 2, 1, 11, 1},
706
706
  };
707
707
 
708
708
  const upb_msglayout envoy_config_route_v3_RateLimit_msginit = {
709
709
  &envoy_config_route_v3_RateLimit_submsgs[0],
710
710
  &envoy_config_route_v3_RateLimit__fields[0],
711
- UPB_SIZE(24, 48), 4, false,
711
+ UPB_SIZE(24, 48), 4, false, 255,
712
712
  };
713
713
 
714
714
  static const upb_msglayout *const envoy_config_route_v3_RateLimit_Action_submsgs[7] = {
@@ -734,19 +734,19 @@ static const upb_msglayout_field envoy_config_route_v3_RateLimit_Action__fields[
734
734
  const upb_msglayout envoy_config_route_v3_RateLimit_Action_msginit = {
735
735
  &envoy_config_route_v3_RateLimit_Action_submsgs[0],
736
736
  &envoy_config_route_v3_RateLimit_Action__fields[0],
737
- UPB_SIZE(8, 16), 7, false,
737
+ UPB_SIZE(8, 16), 7, false, 255,
738
738
  };
739
739
 
740
740
  const upb_msglayout envoy_config_route_v3_RateLimit_Action_SourceCluster_msginit = {
741
741
  NULL,
742
742
  NULL,
743
- UPB_SIZE(0, 0), 0, false,
743
+ UPB_SIZE(0, 0), 0, false, 255,
744
744
  };
745
745
 
746
746
  const upb_msglayout envoy_config_route_v3_RateLimit_Action_DestinationCluster_msginit = {
747
747
  NULL,
748
748
  NULL,
749
- UPB_SIZE(0, 0), 0, false,
749
+ UPB_SIZE(0, 0), 0, false, 255,
750
750
  };
751
751
 
752
752
  static const upb_msglayout_field envoy_config_route_v3_RateLimit_Action_RequestHeaders__fields[3] = {
@@ -758,13 +758,13 @@ static const upb_msglayout_field envoy_config_route_v3_RateLimit_Action_RequestH
758
758
  const upb_msglayout envoy_config_route_v3_RateLimit_Action_RequestHeaders_msginit = {
759
759
  NULL,
760
760
  &envoy_config_route_v3_RateLimit_Action_RequestHeaders__fields[0],
761
- UPB_SIZE(24, 48), 3, false,
761
+ UPB_SIZE(24, 48), 3, false, 255,
762
762
  };
763
763
 
764
764
  const upb_msglayout envoy_config_route_v3_RateLimit_Action_RemoteAddress_msginit = {
765
765
  NULL,
766
766
  NULL,
767
- UPB_SIZE(0, 0), 0, false,
767
+ UPB_SIZE(0, 0), 0, false, 255,
768
768
  };
769
769
 
770
770
  static const upb_msglayout_field envoy_config_route_v3_RateLimit_Action_GenericKey__fields[2] = {
@@ -775,7 +775,7 @@ static const upb_msglayout_field envoy_config_route_v3_RateLimit_Action_GenericK
775
775
  const upb_msglayout envoy_config_route_v3_RateLimit_Action_GenericKey_msginit = {
776
776
  NULL,
777
777
  &envoy_config_route_v3_RateLimit_Action_GenericKey__fields[0],
778
- UPB_SIZE(16, 32), 2, false,
778
+ UPB_SIZE(16, 32), 2, false, 255,
779
779
  };
780
780
 
781
781
  static const upb_msglayout *const envoy_config_route_v3_RateLimit_Action_HeaderValueMatch_submsgs[2] = {
@@ -784,15 +784,15 @@ static const upb_msglayout *const envoy_config_route_v3_RateLimit_Action_HeaderV
784
784
  };
785
785
 
786
786
  static const upb_msglayout_field envoy_config_route_v3_RateLimit_Action_HeaderValueMatch__fields[3] = {
787
- {1, UPB_SIZE(0, 0), 0, 0, 9, 1},
788
- {2, UPB_SIZE(8, 16), 0, 1, 11, 1},
789
- {3, UPB_SIZE(12, 24), 0, 0, 11, 3},
787
+ {1, UPB_SIZE(4, 8), 0, 0, 9, 1},
788
+ {2, UPB_SIZE(12, 24), 1, 1, 11, 1},
789
+ {3, UPB_SIZE(16, 32), 0, 0, 11, 3},
790
790
  };
791
791
 
792
792
  const upb_msglayout envoy_config_route_v3_RateLimit_Action_HeaderValueMatch_msginit = {
793
793
  &envoy_config_route_v3_RateLimit_Action_HeaderValueMatch_submsgs[0],
794
794
  &envoy_config_route_v3_RateLimit_Action_HeaderValueMatch__fields[0],
795
- UPB_SIZE(16, 32), 3, false,
795
+ UPB_SIZE(24, 48), 3, false, 255,
796
796
  };
797
797
 
798
798
  static const upb_msglayout *const envoy_config_route_v3_RateLimit_Action_DynamicMetaData_submsgs[1] = {
@@ -800,15 +800,15 @@ static const upb_msglayout *const envoy_config_route_v3_RateLimit_Action_Dynamic
800
800
  };
801
801
 
802
802
  static const upb_msglayout_field envoy_config_route_v3_RateLimit_Action_DynamicMetaData__fields[3] = {
803
- {1, UPB_SIZE(0, 0), 0, 0, 9, 1},
804
- {2, UPB_SIZE(16, 32), 0, 0, 11, 1},
805
- {3, UPB_SIZE(8, 16), 0, 0, 9, 1},
803
+ {1, UPB_SIZE(4, 8), 0, 0, 9, 1},
804
+ {2, UPB_SIZE(20, 40), 1, 0, 11, 1},
805
+ {3, UPB_SIZE(12, 24), 0, 0, 9, 1},
806
806
  };
807
807
 
808
808
  const upb_msglayout envoy_config_route_v3_RateLimit_Action_DynamicMetaData_msginit = {
809
809
  &envoy_config_route_v3_RateLimit_Action_DynamicMetaData_submsgs[0],
810
810
  &envoy_config_route_v3_RateLimit_Action_DynamicMetaData__fields[0],
811
- UPB_SIZE(24, 48), 3, false,
811
+ UPB_SIZE(24, 48), 3, false, 255,
812
812
  };
813
813
 
814
814
  static const upb_msglayout *const envoy_config_route_v3_RateLimit_Override_submsgs[1] = {
@@ -822,7 +822,7 @@ static const upb_msglayout_field envoy_config_route_v3_RateLimit_Override__field
822
822
  const upb_msglayout envoy_config_route_v3_RateLimit_Override_msginit = {
823
823
  &envoy_config_route_v3_RateLimit_Override_submsgs[0],
824
824
  &envoy_config_route_v3_RateLimit_Override__fields[0],
825
- UPB_SIZE(8, 16), 1, false,
825
+ UPB_SIZE(8, 16), 1, false, 255,
826
826
  };
827
827
 
828
828
  static const upb_msglayout *const envoy_config_route_v3_RateLimit_Override_DynamicMetadata_submsgs[1] = {
@@ -830,13 +830,13 @@ static const upb_msglayout *const envoy_config_route_v3_RateLimit_Override_Dynam
830
830
  };
831
831
 
832
832
  static const upb_msglayout_field envoy_config_route_v3_RateLimit_Override_DynamicMetadata__fields[1] = {
833
- {1, UPB_SIZE(0, 0), 0, 0, 11, 1},
833
+ {1, UPB_SIZE(4, 8), 1, 0, 11, 1},
834
834
  };
835
835
 
836
836
  const upb_msglayout envoy_config_route_v3_RateLimit_Override_DynamicMetadata_msginit = {
837
837
  &envoy_config_route_v3_RateLimit_Override_DynamicMetadata_submsgs[0],
838
838
  &envoy_config_route_v3_RateLimit_Override_DynamicMetadata__fields[0],
839
- UPB_SIZE(4, 8), 1, false,
839
+ UPB_SIZE(8, 16), 1, false, 255,
840
840
  };
841
841
 
842
842
  static const upb_msglayout *const envoy_config_route_v3_HeaderMatcher_submsgs[2] = {
@@ -859,7 +859,7 @@ static const upb_msglayout_field envoy_config_route_v3_HeaderMatcher__fields[9]
859
859
  const upb_msglayout envoy_config_route_v3_HeaderMatcher_msginit = {
860
860
  &envoy_config_route_v3_HeaderMatcher_submsgs[0],
861
861
  &envoy_config_route_v3_HeaderMatcher__fields[0],
862
- UPB_SIZE(24, 48), 9, false,
862
+ UPB_SIZE(24, 48), 9, false, 255,
863
863
  };
864
864
 
865
865
  static const upb_msglayout *const envoy_config_route_v3_QueryParameterMatcher_submsgs[1] = {
@@ -875,7 +875,7 @@ static const upb_msglayout_field envoy_config_route_v3_QueryParameterMatcher__fi
875
875
  const upb_msglayout envoy_config_route_v3_QueryParameterMatcher_msginit = {
876
876
  &envoy_config_route_v3_QueryParameterMatcher_submsgs[0],
877
877
  &envoy_config_route_v3_QueryParameterMatcher__fields[0],
878
- UPB_SIZE(16, 32), 3, false,
878
+ UPB_SIZE(16, 32), 3, false, 255,
879
879
  };
880
880
 
881
881
  static const upb_msglayout *const envoy_config_route_v3_InternalRedirectPolicy_submsgs[2] = {
@@ -884,16 +884,16 @@ static const upb_msglayout *const envoy_config_route_v3_InternalRedirectPolicy_s
884
884
  };
885
885
 
886
886
  static const upb_msglayout_field envoy_config_route_v3_InternalRedirectPolicy__fields[4] = {
887
- {1, UPB_SIZE(4, 8), 0, 1, 11, 1},
887
+ {1, UPB_SIZE(4, 8), 1, 1, 11, 1},
888
888
  {2, UPB_SIZE(8, 16), 0, 0, 13, _UPB_LABEL_PACKED},
889
889
  {3, UPB_SIZE(12, 24), 0, 0, 11, 3},
890
- {4, UPB_SIZE(0, 0), 0, 0, 8, 1},
890
+ {4, UPB_SIZE(1, 1), 0, 0, 8, 1},
891
891
  };
892
892
 
893
893
  const upb_msglayout envoy_config_route_v3_InternalRedirectPolicy_msginit = {
894
894
  &envoy_config_route_v3_InternalRedirectPolicy_submsgs[0],
895
895
  &envoy_config_route_v3_InternalRedirectPolicy__fields[0],
896
- UPB_SIZE(16, 32), 4, false,
896
+ UPB_SIZE(16, 32), 4, false, 255,
897
897
  };
898
898
 
899
899
  #include "upb/port_undef.inc"