grpc 1.32.0 → 1.33.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 (214) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +175 -376
  3. data/include/grpc/grpc.h +0 -5
  4. data/include/grpc/grpc_security.h +16 -0
  5. data/include/grpc/impl/codegen/grpc_types.h +0 -5
  6. data/src/core/ext/filters/client_channel/client_channel.cc +204 -170
  7. data/src/core/ext/filters/client_channel/config_selector.cc +0 -4
  8. data/src/core/ext/filters/client_channel/config_selector.h +34 -5
  9. data/src/core/ext/filters/client_channel/lb_policy.h +1 -1
  10. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +48 -35
  11. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +7 -5
  12. data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +3 -2
  13. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +106 -106
  14. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +2 -2
  15. data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +3 -3
  16. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +3 -3
  17. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +9 -32
  18. data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +3 -3
  19. data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +198 -126
  20. data/src/core/ext/filters/client_channel/lb_policy/xds/eds.cc +439 -249
  21. data/src/core/ext/filters/client_channel/lb_policy/xds/eds_drop.cc +571 -0
  22. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +727 -0
  23. data/src/core/ext/filters/client_channel/lb_policy_registry.cc +8 -1
  24. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +1 -1
  25. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +553 -358
  26. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h +28 -0
  27. data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +8 -39
  28. data/src/core/ext/filters/client_channel/resolver_result_parsing.h +4 -2
  29. data/src/core/ext/filters/client_channel/resolving_lb_policy.cc +44 -43
  30. data/src/core/ext/filters/client_channel/resolving_lb_policy.h +5 -9
  31. data/src/core/ext/filters/client_channel/server_address.cc +80 -0
  32. data/src/core/ext/filters/client_channel/server_address.h +25 -36
  33. data/src/core/ext/filters/client_channel/service_config.cc +16 -13
  34. data/src/core/ext/filters/client_channel/service_config.h +7 -4
  35. data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +2 -2
  36. data/src/core/ext/filters/client_channel/service_config_parser.cc +8 -6
  37. data/src/core/ext/filters/client_channel/service_config_parser.h +8 -5
  38. data/src/core/ext/filters/client_channel/subchannel_interface.h +44 -0
  39. data/src/core/ext/filters/message_size/message_size_filter.cc +2 -1
  40. data/src/core/ext/filters/message_size/message_size_filter.h +2 -1
  41. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +17 -10
  42. data/src/core/ext/transport/chttp2/transport/flow_control.cc +10 -2
  43. data/src/core/ext/transport/chttp2/transport/flow_control.h +10 -0
  44. data/src/core/ext/transport/chttp2/transport/internal.h +5 -0
  45. data/src/core/ext/transport/chttp2/transport/parsing.cc +16 -2
  46. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +29 -9
  47. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +66 -0
  48. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +123 -45
  49. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +310 -53
  50. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c +17 -5
  51. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h +45 -0
  52. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +1 -0
  53. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +16 -9
  54. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +38 -15
  55. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c +53 -0
  56. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h +133 -0
  57. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +54 -8
  58. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +123 -5
  59. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +40 -16
  60. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +114 -5
  61. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c +36 -0
  62. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h +85 -0
  63. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +36 -16
  64. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +86 -20
  65. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c +23 -6
  66. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h +54 -5
  67. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +10 -6
  68. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +28 -11
  69. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +184 -57
  70. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +504 -69
  71. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c +6 -5
  72. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h +11 -7
  73. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +78 -26
  74. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +236 -25
  75. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c +8 -9
  76. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h +19 -33
  77. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c +7 -3
  78. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +16 -0
  79. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c +65 -23
  80. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +229 -47
  81. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c +20 -10
  82. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h +67 -4
  83. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c +3 -2
  84. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h +6 -0
  85. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c +242 -0
  86. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h +753 -0
  87. data/src/core/ext/upb-generated/udpa/annotations/security.upb.c +31 -0
  88. data/src/core/ext/upb-generated/udpa/annotations/security.upb.h +57 -0
  89. data/src/core/ext/upb-generated/udpa/core/v1/authority.upb.c +28 -0
  90. data/src/core/ext/upb-generated/udpa/core/v1/authority.upb.h +53 -0
  91. data/src/core/ext/upb-generated/udpa/core/v1/collection_entry.upb.c +52 -0
  92. data/src/core/ext/upb-generated/udpa/core/v1/collection_entry.upb.h +129 -0
  93. data/src/core/ext/upb-generated/udpa/core/v1/context_params.upb.c +42 -0
  94. data/src/core/ext/upb-generated/udpa/core/v1/context_params.upb.h +77 -0
  95. data/src/core/ext/upb-generated/udpa/core/v1/resource.upb.c +36 -0
  96. data/src/core/ext/upb-generated/udpa/core/v1/resource.upb.h +85 -0
  97. data/src/core/ext/upb-generated/udpa/core/v1/resource_locator.upb.c +54 -0
  98. data/src/core/ext/upb-generated/udpa/core/v1/resource_locator.upb.h +160 -0
  99. data/src/core/ext/upb-generated/udpa/core/v1/resource_name.upb.c +36 -0
  100. data/src/core/ext/upb-generated/udpa/core/v1/resource_name.upb.h +84 -0
  101. data/src/core/ext/xds/certificate_provider_factory.h +59 -0
  102. data/src/core/ext/xds/certificate_provider_registry.cc +103 -0
  103. data/src/core/ext/xds/certificate_provider_registry.h +57 -0
  104. data/src/core/ext/xds/certificate_provider_store.h +50 -0
  105. data/src/core/ext/xds/google_mesh_ca_certificate_provider_factory.cc +377 -0
  106. data/src/core/ext/xds/google_mesh_ca_certificate_provider_factory.h +102 -0
  107. data/src/core/ext/xds/xds_api.cc +301 -93
  108. data/src/core/ext/xds/xds_api.h +129 -92
  109. data/src/core/ext/xds/xds_channel_args.h +6 -3
  110. data/src/core/ext/xds/xds_client.cc +498 -410
  111. data/src/core/ext/xds/xds_client.h +105 -51
  112. data/src/core/ext/xds/xds_client_stats.cc +18 -12
  113. data/src/core/ext/xds/xds_client_stats.h +33 -5
  114. data/src/core/lib/channel/channel_args.h +0 -1
  115. data/src/core/lib/channel/channelz.cc +10 -45
  116. data/src/core/lib/channel/channelz.h +11 -19
  117. data/src/core/lib/channel/channelz_registry.cc +12 -11
  118. data/src/core/lib/channel/channelz_registry.h +3 -0
  119. data/src/core/lib/gpr/time_precise.cc +2 -0
  120. data/src/core/lib/gpr/time_precise.h +6 -2
  121. data/src/core/lib/gprpp/dual_ref_counted.h +336 -0
  122. data/src/core/lib/gprpp/ref_counted.h +51 -22
  123. data/src/core/lib/gprpp/ref_counted_ptr.h +153 -0
  124. data/src/core/lib/iomgr/endpoint_cfstream.cc +9 -5
  125. data/src/core/lib/iomgr/exec_ctx.h +10 -8
  126. data/src/core/lib/json/json_util.cc +58 -0
  127. data/src/core/lib/json/json_util.h +37 -0
  128. data/src/core/lib/security/certificate_provider.h +60 -0
  129. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +321 -0
  130. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +214 -0
  131. data/src/core/lib/security/credentials/xds/xds_credentials.cc +45 -0
  132. data/src/core/lib/security/credentials/xds/xds_credentials.h +51 -0
  133. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +6 -10
  134. data/src/core/lib/security/security_connector/ssl_utils.h +5 -0
  135. data/src/core/lib/surface/channel.cc +9 -31
  136. data/src/core/lib/surface/channel.h +6 -1
  137. data/src/core/lib/surface/init.cc +26 -9
  138. data/src/core/lib/surface/version.cc +2 -2
  139. data/src/core/lib/transport/bdp_estimator.h +2 -1
  140. data/src/core/lib/transport/connectivity_state.h +2 -2
  141. data/src/core/lib/transport/metadata.cc +11 -1
  142. data/src/core/plugin_registry/grpc_plugin_registry.cc +35 -20
  143. data/src/core/tsi/ssl_transport_security.cc +2 -2
  144. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +2 -2
  145. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +3 -3
  146. data/src/ruby/lib/grpc/version.rb +1 -1
  147. data/third_party/boringssl-with-bazel/err_data.c +465 -463
  148. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +0 -6
  149. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +9 -43
  150. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +55 -4
  151. data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +34 -0
  152. data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +4 -0
  153. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c +6 -2
  154. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.c +2 -0
  155. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +4 -0
  156. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +30 -10
  157. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +10 -15
  158. data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +98 -11
  159. data/third_party/boringssl-with-bazel/src/crypto/hpke/internal.h +51 -6
  160. data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +44 -2
  161. data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +221 -49
  162. data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +64 -20
  163. data/third_party/boringssl-with-bazel/src/crypto/x509/a_strex.c +3 -3
  164. data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c +0 -8
  165. data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c +3 -3
  166. data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c +1 -1
  167. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +7 -2
  168. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c +21 -18
  169. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.c +1 -1
  170. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c +24 -3
  171. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +3 -3
  172. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.c +67 -67
  173. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +3 -3
  174. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +29 -35
  175. data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c +13 -2
  176. data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +9 -8
  177. data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.c +10 -10
  178. data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +2 -2
  179. data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +28 -40
  180. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +3 -1
  181. data/third_party/boringssl-with-bazel/src/crypto/x509v3/ext_dat.h +1 -4
  182. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_conf.c +7 -3
  183. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_genn.c +2 -2
  184. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_info.c +1 -1
  185. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +55 -8
  186. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_skey.c +1 -1
  187. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +0 -1
  188. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +1 -1
  189. data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +6 -0
  190. data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +1 -1
  191. data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +12 -0
  192. data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +9 -0
  193. data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +4 -1
  194. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +9 -2
  195. data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +26 -6
  196. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +188 -78
  197. data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +52 -43
  198. data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +18 -18
  199. data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +2 -3
  200. data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +1 -1
  201. data/third_party/boringssl-with-bazel/src/ssl/internal.h +9 -9
  202. data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +8 -9
  203. data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +1 -2
  204. data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +4 -8
  205. data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +2 -2
  206. metadata +72 -42
  207. data/src/core/ext/filters/client_channel/lb_policy/xds/lrs.cc +0 -537
  208. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_routing.cc +0 -1141
  209. data/src/core/ext/upb-generated/gogoproto/gogo.upb.c +0 -17
  210. data/src/core/ext/upb-generated/gogoproto/gogo.upb.h +0 -29
  211. data/src/core/ext/xds/xds_channel.h +0 -46
  212. data/src/core/ext/xds/xds_channel_secure.cc +0 -103
  213. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pku.c +0 -110
  214. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_sxnet.c +0 -274
@@ -162,8 +162,8 @@ static unsigned long openssl_thread_id_cb(void) {
162
162
  #endif
163
163
 
164
164
  static void init_openssl(void) {
165
- #if OPENSSL_API_COMPAT >= 0x10100000L
166
- OPENSSL_init_ssl(0, NULL);
165
+ #if OPENSSL_VERSION_NUMBER >= 0x10100000
166
+ OPENSSL_init_ssl(0, nullptr);
167
167
  #else
168
168
  SSL_library_init();
169
169
  SSL_load_error_strings();
@@ -58,7 +58,6 @@ grpc_channel_num_external_connectivity_watchers_type grpc_channel_num_external_c
58
58
  grpc_channel_watch_connectivity_state_type grpc_channel_watch_connectivity_state_import;
59
59
  grpc_channel_support_connectivity_watcher_type grpc_channel_support_connectivity_watcher_import;
60
60
  grpc_channel_create_call_type grpc_channel_create_call_import;
61
- grpc_channel_ping_type grpc_channel_ping_import;
62
61
  grpc_channel_register_call_type grpc_channel_register_call_import;
63
62
  grpc_channel_create_registered_call_type grpc_channel_create_registered_call_import;
64
63
  grpc_call_arena_alloc_type grpc_call_arena_alloc_import;
@@ -171,6 +170,7 @@ grpc_tls_key_materials_config_set_version_type grpc_tls_key_materials_config_set
171
170
  grpc_tls_key_materials_config_get_version_type grpc_tls_key_materials_config_get_version_import;
172
171
  grpc_tls_credential_reload_config_create_type grpc_tls_credential_reload_config_create_import;
173
172
  grpc_tls_server_authorization_check_config_create_type grpc_tls_server_authorization_check_config_create_import;
173
+ grpc_xds_credentials_create_type grpc_xds_credentials_create_import;
174
174
  grpc_raw_byte_buffer_create_type grpc_raw_byte_buffer_create_import;
175
175
  grpc_raw_compressed_byte_buffer_create_type grpc_raw_compressed_byte_buffer_create_import;
176
176
  grpc_byte_buffer_copy_type grpc_byte_buffer_copy_import;
@@ -332,7 +332,6 @@ void grpc_rb_load_imports(HMODULE library) {
332
332
  grpc_channel_watch_connectivity_state_import = (grpc_channel_watch_connectivity_state_type) GetProcAddress(library, "grpc_channel_watch_connectivity_state");
333
333
  grpc_channel_support_connectivity_watcher_import = (grpc_channel_support_connectivity_watcher_type) GetProcAddress(library, "grpc_channel_support_connectivity_watcher");
334
334
  grpc_channel_create_call_import = (grpc_channel_create_call_type) GetProcAddress(library, "grpc_channel_create_call");
335
- grpc_channel_ping_import = (grpc_channel_ping_type) GetProcAddress(library, "grpc_channel_ping");
336
335
  grpc_channel_register_call_import = (grpc_channel_register_call_type) GetProcAddress(library, "grpc_channel_register_call");
337
336
  grpc_channel_create_registered_call_import = (grpc_channel_create_registered_call_type) GetProcAddress(library, "grpc_channel_create_registered_call");
338
337
  grpc_call_arena_alloc_import = (grpc_call_arena_alloc_type) GetProcAddress(library, "grpc_call_arena_alloc");
@@ -445,6 +444,7 @@ void grpc_rb_load_imports(HMODULE library) {
445
444
  grpc_tls_key_materials_config_get_version_import = (grpc_tls_key_materials_config_get_version_type) GetProcAddress(library, "grpc_tls_key_materials_config_get_version");
446
445
  grpc_tls_credential_reload_config_create_import = (grpc_tls_credential_reload_config_create_type) GetProcAddress(library, "grpc_tls_credential_reload_config_create");
447
446
  grpc_tls_server_authorization_check_config_create_import = (grpc_tls_server_authorization_check_config_create_type) GetProcAddress(library, "grpc_tls_server_authorization_check_config_create");
447
+ grpc_xds_credentials_create_import = (grpc_xds_credentials_create_type) GetProcAddress(library, "grpc_xds_credentials_create");
448
448
  grpc_raw_byte_buffer_create_import = (grpc_raw_byte_buffer_create_type) GetProcAddress(library, "grpc_raw_byte_buffer_create");
449
449
  grpc_raw_compressed_byte_buffer_create_import = (grpc_raw_compressed_byte_buffer_create_type) GetProcAddress(library, "grpc_raw_compressed_byte_buffer_create");
450
450
  grpc_byte_buffer_copy_import = (grpc_byte_buffer_copy_type) GetProcAddress(library, "grpc_byte_buffer_copy");
@@ -149,9 +149,6 @@ extern grpc_channel_support_connectivity_watcher_type grpc_channel_support_conne
149
149
  typedef grpc_call*(*grpc_channel_create_call_type)(grpc_channel* channel, grpc_call* parent_call, uint32_t propagation_mask, grpc_completion_queue* completion_queue, grpc_slice method, const grpc_slice* host, gpr_timespec deadline, void* reserved);
150
150
  extern grpc_channel_create_call_type grpc_channel_create_call_import;
151
151
  #define grpc_channel_create_call grpc_channel_create_call_import
152
- typedef void(*grpc_channel_ping_type)(grpc_channel* channel, grpc_completion_queue* cq, void* tag, void* reserved);
153
- extern grpc_channel_ping_type grpc_channel_ping_import;
154
- #define grpc_channel_ping grpc_channel_ping_import
155
152
  typedef void*(*grpc_channel_register_call_type)(grpc_channel* channel, const char* method, const char* host, void* reserved);
156
153
  extern grpc_channel_register_call_type grpc_channel_register_call_import;
157
154
  #define grpc_channel_register_call grpc_channel_register_call_import
@@ -488,6 +485,9 @@ extern grpc_tls_credential_reload_config_create_type grpc_tls_credential_reload_
488
485
  typedef grpc_tls_server_authorization_check_config*(*grpc_tls_server_authorization_check_config_create_type)(const void* config_user_data, int (*schedule)(void* config_user_data, grpc_tls_server_authorization_check_arg* arg), void (*cancel)(void* config_user_data, grpc_tls_server_authorization_check_arg* arg), void (*destruct)(void* config_user_data));
489
486
  extern grpc_tls_server_authorization_check_config_create_type grpc_tls_server_authorization_check_config_create_import;
490
487
  #define grpc_tls_server_authorization_check_config_create grpc_tls_server_authorization_check_config_create_import
488
+ typedef grpc_channel_credentials*(*grpc_xds_credentials_create_type)(grpc_channel_credentials* fallback_credentials);
489
+ extern grpc_xds_credentials_create_type grpc_xds_credentials_create_import;
490
+ #define grpc_xds_credentials_create grpc_xds_credentials_create_import
491
491
  typedef grpc_byte_buffer*(*grpc_raw_byte_buffer_create_type)(grpc_slice* slices, size_t nslices);
492
492
  extern grpc_raw_byte_buffer_create_type grpc_raw_byte_buffer_create_import;
493
493
  #define grpc_raw_byte_buffer_create grpc_raw_byte_buffer_create_import
@@ -14,5 +14,5 @@
14
14
 
15
15
  # GRPC contains the General RPC module.
16
16
  module GRPC
17
- VERSION = '1.32.0'
17
+ VERSION = '1.33.0.pre1'
18
18
  end
@@ -76,54 +76,54 @@ const uint32_t kOpenSSLReasonValues[] = {
76
76
  0xc3b00ea,
77
77
  0xc3b88d6,
78
78
  0x10320847,
79
- 0x1032959f,
80
- 0x103315ab,
81
- 0x103395c4,
82
- 0x103415d7,
79
+ 0x103295a9,
80
+ 0x103315b5,
81
+ 0x103395ce,
82
+ 0x103415e1,
83
83
  0x10348f27,
84
84
  0x10350c60,
85
- 0x103595ea,
86
- 0x10361614,
87
- 0x10369627,
88
- 0x10371646,
89
- 0x1037965f,
90
- 0x10381674,
91
- 0x10389692,
92
- 0x103916a1,
93
- 0x103996bd,
94
- 0x103a16d8,
95
- 0x103a96e7,
96
- 0x103b1703,
97
- 0x103b971e,
98
- 0x103c1744,
85
+ 0x103595f4,
86
+ 0x1036161e,
87
+ 0x10369631,
88
+ 0x10371650,
89
+ 0x10379669,
90
+ 0x1038167e,
91
+ 0x1038969c,
92
+ 0x103916ab,
93
+ 0x103996c7,
94
+ 0x103a16e2,
95
+ 0x103a96f1,
96
+ 0x103b170d,
97
+ 0x103b9728,
98
+ 0x103c174e,
99
99
  0x103c80ea,
100
- 0x103d1755,
101
- 0x103d9769,
102
- 0x103e1788,
103
- 0x103e9797,
104
- 0x103f17ae,
105
- 0x103f97c1,
100
+ 0x103d175f,
101
+ 0x103d9773,
102
+ 0x103e1792,
103
+ 0x103e97a1,
104
+ 0x103f17b8,
105
+ 0x103f97cb,
106
106
  0x10400c24,
107
- 0x104097d4,
108
- 0x104117f2,
109
- 0x10419805,
110
- 0x1042181f,
111
- 0x1042982f,
112
- 0x10431843,
113
- 0x10439859,
114
- 0x10441871,
115
- 0x10449886,
116
- 0x1045189a,
117
- 0x104598ac,
107
+ 0x104097de,
108
+ 0x104117fc,
109
+ 0x1041980f,
110
+ 0x10421829,
111
+ 0x10429839,
112
+ 0x1043184d,
113
+ 0x10439863,
114
+ 0x1044187b,
115
+ 0x10449890,
116
+ 0x104518a4,
117
+ 0x104598b6,
118
118
  0x104605fd,
119
119
  0x1046894f,
120
- 0x104718c1,
121
- 0x104798d8,
122
- 0x104818ed,
123
- 0x104898fb,
120
+ 0x104718cb,
121
+ 0x104798e2,
122
+ 0x104818f7,
123
+ 0x10489905,
124
124
  0x10490e73,
125
- 0x10499735,
126
- 0x104a15ff,
125
+ 0x1049973f,
126
+ 0x104a1609,
127
127
  0x14320c07,
128
128
  0x14328c15,
129
129
  0x14330c24,
@@ -136,53 +136,54 @@ const uint32_t kOpenSSLReasonValues[] = {
136
136
  0x18338f93,
137
137
  0x18340fa7,
138
138
  0x183480ea,
139
- 0x18350fbc,
140
- 0x18358fd4,
141
- 0x18360fe9,
142
- 0x18368ffd,
143
- 0x18371021,
144
- 0x18379037,
145
- 0x1838104b,
146
- 0x1838905b,
139
+ 0x18350fc6,
140
+ 0x18358fde,
141
+ 0x18360ff3,
142
+ 0x18369007,
143
+ 0x1837102b,
144
+ 0x18379041,
145
+ 0x18381055,
146
+ 0x18389065,
147
147
  0x18390a75,
148
- 0x1839906b,
149
- 0x183a1091,
150
- 0x183a90b7,
148
+ 0x18399075,
149
+ 0x183a109b,
150
+ 0x183a90c1,
151
151
  0x183b0c7f,
152
- 0x183b9106,
153
- 0x183c1118,
154
- 0x183c9123,
155
- 0x183d1133,
156
- 0x183d9144,
157
- 0x183e1155,
158
- 0x183e9167,
159
- 0x183f1190,
160
- 0x183f91a9,
161
- 0x184011c1,
152
+ 0x183b9110,
153
+ 0x183c1122,
154
+ 0x183c912d,
155
+ 0x183d113d,
156
+ 0x183d914e,
157
+ 0x183e115f,
158
+ 0x183e9171,
159
+ 0x183f119a,
160
+ 0x183f91b3,
161
+ 0x184011cb,
162
162
  0x184086d5,
163
- 0x184110da,
164
- 0x184190a5,
165
- 0x184210c4,
163
+ 0x184110e4,
164
+ 0x184190af,
165
+ 0x184210ce,
166
166
  0x18428c6c,
167
- 0x18431080,
168
- 0x184390ec,
169
- 0x203211fb,
170
- 0x203291e8,
171
- 0x24321207,
167
+ 0x1843108a,
168
+ 0x184390f6,
169
+ 0x18440fbc,
170
+ 0x20321205,
171
+ 0x203291f2,
172
+ 0x24321211,
172
173
  0x24328995,
173
- 0x24331219,
174
- 0x24339226,
175
- 0x24341233,
176
- 0x24349245,
177
- 0x24351254,
178
- 0x24359271,
179
- 0x2436127e,
180
- 0x2436928c,
181
- 0x2437129a,
182
- 0x243792a8,
183
- 0x243812b1,
184
- 0x243892be,
185
- 0x243912d1,
174
+ 0x24331223,
175
+ 0x24339230,
176
+ 0x2434123d,
177
+ 0x2434924f,
178
+ 0x2435125e,
179
+ 0x2435927b,
180
+ 0x24361288,
181
+ 0x24369296,
182
+ 0x243712a4,
183
+ 0x243792b2,
184
+ 0x243812bb,
185
+ 0x243892c8,
186
+ 0x243912db,
186
187
  0x28320c54,
187
188
  0x28328c7f,
188
189
  0x28330c24,
@@ -191,47 +192,47 @@ const uint32_t kOpenSSLReasonValues[] = {
191
192
  0x283480ac,
192
193
  0x283500ea,
193
194
  0x28358c6c,
194
- 0x2c32308b,
195
- 0x2c3292e8,
196
- 0x2c333099,
197
- 0x2c33b0ab,
198
- 0x2c3430bf,
199
- 0x2c34b0d1,
200
- 0x2c3530ec,
201
- 0x2c35b0fe,
202
- 0x2c36312e,
195
+ 0x2c323095,
196
+ 0x2c3292f2,
197
+ 0x2c3330a3,
198
+ 0x2c33b0b5,
199
+ 0x2c3430c9,
200
+ 0x2c34b0db,
201
+ 0x2c3530f6,
202
+ 0x2c35b108,
203
+ 0x2c363138,
203
204
  0x2c36832d,
204
- 0x2c37313b,
205
- 0x2c37b167,
206
- 0x2c38318c,
207
- 0x2c38b1a3,
208
- 0x2c3931c1,
209
- 0x2c39b1d1,
210
- 0x2c3a31e3,
211
- 0x2c3ab1f7,
212
- 0x2c3b3208,
213
- 0x2c3bb227,
214
- 0x2c3c12fa,
215
- 0x2c3c9310,
216
- 0x2c3d323b,
217
- 0x2c3d9329,
218
- 0x2c3e3258,
219
- 0x2c3eb266,
220
- 0x2c3f327e,
221
- 0x2c3fb296,
222
- 0x2c4032c0,
223
- 0x2c4091fb,
224
- 0x2c4132d1,
225
- 0x2c41b2e4,
226
- 0x2c4211c1,
227
- 0x2c42b2f5,
205
+ 0x2c373145,
206
+ 0x2c37b171,
207
+ 0x2c383196,
208
+ 0x2c38b1ad,
209
+ 0x2c3931cb,
210
+ 0x2c39b1db,
211
+ 0x2c3a31ed,
212
+ 0x2c3ab201,
213
+ 0x2c3b3212,
214
+ 0x2c3bb231,
215
+ 0x2c3c1304,
216
+ 0x2c3c931a,
217
+ 0x2c3d3245,
218
+ 0x2c3d9333,
219
+ 0x2c3e3262,
220
+ 0x2c3eb270,
221
+ 0x2c3f3288,
222
+ 0x2c3fb2a0,
223
+ 0x2c4032ca,
224
+ 0x2c409205,
225
+ 0x2c4132db,
226
+ 0x2c41b2ee,
227
+ 0x2c4211cb,
228
+ 0x2c42b2ff,
228
229
  0x2c430722,
229
- 0x2c43b219,
230
- 0x2c44317a,
231
- 0x2c44b2a3,
232
- 0x2c453111,
233
- 0x2c45b14d,
234
- 0x2c4631b1,
230
+ 0x2c43b223,
231
+ 0x2c443184,
232
+ 0x2c44b2ad,
233
+ 0x2c45311b,
234
+ 0x2c45b157,
235
+ 0x2c4631bb,
235
236
  0x30320000,
236
237
  0x30328015,
237
238
  0x3033001f,
@@ -366,246 +367,246 @@ const uint32_t kOpenSSLReasonValues[] = {
366
367
  0x3c418d67,
367
368
  0x3c420e73,
368
369
  0x3c428dfd,
369
- 0x40321971,
370
- 0x40329987,
371
- 0x403319b5,
372
- 0x403399bf,
373
- 0x403419d6,
374
- 0x403499f4,
375
- 0x40351a04,
376
- 0x40359a16,
377
- 0x40361a23,
378
- 0x40369a2f,
379
- 0x40371a44,
380
- 0x40379a56,
381
- 0x40381a61,
382
- 0x40389a73,
370
+ 0x4032197b,
371
+ 0x40329991,
372
+ 0x403319bf,
373
+ 0x403399c9,
374
+ 0x403419e0,
375
+ 0x403499fe,
376
+ 0x40351a0e,
377
+ 0x40359a20,
378
+ 0x40361a2d,
379
+ 0x40369a39,
380
+ 0x40371a4e,
381
+ 0x40379a60,
382
+ 0x40381a6b,
383
+ 0x40389a7d,
383
384
  0x40390f27,
384
- 0x40399a83,
385
- 0x403a1a96,
386
- 0x403a9ab7,
387
- 0x403b1ac8,
388
- 0x403b9ad8,
385
+ 0x40399a8d,
386
+ 0x403a1aa0,
387
+ 0x403a9ac1,
388
+ 0x403b1ad2,
389
+ 0x403b9ae2,
389
390
  0x403c0064,
390
391
  0x403c8083,
391
- 0x403d1b39,
392
- 0x403d9b4f,
393
- 0x403e1b5e,
394
- 0x403e9b96,
395
- 0x403f1bb0,
396
- 0x403f9bd8,
397
- 0x40401bed,
398
- 0x40409c01,
399
- 0x40411c3c,
400
- 0x40419c57,
401
- 0x40421c70,
402
- 0x40429c83,
403
- 0x40431c97,
404
- 0x40439caf,
405
- 0x40441cc6,
392
+ 0x403d1b43,
393
+ 0x403d9b59,
394
+ 0x403e1b68,
395
+ 0x403e9ba0,
396
+ 0x403f1bba,
397
+ 0x403f9be2,
398
+ 0x40401bf7,
399
+ 0x40409c0b,
400
+ 0x40411c46,
401
+ 0x40419c61,
402
+ 0x40421c7a,
403
+ 0x40429c8d,
404
+ 0x40431ca1,
405
+ 0x40439cb9,
406
+ 0x40441cd0,
406
407
  0x404480ac,
407
- 0x40451cdb,
408
- 0x40459ced,
409
- 0x40461d11,
410
- 0x40469d31,
411
- 0x40471d3f,
412
- 0x40479d66,
413
- 0x40481dd7,
414
- 0x40489e0a,
415
- 0x40491e21,
416
- 0x40499e3b,
417
- 0x404a1e52,
418
- 0x404a9e70,
419
- 0x404b1e88,
420
- 0x404b9eb5,
421
- 0x404c1ecb,
422
- 0x404c9edd,
423
- 0x404d1efe,
424
- 0x404d9f37,
425
- 0x404e1f4b,
426
- 0x404e9f58,
427
- 0x404f1f9f,
428
- 0x404f9fe5,
429
- 0x4050203c,
430
- 0x4050a050,
431
- 0x40512083,
432
- 0x405220a0,
433
- 0x4052a0c4,
434
- 0x405320dc,
435
- 0x4053a0ef,
436
- 0x40542104,
437
- 0x4054a127,
438
- 0x40552135,
439
- 0x4055a172,
440
- 0x4056217f,
441
- 0x4056a198,
442
- 0x405721b0,
443
- 0x4057a1c3,
444
- 0x405821d8,
445
- 0x4058a1ff,
446
- 0x4059222e,
447
- 0x4059a25b,
448
- 0x405a226f,
449
- 0x405aa27f,
450
- 0x405b2297,
451
- 0x405ba2a8,
452
- 0x405c22bb,
453
- 0x405ca2fa,
454
- 0x405d2307,
455
- 0x405da32c,
456
- 0x405e236a,
408
+ 0x40451ce5,
409
+ 0x40459cf7,
410
+ 0x40461d1b,
411
+ 0x40469d3b,
412
+ 0x40471d49,
413
+ 0x40479d70,
414
+ 0x40481de1,
415
+ 0x40489e14,
416
+ 0x40491e2b,
417
+ 0x40499e45,
418
+ 0x404a1e5c,
419
+ 0x404a9e7a,
420
+ 0x404b1e92,
421
+ 0x404b9ebf,
422
+ 0x404c1ed5,
423
+ 0x404c9ee7,
424
+ 0x404d1f08,
425
+ 0x404d9f41,
426
+ 0x404e1f55,
427
+ 0x404e9f62,
428
+ 0x404f1fa9,
429
+ 0x404f9fef,
430
+ 0x40502046,
431
+ 0x4050a05a,
432
+ 0x4051208d,
433
+ 0x405220aa,
434
+ 0x4052a0ce,
435
+ 0x405320e6,
436
+ 0x4053a0f9,
437
+ 0x4054210e,
438
+ 0x4054a131,
439
+ 0x4055213f,
440
+ 0x4055a17c,
441
+ 0x40562189,
442
+ 0x4056a1a2,
443
+ 0x405721ba,
444
+ 0x4057a1cd,
445
+ 0x405821e2,
446
+ 0x4058a209,
447
+ 0x40592238,
448
+ 0x4059a265,
449
+ 0x405a2279,
450
+ 0x405aa289,
451
+ 0x405b22a1,
452
+ 0x405ba2b2,
453
+ 0x405c22c5,
454
+ 0x405ca304,
455
+ 0x405d2311,
456
+ 0x405da336,
457
+ 0x405e2374,
457
458
  0x405e8ab3,
458
- 0x405f238b,
459
- 0x405fa398,
460
- 0x406023a6,
461
- 0x4060a3c8,
462
- 0x40612429,
463
- 0x4061a461,
464
- 0x40622478,
465
- 0x4062a489,
466
- 0x406324d6,
467
- 0x4063a4eb,
468
- 0x40642502,
469
- 0x4064a52e,
470
- 0x40652549,
471
- 0x4065a560,
472
- 0x40662578,
473
- 0x4066a5a2,
474
- 0x406725cd,
475
- 0x4067a612,
476
- 0x4068265a,
477
- 0x4068a67b,
478
- 0x406926ad,
479
- 0x4069a6db,
480
- 0x406a26fc,
481
- 0x406aa71c,
482
- 0x406b28a4,
483
- 0x406ba8c7,
484
- 0x406c28dd,
485
- 0x406cabce,
486
- 0x406d2bfd,
487
- 0x406dac25,
488
- 0x406e2c53,
489
- 0x406eaca0,
490
- 0x406f2cf9,
491
- 0x406fad31,
492
- 0x40702d44,
493
- 0x4070ad61,
459
+ 0x405f2395,
460
+ 0x405fa3a2,
461
+ 0x406023b0,
462
+ 0x4060a3d2,
463
+ 0x40612433,
464
+ 0x4061a46b,
465
+ 0x40622482,
466
+ 0x4062a493,
467
+ 0x406324e0,
468
+ 0x4063a4f5,
469
+ 0x4064250c,
470
+ 0x4064a538,
471
+ 0x40652553,
472
+ 0x4065a56a,
473
+ 0x40662582,
474
+ 0x4066a5ac,
475
+ 0x406725d7,
476
+ 0x4067a61c,
477
+ 0x40682664,
478
+ 0x4068a685,
479
+ 0x406926b7,
480
+ 0x4069a6e5,
481
+ 0x406a2706,
482
+ 0x406aa726,
483
+ 0x406b28ae,
484
+ 0x406ba8d1,
485
+ 0x406c28e7,
486
+ 0x406cabd8,
487
+ 0x406d2c07,
488
+ 0x406dac2f,
489
+ 0x406e2c5d,
490
+ 0x406eacaa,
491
+ 0x406f2d03,
492
+ 0x406fad3b,
493
+ 0x40702d4e,
494
+ 0x4070ad6b,
494
495
  0x40710802,
495
- 0x4071ad73,
496
- 0x40722d86,
497
- 0x4072adbc,
498
- 0x40732dd4,
499
- 0x407394fa,
500
- 0x40742de8,
501
- 0x4074ae02,
502
- 0x40752e13,
503
- 0x4075ae27,
504
- 0x40762e35,
505
- 0x407692be,
506
- 0x40772e5a,
507
- 0x4077ae7c,
508
- 0x40782e97,
509
- 0x4078aed0,
510
- 0x40792ee7,
511
- 0x4079aefd,
512
- 0x407a2f29,
513
- 0x407aaf3c,
514
- 0x407b2f51,
515
- 0x407baf63,
516
- 0x407c2f94,
517
- 0x407caf9d,
518
- 0x407d2696,
519
- 0x407d9ff5,
520
- 0x407e2eac,
521
- 0x407ea20f,
522
- 0x407f1d53,
523
- 0x407f9e9f,
524
- 0x40801faf,
525
- 0x40809d7b,
526
- 0x408120b2,
527
- 0x40819f89,
528
- 0x40822c3e,
529
- 0x40829ae4,
530
- 0x408321ea,
531
- 0x4083a513,
532
- 0x40841d8f,
533
- 0x4084a247,
534
- 0x408522cc,
535
- 0x4085a3f0,
536
- 0x4086234c,
537
- 0x4086a00f,
538
- 0x40872c84,
539
- 0x4087a43e,
540
- 0x40881b22,
541
- 0x4088a625,
542
- 0x40891b71,
543
- 0x40899afe,
544
- 0x408a2915,
545
- 0x408a9912,
546
- 0x408b2f78,
547
- 0x408bad0e,
548
- 0x408c22dc,
549
- 0x408c992e,
550
- 0x408d1df0,
551
- 0x408d9dc1,
552
- 0x408e1f20,
553
- 0x408ea152,
554
- 0x408f2639,
555
- 0x408fa40c,
556
- 0x409025ee,
557
- 0x4090a31e,
558
- 0x409128fd,
559
- 0x40919954,
560
- 0x40921bbe,
561
- 0x4092acbf,
562
- 0x40932d9f,
563
- 0x4093a020,
564
- 0x40941da3,
565
- 0x4094a92e,
566
- 0x4095249a,
567
- 0x4095af09,
568
- 0x40962c6b,
569
- 0x40969fc8,
570
- 0x4097206b,
571
- 0x40979f6f,
572
- 0x40981c1e,
573
- 0x4098a4ae,
574
- 0x40992cdb,
575
- 0x4099a093,
576
- 0x41f427cf,
577
- 0x41f92861,
578
- 0x41fe2754,
579
- 0x41feaa0a,
580
- 0x41ff2b1f,
581
- 0x420327e8,
582
- 0x4208280a,
583
- 0x4208a846,
584
- 0x42092738,
585
- 0x4209a880,
586
- 0x420a278f,
587
- 0x420aa76f,
588
- 0x420b27af,
589
- 0x420ba828,
590
- 0x420c2b3b,
591
- 0x420ca93e,
592
- 0x420d29f1,
593
- 0x420daa28,
594
- 0x42122a42,
595
- 0x42172b02,
596
- 0x4217aa84,
597
- 0x421c2aa6,
598
- 0x421f2a61,
599
- 0x42212bb3,
600
- 0x42262ae5,
601
- 0x422b2b91,
602
- 0x422ba9cc,
603
- 0x422c2b73,
604
- 0x422ca97f,
605
- 0x422d2958,
606
- 0x422dab52,
607
- 0x422e29ab,
608
- 0x42302ac1,
496
+ 0x4071ad7d,
497
+ 0x40722d90,
498
+ 0x4072adc6,
499
+ 0x40732dde,
500
+ 0x40739504,
501
+ 0x40742df2,
502
+ 0x4074ae0c,
503
+ 0x40752e1d,
504
+ 0x4075ae31,
505
+ 0x40762e3f,
506
+ 0x407692c8,
507
+ 0x40772e64,
508
+ 0x4077ae86,
509
+ 0x40782ea1,
510
+ 0x4078aeda,
511
+ 0x40792ef1,
512
+ 0x4079af07,
513
+ 0x407a2f33,
514
+ 0x407aaf46,
515
+ 0x407b2f5b,
516
+ 0x407baf6d,
517
+ 0x407c2f9e,
518
+ 0x407cafa7,
519
+ 0x407d26a0,
520
+ 0x407d9fff,
521
+ 0x407e2eb6,
522
+ 0x407ea219,
523
+ 0x407f1d5d,
524
+ 0x407f9ea9,
525
+ 0x40801fb9,
526
+ 0x40809d85,
527
+ 0x408120bc,
528
+ 0x40819f93,
529
+ 0x40822c48,
530
+ 0x40829aee,
531
+ 0x408321f4,
532
+ 0x4083a51d,
533
+ 0x40841d99,
534
+ 0x4084a251,
535
+ 0x408522d6,
536
+ 0x4085a3fa,
537
+ 0x40862356,
538
+ 0x4086a019,
539
+ 0x40872c8e,
540
+ 0x4087a448,
541
+ 0x40881b2c,
542
+ 0x4088a62f,
543
+ 0x40891b7b,
544
+ 0x40899b08,
545
+ 0x408a291f,
546
+ 0x408a991c,
547
+ 0x408b2f82,
548
+ 0x408bad18,
549
+ 0x408c22e6,
550
+ 0x408c9938,
551
+ 0x408d1dfa,
552
+ 0x408d9dcb,
553
+ 0x408e1f2a,
554
+ 0x408ea15c,
555
+ 0x408f2643,
556
+ 0x408fa416,
557
+ 0x409025f8,
558
+ 0x4090a328,
559
+ 0x40912907,
560
+ 0x4091995e,
561
+ 0x40921bc8,
562
+ 0x4092acc9,
563
+ 0x40932da9,
564
+ 0x4093a02a,
565
+ 0x40941dad,
566
+ 0x4094a938,
567
+ 0x409524a4,
568
+ 0x4095af13,
569
+ 0x40962c75,
570
+ 0x40969fd2,
571
+ 0x40972075,
572
+ 0x40979f79,
573
+ 0x40981c28,
574
+ 0x4098a4b8,
575
+ 0x40992ce5,
576
+ 0x4099a09d,
577
+ 0x41f427d9,
578
+ 0x41f9286b,
579
+ 0x41fe275e,
580
+ 0x41feaa14,
581
+ 0x41ff2b29,
582
+ 0x420327f2,
583
+ 0x42082814,
584
+ 0x4208a850,
585
+ 0x42092742,
586
+ 0x4209a88a,
587
+ 0x420a2799,
588
+ 0x420aa779,
589
+ 0x420b27b9,
590
+ 0x420ba832,
591
+ 0x420c2b45,
592
+ 0x420ca948,
593
+ 0x420d29fb,
594
+ 0x420daa32,
595
+ 0x42122a4c,
596
+ 0x42172b0c,
597
+ 0x4217aa8e,
598
+ 0x421c2ab0,
599
+ 0x421f2a6b,
600
+ 0x42212bbd,
601
+ 0x42262aef,
602
+ 0x422b2b9b,
603
+ 0x422ba9d6,
604
+ 0x422c2b7d,
605
+ 0x422ca989,
606
+ 0x422d2962,
607
+ 0x422dab5c,
608
+ 0x422e29b5,
609
+ 0x42302acb,
609
610
  0x4432072d,
610
611
  0x4432873c,
611
612
  0x44330748,
@@ -623,106 +624,106 @@ const uint32_t kOpenSSLReasonValues[] = {
623
624
  0x44390802,
624
625
  0x44398810,
625
626
  0x443a0823,
626
- 0x483212e8,
627
- 0x483292fa,
628
- 0x48331310,
629
- 0x48339329,
630
- 0x4c32134e,
631
- 0x4c32935e,
632
- 0x4c331371,
633
- 0x4c339391,
627
+ 0x483212f2,
628
+ 0x48329304,
629
+ 0x4833131a,
630
+ 0x48339333,
631
+ 0x4c321358,
632
+ 0x4c329368,
633
+ 0x4c33137b,
634
+ 0x4c33939b,
634
635
  0x4c3400ac,
635
636
  0x4c3480ea,
636
- 0x4c35139d,
637
- 0x4c3593ab,
638
- 0x4c3613c7,
639
- 0x4c3693ed,
640
- 0x4c3713fc,
641
- 0x4c37940a,
642
- 0x4c38141f,
643
- 0x4c38942b,
644
- 0x4c39144b,
645
- 0x4c399475,
646
- 0x4c3a148e,
647
- 0x4c3a94a7,
637
+ 0x4c3513a7,
638
+ 0x4c3593b5,
639
+ 0x4c3613d1,
640
+ 0x4c3693f7,
641
+ 0x4c371406,
642
+ 0x4c379414,
643
+ 0x4c381429,
644
+ 0x4c389435,
645
+ 0x4c391455,
646
+ 0x4c39947f,
647
+ 0x4c3a1498,
648
+ 0x4c3a94b1,
648
649
  0x4c3b05fd,
649
- 0x4c3b94c0,
650
- 0x4c3c14d2,
651
- 0x4c3c94e1,
652
- 0x4c3d14fa,
650
+ 0x4c3b94ca,
651
+ 0x4c3c14dc,
652
+ 0x4c3c94eb,
653
+ 0x4c3d1504,
653
654
  0x4c3d8c47,
654
- 0x4c3e1567,
655
- 0x4c3e9509,
656
- 0x4c3f1589,
657
- 0x4c3f92be,
658
- 0x4c40151f,
659
- 0x4c40933a,
660
- 0x4c411557,
661
- 0x4c4193da,
662
- 0x4c421543,
663
- 0x50323307,
664
- 0x5032b316,
665
- 0x50333321,
666
- 0x5033b331,
667
- 0x5034334a,
668
- 0x5034b364,
669
- 0x50353372,
670
- 0x5035b388,
671
- 0x5036339a,
672
- 0x5036b3b0,
673
- 0x503733c9,
674
- 0x5037b3dc,
675
- 0x503833f4,
676
- 0x5038b405,
677
- 0x5039341a,
678
- 0x5039b42e,
679
- 0x503a344e,
680
- 0x503ab464,
681
- 0x503b347c,
682
- 0x503bb48e,
683
- 0x503c34aa,
684
- 0x503cb4c1,
685
- 0x503d34da,
686
- 0x503db4f0,
687
- 0x503e34fd,
688
- 0x503eb513,
689
- 0x503f3525,
655
+ 0x4c3e1571,
656
+ 0x4c3e9513,
657
+ 0x4c3f1593,
658
+ 0x4c3f92c8,
659
+ 0x4c401529,
660
+ 0x4c409344,
661
+ 0x4c411561,
662
+ 0x4c4193e4,
663
+ 0x4c42154d,
664
+ 0x50323311,
665
+ 0x5032b320,
666
+ 0x5033332b,
667
+ 0x5033b33b,
668
+ 0x50343354,
669
+ 0x5034b36e,
670
+ 0x5035337c,
671
+ 0x5035b392,
672
+ 0x503633a4,
673
+ 0x5036b3ba,
674
+ 0x503733d3,
675
+ 0x5037b3e6,
676
+ 0x503833fe,
677
+ 0x5038b40f,
678
+ 0x50393424,
679
+ 0x5039b438,
680
+ 0x503a3458,
681
+ 0x503ab46e,
682
+ 0x503b3486,
683
+ 0x503bb498,
684
+ 0x503c34b4,
685
+ 0x503cb4cb,
686
+ 0x503d34e4,
687
+ 0x503db4fa,
688
+ 0x503e3507,
689
+ 0x503eb51d,
690
+ 0x503f352f,
690
691
  0x503f837b,
691
- 0x50403538,
692
- 0x5040b548,
693
- 0x50413562,
694
- 0x5041b571,
695
- 0x5042358b,
696
- 0x5042b5a8,
697
- 0x504335b8,
698
- 0x5043b5c8,
699
- 0x504435d7,
692
+ 0x50403542,
693
+ 0x5040b552,
694
+ 0x5041356c,
695
+ 0x5041b57b,
696
+ 0x50423595,
697
+ 0x5042b5b2,
698
+ 0x504335c2,
699
+ 0x5043b5d2,
700
+ 0x504435e1,
700
701
  0x50448431,
701
- 0x504535eb,
702
- 0x5045b609,
703
- 0x5046361c,
704
- 0x5046b632,
705
- 0x50473644,
706
- 0x5047b659,
707
- 0x5048367f,
708
- 0x5048b68d,
709
- 0x504936a0,
710
- 0x5049b6b5,
711
- 0x504a36cb,
712
- 0x504ab6db,
713
- 0x504b36fb,
714
- 0x504bb70e,
715
- 0x504c3731,
716
- 0x504cb75f,
717
- 0x504d3771,
718
- 0x504db78e,
719
- 0x504e37a9,
720
- 0x504eb7c5,
721
- 0x504f37d7,
722
- 0x504fb7ee,
723
- 0x505037fd,
702
+ 0x504535f5,
703
+ 0x5045b613,
704
+ 0x50463626,
705
+ 0x5046b63c,
706
+ 0x5047364e,
707
+ 0x5047b663,
708
+ 0x50483689,
709
+ 0x5048b697,
710
+ 0x504936aa,
711
+ 0x5049b6bf,
712
+ 0x504a36d5,
713
+ 0x504ab6e5,
714
+ 0x504b3705,
715
+ 0x504bb718,
716
+ 0x504c373b,
717
+ 0x504cb769,
718
+ 0x504d377b,
719
+ 0x504db798,
720
+ 0x504e37b3,
721
+ 0x504eb7cf,
722
+ 0x504f37e1,
723
+ 0x504fb7f8,
724
+ 0x50503807,
724
725
  0x505086f1,
725
- 0x50513810,
726
+ 0x5051381a,
726
727
  0x58320f65,
727
728
  0x68320f27,
728
729
  0x68328c7f,
@@ -763,22 +764,22 @@ const uint32_t kOpenSSLReasonValues[] = {
763
764
  0x783d8b4c,
764
765
  0x783e0aa2,
765
766
  0x783e8a54,
766
- 0x7c3211d7,
767
- 0x803213ed,
767
+ 0x7c3211e1,
768
+ 0x803213f7,
768
769
  0x80328083,
769
- 0x8033305a,
770
+ 0x80333064,
770
771
  0x803380ac,
771
- 0x80343069,
772
- 0x8034afd1,
773
- 0x80352fef,
774
- 0x8035b07d,
775
- 0x80363031,
776
- 0x8036afe0,
777
- 0x80373023,
778
- 0x8037afbe,
779
- 0x80383044,
780
- 0x8038b000,
781
- 0x80393015,
772
+ 0x80343073,
773
+ 0x8034afdb,
774
+ 0x80352ff9,
775
+ 0x8035b087,
776
+ 0x8036303b,
777
+ 0x8036afea,
778
+ 0x8037302d,
779
+ 0x8037afc8,
780
+ 0x8038304e,
781
+ 0x8038b00a,
782
+ 0x8039301f,
782
783
  };
783
784
 
784
785
  const size_t kOpenSSLReasonValuesLen = sizeof(kOpenSSLReasonValues) / sizeof(kOpenSSLReasonValues[0]);
@@ -994,6 +995,7 @@ const char kOpenSSLReasonStringData[] =
994
995
  "COMMAND_NOT_SUPPORTED\0"
995
996
  "DIFFERENT_KEY_TYPES\0"
996
997
  "DIFFERENT_PARAMETERS\0"
998
+ "EMPTY_PSK\0"
997
999
  "EXPECTING_AN_EC_KEY_KEY\0"
998
1000
  "EXPECTING_AN_RSA_KEY\0"
999
1001
  "EXPECTING_A_DSA_KEY\0"