grpc 1.13.0 → 1.14.0

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 (213) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +403 -153
  3. data/include/grpc/grpc.h +0 -8
  4. data/include/grpc/grpc_security.h +59 -2
  5. data/include/grpc/impl/codegen/grpc_types.h +8 -2
  6. data/include/grpc/impl/codegen/log.h +112 -0
  7. data/include/grpc/module.modulemap +2 -0
  8. data/include/grpc/support/log.h +2 -88
  9. data/include/grpc/support/string_util.h +2 -0
  10. data/src/boringssl/err_data.c +597 -593
  11. data/src/core/ext/filters/client_channel/client_channel.cc +715 -770
  12. data/src/core/ext/filters/client_channel/client_channel.h +5 -0
  13. data/src/core/ext/filters/client_channel/client_channel_channelz.cc +111 -0
  14. data/src/core/ext/filters/client_channel/client_channel_channelz.h +69 -0
  15. data/src/core/ext/filters/client_channel/client_channel_plugin.cc +9 -0
  16. data/src/core/ext/filters/client_channel/http_proxy.cc +22 -5
  17. data/src/core/ext/filters/client_channel/lb_policy.h +15 -0
  18. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +3 -0
  19. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +3 -3
  20. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +3 -1
  21. data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/duration.pb.c +19 -0
  22. data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/duration.pb.h +54 -0
  23. data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/timestamp.pb.c +19 -0
  24. data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/timestamp.pb.h +54 -0
  25. data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c +4 -17
  26. data/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h +37 -63
  27. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +79 -0
  28. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +5 -2
  29. data/src/core/ext/filters/client_channel/lb_policy_factory.cc +8 -0
  30. data/src/core/ext/filters/client_channel/lb_policy_factory.h +4 -0
  31. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +2 -2
  32. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc +317 -0
  33. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +48 -9
  34. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +40 -293
  35. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +106 -84
  36. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +6 -2
  37. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc +6 -5
  38. data/src/core/ext/filters/client_channel/subchannel.cc +36 -6
  39. data/src/core/ext/filters/client_channel/subchannel.h +4 -0
  40. data/src/core/ext/filters/deadline/deadline_filter.cc +18 -15
  41. data/src/core/ext/filters/deadline/deadline_filter.h +5 -5
  42. data/src/core/ext/filters/http/client/http_client_filter.cc +10 -9
  43. data/src/core/ext/filters/http/server/http_server_filter.h +1 -1
  44. data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc +1 -1
  45. data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +3 -2
  46. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +33 -22
  47. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +1 -1
  48. data/src/core/ext/transport/chttp2/transport/internal.h +10 -3
  49. data/src/core/ext/transport/chttp2/transport/stream_lists.cc +17 -0
  50. data/src/core/ext/transport/chttp2/transport/writing.cc +21 -16
  51. data/src/core/ext/transport/inproc/inproc_transport.cc +46 -6
  52. data/src/core/lib/channel/channel_stack.cc +22 -24
  53. data/src/core/lib/channel/channel_trace.cc +28 -63
  54. data/src/core/lib/channel/channel_trace.h +13 -17
  55. data/src/core/lib/channel/channelz.cc +143 -0
  56. data/src/core/lib/channel/channelz.h +124 -0
  57. data/src/core/lib/channel/channelz_registry.cc +7 -24
  58. data/src/core/lib/channel/channelz_registry.h +12 -8
  59. data/src/core/lib/channel/connected_channel.cc +8 -1
  60. data/src/core/{ext/filters/load_reporting/server_load_reporting_filter.h → lib/gpr/alloc.h} +7 -9
  61. data/src/core/lib/gpr/arena.cc +8 -8
  62. data/src/core/lib/gpr/string.cc +28 -0
  63. data/src/core/lib/gpr/string.h +10 -0
  64. data/src/core/lib/gprpp/abstract.h +5 -2
  65. data/src/core/lib/gprpp/inlined_vector.h +57 -3
  66. data/src/core/lib/gprpp/memory.h +2 -2
  67. data/src/core/lib/gprpp/ref_counted_ptr.h +5 -0
  68. data/src/core/lib/gprpp/thd_posix.cc +1 -1
  69. data/src/core/lib/iomgr/call_combiner.h +80 -0
  70. data/src/core/lib/iomgr/closure.h +3 -2
  71. data/src/core/lib/iomgr/endpoint_pair_posix.cc +2 -2
  72. data/src/core/lib/iomgr/error.cc +12 -0
  73. data/src/core/lib/iomgr/error.h +5 -0
  74. data/src/core/lib/iomgr/ev_epoll1_linux.cc +36 -9
  75. data/src/core/lib/iomgr/ev_epollex_linux.cc +172 -46
  76. data/src/core/lib/iomgr/ev_epollsig_linux.cc +47 -21
  77. data/src/core/lib/iomgr/ev_poll_posix.cc +10 -4
  78. data/src/core/lib/iomgr/ev_posix.cc +17 -9
  79. data/src/core/lib/iomgr/ev_posix.h +20 -4
  80. data/src/core/lib/iomgr/executor.cc +196 -140
  81. data/src/core/lib/iomgr/executor.h +47 -14
  82. data/src/core/lib/iomgr/iomgr.cc +2 -0
  83. data/src/core/lib/iomgr/iomgr.h +5 -0
  84. data/src/core/lib/iomgr/is_epollexclusive_available.cc +1 -0
  85. data/src/core/lib/iomgr/socket_utils.h +9 -0
  86. data/src/core/lib/iomgr/socket_utils_common_posix.cc +4 -0
  87. data/src/core/lib/iomgr/socket_utils_uv.cc +4 -0
  88. data/src/core/lib/iomgr/socket_utils_windows.cc +4 -0
  89. data/src/core/lib/iomgr/tcp_client_posix.cc +3 -5
  90. data/src/core/lib/iomgr/tcp_posix.cc +6 -1
  91. data/src/core/lib/iomgr/tcp_server_posix.cc +3 -3
  92. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +1 -1
  93. data/src/core/lib/iomgr/timer_manager.cc +0 -1
  94. data/src/core/lib/iomgr/udp_server.cc +2 -3
  95. data/src/core/lib/json/json.cc +10 -0
  96. data/src/core/lib/json/json.h +5 -0
  97. data/src/core/lib/security/context/security_context.cc +8 -8
  98. data/src/core/lib/security/context/security_context.h +6 -2
  99. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +2 -1
  100. data/src/core/lib/security/credentials/local/local_credentials.cc +77 -0
  101. data/src/core/lib/security/credentials/local/local_credentials.h +40 -0
  102. data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +17 -3
  103. data/src/core/lib/security/security_connector/local_security_connector.cc +245 -0
  104. data/src/core/lib/security/security_connector/local_security_connector.h +58 -0
  105. data/src/core/lib/security/security_connector/security_connector.cc +30 -5
  106. data/src/core/lib/security/security_connector/security_connector.h +1 -0
  107. data/src/core/lib/security/transport/client_auth_filter.cc +5 -1
  108. data/src/core/lib/security/transport/server_auth_filter.cc +4 -5
  109. data/src/core/lib/surface/call.cc +75 -32
  110. data/src/core/lib/surface/call.h +2 -0
  111. data/src/core/lib/surface/channel.cc +32 -13
  112. data/src/core/lib/surface/channel.h +4 -0
  113. data/src/core/lib/surface/version.cc +1 -1
  114. data/src/core/lib/transport/transport.cc +20 -9
  115. data/src/core/lib/transport/transport.h +12 -10
  116. data/src/core/lib/transport/transport_op_string.cc +0 -7
  117. data/src/core/plugin_registry/grpc_plugin_registry.cc +0 -4
  118. data/src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.h +2 -2
  119. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +2 -1
  120. data/src/core/tsi/alts/handshaker/altscontext.pb.c +0 -1
  121. data/src/core/tsi/alts/handshaker/altscontext.pb.h +1 -2
  122. data/src/core/tsi/alts/handshaker/handshaker.pb.c +0 -1
  123. data/src/core/tsi/alts/handshaker/handshaker.pb.h +1 -2
  124. data/src/core/tsi/alts/handshaker/transport_security_common.pb.c +0 -1
  125. data/src/core/tsi/alts/handshaker/transport_security_common.pb.h +1 -1
  126. data/src/core/tsi/alts/handshaker/transport_security_common_api.h +2 -2
  127. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +47 -1
  128. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h +3 -1
  129. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +12 -11
  130. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h +7 -2
  131. data/src/core/tsi/local_transport_security.cc +209 -0
  132. data/src/core/tsi/local_transport_security.h +51 -0
  133. data/src/core/tsi/ssl_transport_security.cc +2 -3
  134. data/src/{core/ext → cpp/ext/filters}/census/grpc_context.cc +0 -0
  135. data/src/ruby/ext/grpc/rb_channel_credentials.c +3 -3
  136. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +18 -18
  137. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +29 -29
  138. data/src/ruby/lib/grpc/generic/active_call.rb +19 -23
  139. data/src/ruby/lib/grpc/version.rb +1 -1
  140. data/src/ruby/spec/call_credentials_spec.rb +1 -1
  141. data/src/ruby/spec/call_spec.rb +1 -1
  142. data/src/ruby/spec/channel_credentials_spec.rb +1 -1
  143. data/src/ruby/spec/channel_spec.rb +1 -1
  144. data/src/ruby/spec/client_auth_spec.rb +1 -12
  145. data/src/ruby/spec/client_server_spec.rb +1 -1
  146. data/src/ruby/spec/compression_options_spec.rb +1 -1
  147. data/src/ruby/spec/error_sanity_spec.rb +1 -1
  148. data/src/ruby/spec/generic/client_stub_spec.rb +13 -1
  149. data/src/ruby/spec/generic/rpc_desc_spec.rb +1 -1
  150. data/src/ruby/spec/generic/rpc_server_pool_spec.rb +1 -1
  151. data/src/ruby/spec/generic/service_spec.rb +1 -1
  152. data/src/ruby/spec/google_rpc_status_utils_spec.rb +1 -12
  153. data/src/ruby/spec/pb/duplicate/codegen_spec.rb +1 -0
  154. data/src/ruby/spec/pb/health/checker_spec.rb +1 -1
  155. data/src/ruby/spec/server_credentials_spec.rb +1 -1
  156. data/src/ruby/spec/server_spec.rb +1 -1
  157. data/src/ruby/spec/spec_helper.rb +1 -0
  158. data/src/ruby/spec/support/services.rb +1 -1
  159. data/src/ruby/spec/time_consts_spec.rb +1 -1
  160. data/third_party/boringssl/crypto/asn1/tasn_dec.c +40 -19
  161. data/third_party/boringssl/crypto/bytestring/cbs.c +1 -0
  162. data/third_party/boringssl/crypto/cipher_extra/e_aesccm.c +47 -15
  163. data/third_party/boringssl/crypto/ec_extra/ec_asn1.c +9 -10
  164. data/third_party/boringssl/crypto/ecdh/ecdh.c +4 -3
  165. data/third_party/boringssl/crypto/fipsmodule/bn/add.c +30 -54
  166. data/third_party/boringssl/crypto/fipsmodule/bn/bn.c +7 -1
  167. data/third_party/boringssl/crypto/fipsmodule/bn/cmp.c +8 -8
  168. data/third_party/boringssl/crypto/fipsmodule/bn/div.c +97 -11
  169. data/third_party/boringssl/crypto/fipsmodule/bn/gcd.c +274 -218
  170. data/third_party/boringssl/crypto/fipsmodule/bn/internal.h +111 -34
  171. data/third_party/boringssl/crypto/fipsmodule/bn/montgomery.c +2 -2
  172. data/third_party/boringssl/crypto/fipsmodule/bn/montgomery_inv.c +1 -1
  173. data/third_party/boringssl/crypto/fipsmodule/bn/mul.c +24 -6
  174. data/third_party/boringssl/crypto/fipsmodule/bn/prime.c +324 -63
  175. data/third_party/boringssl/crypto/fipsmodule/bn/random.c +74 -21
  176. data/third_party/boringssl/crypto/fipsmodule/bn/shift.c +128 -86
  177. data/third_party/boringssl/crypto/fipsmodule/bn/sqrt.c +1 -1
  178. data/third_party/boringssl/crypto/fipsmodule/ec/ec_key.c +67 -112
  179. data/third_party/boringssl/crypto/fipsmodule/ec/internal.h +8 -1
  180. data/third_party/boringssl/crypto/fipsmodule/ec/oct.c +5 -5
  181. data/third_party/boringssl/crypto/fipsmodule/ec/p224-64.c +9 -17
  182. data/third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64-table.h +5378 -5418
  183. data/third_party/boringssl/crypto/fipsmodule/ec/simple.c +32 -32
  184. data/third_party/boringssl/crypto/fipsmodule/ecdsa/ecdsa.c +5 -11
  185. data/third_party/boringssl/crypto/fipsmodule/rsa/blinding.c +16 -40
  186. data/third_party/boringssl/crypto/fipsmodule/rsa/internal.h +1 -6
  187. data/third_party/boringssl/crypto/fipsmodule/rsa/rsa.c +41 -29
  188. data/third_party/boringssl/crypto/fipsmodule/rsa/rsa_impl.c +63 -49
  189. data/third_party/boringssl/crypto/x509/vpm_int.h +1 -0
  190. data/third_party/boringssl/crypto/x509/x509_vfy.c +4 -0
  191. data/third_party/boringssl/crypto/x509/x509_vpm.c +44 -22
  192. data/third_party/boringssl/include/openssl/aead.h +8 -2
  193. data/third_party/boringssl/include/openssl/asn1.h +1 -0
  194. data/third_party/boringssl/include/openssl/base.h +4 -0
  195. data/third_party/boringssl/include/openssl/bn.h +13 -3
  196. data/third_party/boringssl/include/openssl/bytestring.h +4 -4
  197. data/third_party/boringssl/include/openssl/ec.h +10 -4
  198. data/third_party/boringssl/include/openssl/ec_key.h +0 -3
  199. data/third_party/boringssl/include/openssl/rsa.h +1 -0
  200. data/third_party/boringssl/include/openssl/ssl.h +8 -3
  201. data/third_party/boringssl/include/openssl/ssl3.h +0 -1
  202. data/third_party/boringssl/include/openssl/x509.h +1 -0
  203. data/third_party/boringssl/include/openssl/x509v3.h +1 -0
  204. data/third_party/boringssl/ssl/handshake_client.cc +36 -64
  205. data/third_party/boringssl/ssl/ssl_cipher.cc +4 -0
  206. data/third_party/boringssl/ssl/ssl_lib.cc +1 -1
  207. metadata +45 -38
  208. data/src/core/ext/filters/load_reporting/server_load_reporting_filter.cc +0 -222
  209. data/src/core/ext/filters/load_reporting/server_load_reporting_plugin.cc +0 -71
  210. data/src/core/ext/filters/load_reporting/server_load_reporting_plugin.h +0 -61
  211. data/src/ruby/spec/pb/package_with_underscore/checker_spec.rb +0 -51
  212. data/src/ruby/spec/pb/package_with_underscore/data.proto +0 -23
  213. data/src/ruby/spec/pb/package_with_underscore/service.proto +0 -23
@@ -286,14 +286,6 @@ GRPCAPI grpc_channel* grpc_lame_client_channel_create(
286
286
  /** Close and destroy a grpc channel */
287
287
  GRPCAPI void grpc_channel_destroy(grpc_channel* channel);
288
288
 
289
- /** Returns the JSON formatted channel trace for this channel. The caller
290
- owns the returned string and is responsible for freeing it. */
291
- GRPCAPI char* grpc_channel_get_trace(grpc_channel* channel);
292
-
293
- /** Returns the channel uuid, which can be used to look up its trace at a
294
- later time. */
295
- GRPCAPI intptr_t grpc_channel_get_uuid(grpc_channel* channel);
296
-
297
289
  /** Error handling for grpc_call
298
290
  Most grpc_call functions return a grpc_error. If the error is not GRPC_OK
299
291
  then the operation failed due to some unsatisfied precondition.
@@ -163,6 +163,26 @@ typedef struct {
163
163
  const char* cert_chain;
164
164
  } grpc_ssl_pem_key_cert_pair;
165
165
 
166
+ /** Object that holds additional peer-verification options on a secure
167
+ channel. */
168
+ typedef struct {
169
+ /** If non-NULL this callback will be invoked with the expected
170
+ target_name, the peer's certificate (in PEM format), and whatever
171
+ userdata pointer is set below. If a non-zero value is returned by this
172
+ callback then it is treated as a verification failure. Invocation of
173
+ the callback is blocking, so any implementation should be light-weight.
174
+ */
175
+ int (*verify_peer_callback)(const char* target_name, const char* peer_pem,
176
+ void* userdata);
177
+ /** Arbitrary userdata that will be passed as the last argument to
178
+ verify_peer_callback. */
179
+ void* verify_peer_callback_userdata;
180
+ /** A destruct callback that will be invoked when the channel is being
181
+ cleaned up. The userdata argument will be passed to it. The intent is
182
+ to perform any cleanup associated with that userdata. */
183
+ void (*verify_peer_destruct)(void* userdata);
184
+ } verify_peer_options;
185
+
166
186
  /** Creates an SSL credentials object.
167
187
  - pem_root_certs is the NULL-terminated string containing the PEM encoding
168
188
  of the server root certificates. If this parameter is NULL, the
@@ -173,10 +193,17 @@ typedef struct {
173
193
  disk (in the grpc install directory).
174
194
  - pem_key_cert_pair is a pointer on the object containing client's private
175
195
  key and certificate chain. This parameter can be NULL if the client does
176
- not have such a key/cert pair. */
196
+ not have such a key/cert pair.
197
+ - verify_options is an optional verify_peer_options object which holds
198
+ additional options controlling how peer certificates are verified. For
199
+ example, you can supply a callback which receives the peer's certificate
200
+ with which you can do additional verification. Can be NULL, in which
201
+ case verification will retain default behavior. Any settings in
202
+ verify_options are copied during this call, so the verify_options
203
+ object can be released afterwards. */
177
204
  GRPCAPI grpc_channel_credentials* grpc_ssl_credentials_create(
178
205
  const char* pem_root_certs, grpc_ssl_pem_key_cert_pair* pem_key_cert_pair,
179
- void* reserved);
206
+ const verify_peer_options* verify_options, void* reserved);
180
207
 
181
208
  /** --- grpc_call_credentials object.
182
209
 
@@ -558,6 +585,36 @@ GRPCAPI grpc_channel_credentials* grpc_alts_credentials_create(
558
585
  GRPCAPI grpc_server_credentials* grpc_alts_server_credentials_create(
559
586
  const grpc_alts_credentials_options* options);
560
587
 
588
+ /** --- Local channel/server credentials --- **/
589
+
590
+ /**
591
+ * Type of local connection for which local channel/server credentials will be
592
+ * applied. It only supports UDS for now.
593
+ */
594
+ typedef enum { UDS = 0 } grpc_local_connect_type;
595
+
596
+ /**
597
+ * This method creates a local channel credential object. It is used for
598
+ * experimental purpose for now and subject to change.
599
+ *
600
+ * - type: local connection type
601
+ *
602
+ * It returns the created local channel credential object.
603
+ */
604
+ GRPCAPI grpc_channel_credentials* grpc_local_credentials_create(
605
+ grpc_local_connect_type type);
606
+
607
+ /**
608
+ * This method creates a local server credential object. It is used for
609
+ * experimental purpose for now and subject to change.
610
+ *
611
+ * - type: local connection type
612
+ *
613
+ * It returns the created local server credential object.
614
+ */
615
+ GRPCAPI grpc_server_credentials* grpc_local_server_credentials_create(
616
+ grpc_local_connect_type type);
617
+
561
618
  #ifdef __cplusplus
562
619
  }
563
620
  #endif
@@ -196,8 +196,8 @@ typedef struct {
196
196
  data frame, Int valued, milliseconds. */
197
197
  #define GRPC_ARG_HTTP2_MIN_SENT_PING_INTERVAL_WITHOUT_DATA_MS \
198
198
  "grpc.http2.min_time_between_pings_ms"
199
- /** Minimum allowed time between receiving successive ping frames without
200
- sending any data frame. Int valued, milliseconds */
199
+ /** Minimum allowed time between a server receiving successive ping frames
200
+ without sending any data frame. Int valued, milliseconds */
201
201
  #define GRPC_ARG_HTTP2_MIN_RECV_PING_INTERVAL_WITHOUT_DATA_MS \
202
202
  "grpc.http2.min_ping_interval_without_data_ms"
203
203
  /** Channel arg to override the http2 :scheme header */
@@ -289,6 +289,10 @@ typedef struct {
289
289
  * subchannel. The default is 10. If set to 0, channel tracing is disabled. */
290
290
  #define GRPC_ARG_MAX_CHANNEL_TRACE_EVENTS_PER_NODE \
291
291
  "grpc.max_channel_trace_events_per_node"
292
+ /** If non-zero, gRPC library will track stats and information at at per channel
293
+ * level. Disabling channelz naturally disables channel tracing. The default
294
+ * is for channelz to be disabled. */
295
+ #define GRPC_ARG_ENABLE_CHANNELZ "grpc.enable_channelz"
292
296
  /** If non-zero, Cronet transport will coalesce packets to fewer frames
293
297
  * when possible. */
294
298
  #define GRPC_ARG_USE_CRONET_PACKET_COALESCING \
@@ -336,6 +340,8 @@ typedef struct {
336
340
  /** If non-zero, client authority filter is disabled for the channel */
337
341
  #define GRPC_ARG_DISABLE_CLIENT_AUTHORITY_FILTER \
338
342
  "grpc.disable_client_authority_filter"
343
+ /** If set to zero, disables use of http proxies. Enabled by default. */
344
+ #define GRPC_ARG_ENABLE_HTTP_PROXY "grpc.enable_http_proxy"
339
345
  /** \} */
340
346
 
341
347
  /** Result of a grpc call. If the caller satisfies the prerequisites of a
@@ -0,0 +1,112 @@
1
+ /*
2
+ *
3
+ * Copyright 2015 gRPC authors.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ *
17
+ */
18
+
19
+ #ifndef GRPC_IMPL_CODEGEN_LOG_H
20
+ #define GRPC_IMPL_CODEGEN_LOG_H
21
+
22
+ #include <grpc/impl/codegen/port_platform.h>
23
+
24
+ #include <stdarg.h>
25
+ #include <stdlib.h> /* for abort() */
26
+
27
+ #ifdef __cplusplus
28
+ extern "C" {
29
+ #endif
30
+
31
+ /** GPR log API.
32
+
33
+ Usage (within grpc):
34
+
35
+ int argument1 = 3;
36
+ char* argument2 = "hello";
37
+ gpr_log(GPR_DEBUG, "format string %d", argument1);
38
+ gpr_log(GPR_INFO, "hello world");
39
+ gpr_log(GPR_ERROR, "%d %s!!", argument1, argument2); */
40
+
41
+ /** The severity of a log message - use the #defines below when calling into
42
+ gpr_log to additionally supply file and line data */
43
+ typedef enum gpr_log_severity {
44
+ GPR_LOG_SEVERITY_DEBUG,
45
+ GPR_LOG_SEVERITY_INFO,
46
+ GPR_LOG_SEVERITY_ERROR
47
+ } gpr_log_severity;
48
+
49
+ #define GPR_LOG_VERBOSITY_UNSET -1
50
+
51
+ /** Returns a string representation of the log severity */
52
+ GPRAPI const char* gpr_log_severity_string(gpr_log_severity severity);
53
+
54
+ /** Macros to build log contexts at various severity levels */
55
+ #define GPR_DEBUG __FILE__, __LINE__, GPR_LOG_SEVERITY_DEBUG
56
+ #define GPR_INFO __FILE__, __LINE__, GPR_LOG_SEVERITY_INFO
57
+ #define GPR_ERROR __FILE__, __LINE__, GPR_LOG_SEVERITY_ERROR
58
+
59
+ /** Log a message. It's advised to use GPR_xxx above to generate the context
60
+ * for each message */
61
+ GPRAPI void gpr_log(const char* file, int line, gpr_log_severity severity,
62
+ const char* format, ...) GPR_PRINT_FORMAT_CHECK(4, 5);
63
+
64
+ GPRAPI int gpr_should_log(gpr_log_severity severity);
65
+
66
+ GPRAPI void gpr_log_message(const char* file, int line,
67
+ gpr_log_severity severity, const char* message);
68
+
69
+ /** Set global log verbosity */
70
+ GPRAPI void gpr_set_log_verbosity(gpr_log_severity min_severity_to_print);
71
+
72
+ GPRAPI void gpr_log_verbosity_init(void);
73
+
74
+ /** Log overrides: applications can use this API to intercept logging calls
75
+ and use their own implementations */
76
+
77
+ struct gpr_log_func_args {
78
+ const char* file;
79
+ int line;
80
+ gpr_log_severity severity;
81
+ const char* message;
82
+ };
83
+
84
+ typedef struct gpr_log_func_args gpr_log_func_args;
85
+
86
+ typedef void (*gpr_log_func)(gpr_log_func_args* args);
87
+ GPRAPI void gpr_set_log_function(gpr_log_func func);
88
+
89
+ /** abort() the process if x is zero, having written a line to the log.
90
+
91
+ Intended for internal invariants. If the error can be recovered from,
92
+ without the possibility of corruption, or might best be reflected via
93
+ an exception in a higher-level language, consider returning error code. */
94
+ #define GPR_ASSERT(x) \
95
+ do { \
96
+ if (GPR_UNLIKELY(!(x))) { \
97
+ gpr_log(GPR_ERROR, "assertion failed: %s", #x); \
98
+ abort(); \
99
+ } \
100
+ } while (0)
101
+
102
+ #ifndef NDEBUG
103
+ #define GPR_DEBUG_ASSERT(x) GPR_ASSERT(x)
104
+ #else
105
+ #define GPR_DEBUG_ASSERT(x)
106
+ #endif
107
+
108
+ #ifdef __cplusplus
109
+ }
110
+ #endif
111
+
112
+ #endif /* GRPC_IMPL_CODEGEN_LOG_H */
@@ -17,6 +17,7 @@ framework module grpc {
17
17
  header "impl/codegen/fork.h"
18
18
  header "impl/codegen/gpr_slice.h"
19
19
  header "impl/codegen/gpr_types.h"
20
+ header "impl/codegen/log.h"
20
21
  header "impl/codegen/port_platform.h"
21
22
  header "impl/codegen/sync.h"
22
23
  header "impl/codegen/sync_generic.h"
@@ -32,6 +33,7 @@ framework module grpc {
32
33
  header "impl/codegen/fork.h"
33
34
  header "impl/codegen/gpr_slice.h"
34
35
  header "impl/codegen/gpr_types.h"
36
+ header "impl/codegen/log.h"
35
37
  header "impl/codegen/port_platform.h"
36
38
  header "impl/codegen/sync.h"
37
39
  header "impl/codegen/sync_generic.h"
@@ -19,94 +19,8 @@
19
19
  #ifndef GRPC_SUPPORT_LOG_H
20
20
  #define GRPC_SUPPORT_LOG_H
21
21
 
22
- #include <grpc/impl/codegen/port_platform.h>
22
+ #include <grpc/support/port_platform.h>
23
23
 
24
- #include <stdarg.h>
25
- #include <stdlib.h> /* for abort() */
26
-
27
- #ifdef __cplusplus
28
- extern "C" {
29
- #endif
30
-
31
- /** GPR log API.
32
-
33
- Usage (within grpc):
34
-
35
- int argument1 = 3;
36
- char* argument2 = "hello";
37
- gpr_log(GPR_DEBUG, "format string %d", argument1);
38
- gpr_log(GPR_INFO, "hello world");
39
- gpr_log(GPR_ERROR, "%d %s!!", argument1, argument2); */
40
-
41
- /** The severity of a log message - use the #defines below when calling into
42
- gpr_log to additionally supply file and line data */
43
- typedef enum gpr_log_severity {
44
- GPR_LOG_SEVERITY_DEBUG,
45
- GPR_LOG_SEVERITY_INFO,
46
- GPR_LOG_SEVERITY_ERROR
47
- } gpr_log_severity;
48
-
49
- #define GPR_LOG_VERBOSITY_UNSET -1
50
-
51
- /** Returns a string representation of the log severity */
52
- GPRAPI const char* gpr_log_severity_string(gpr_log_severity severity);
53
-
54
- /** Macros to build log contexts at various severity levels */
55
- #define GPR_DEBUG __FILE__, __LINE__, GPR_LOG_SEVERITY_DEBUG
56
- #define GPR_INFO __FILE__, __LINE__, GPR_LOG_SEVERITY_INFO
57
- #define GPR_ERROR __FILE__, __LINE__, GPR_LOG_SEVERITY_ERROR
58
-
59
- /** Log a message. It's advised to use GPR_xxx above to generate the context
60
- * for each message */
61
- GPRAPI void gpr_log(const char* file, int line, gpr_log_severity severity,
62
- const char* format, ...) GPR_PRINT_FORMAT_CHECK(4, 5);
63
-
64
- GPRAPI int gpr_should_log(gpr_log_severity severity);
65
-
66
- GPRAPI void gpr_log_message(const char* file, int line,
67
- gpr_log_severity severity, const char* message);
68
-
69
- /** Set global log verbosity */
70
- GPRAPI void gpr_set_log_verbosity(gpr_log_severity min_severity_to_print);
71
-
72
- GPRAPI void gpr_log_verbosity_init(void);
73
-
74
- /** Log overrides: applications can use this API to intercept logging calls
75
- and use their own implementations */
76
-
77
- struct gpr_log_func_args {
78
- const char* file;
79
- int line;
80
- gpr_log_severity severity;
81
- const char* message;
82
- };
83
-
84
- typedef struct gpr_log_func_args gpr_log_func_args;
85
-
86
- typedef void (*gpr_log_func)(gpr_log_func_args* args);
87
- GPRAPI void gpr_set_log_function(gpr_log_func func);
88
-
89
- /** abort() the process if x is zero, having written a line to the log.
90
-
91
- Intended for internal invariants. If the error can be recovered from,
92
- without the possibility of corruption, or might best be reflected via
93
- an exception in a higher-level language, consider returning error code. */
94
- #define GPR_ASSERT(x) \
95
- do { \
96
- if (GPR_UNLIKELY(!(x))) { \
97
- gpr_log(GPR_ERROR, "assertion failed: %s", #x); \
98
- abort(); \
99
- } \
100
- } while (0)
101
-
102
- #ifndef NDEBUG
103
- #define GPR_DEBUG_ASSERT(x) GPR_ASSERT(x)
104
- #else
105
- #define GPR_DEBUG_ASSERT(x)
106
- #endif
107
-
108
- #ifdef __cplusplus
109
- }
110
- #endif
24
+ #include <grpc/impl/codegen/log.h>
111
25
 
112
26
  #endif /* GRPC_SUPPORT_LOG_H */
@@ -21,6 +21,8 @@
21
21
 
22
22
  #include <grpc/support/port_platform.h>
23
23
 
24
+ #include <grpc/impl/codegen/gpr_types.h>
25
+
24
26
  #ifdef __cplusplus
25
27
  extern "C" {
26
28
  #endif
@@ -54,174 +54,175 @@ OPENSSL_COMPILE_ASSERT(ERR_LIB_USER == 32, library_values_changed_32);
54
54
  OPENSSL_COMPILE_ASSERT(ERR_NUM_LIBS == 33, library_values_changed_num);
55
55
 
56
56
  const uint32_t kOpenSSLReasonValues[] = {
57
- 0xc320838,
58
- 0xc328852,
59
- 0xc330861,
60
- 0xc338871,
61
- 0xc340880,
62
- 0xc348899,
63
- 0xc3508a5,
64
- 0xc3588c2,
65
- 0xc3608e2,
66
- 0xc3688f0,
67
- 0xc370900,
68
- 0xc37890d,
69
- 0xc38091d,
70
- 0xc388928,
71
- 0xc39093e,
72
- 0xc39894d,
73
- 0xc3a0961,
74
- 0xc3a8845,
57
+ 0xc320848,
58
+ 0xc328862,
59
+ 0xc330871,
60
+ 0xc338881,
61
+ 0xc340890,
62
+ 0xc3488a9,
63
+ 0xc3508b5,
64
+ 0xc3588d2,
65
+ 0xc3608f2,
66
+ 0xc368900,
67
+ 0xc370910,
68
+ 0xc37891d,
69
+ 0xc38092d,
70
+ 0xc388938,
71
+ 0xc39094e,
72
+ 0xc39895d,
73
+ 0xc3a0971,
74
+ 0xc3a8855,
75
75
  0xc3b00ea,
76
- 0xc3b88d4,
77
- 0x10320845,
78
- 0x10329535,
79
- 0x10331541,
80
- 0x1033955a,
81
- 0x1034156d,
82
- 0x10348efc,
83
- 0x10350c5e,
84
- 0x10359580,
85
- 0x10361595,
86
- 0x103695a8,
87
- 0x103715c7,
88
- 0x103795e0,
89
- 0x103815f5,
90
- 0x10389613,
91
- 0x10391622,
92
- 0x1039963e,
93
- 0x103a1659,
94
- 0x103a9668,
95
- 0x103b1684,
96
- 0x103b969f,
97
- 0x103c16b6,
76
+ 0xc3b88e4,
77
+ 0x10320855,
78
+ 0x10329545,
79
+ 0x10331551,
80
+ 0x1033956a,
81
+ 0x1034157d,
82
+ 0x10348f0c,
83
+ 0x10350c6e,
84
+ 0x10359590,
85
+ 0x103615a5,
86
+ 0x103695b8,
87
+ 0x103715d7,
88
+ 0x103795f0,
89
+ 0x10381605,
90
+ 0x10389623,
91
+ 0x10391632,
92
+ 0x1039964e,
93
+ 0x103a1669,
94
+ 0x103a9678,
95
+ 0x103b1694,
96
+ 0x103b96af,
97
+ 0x103c16d5,
98
98
  0x103c80ea,
99
- 0x103d16c7,
100
- 0x103d96db,
101
- 0x103e16fa,
102
- 0x103e9709,
103
- 0x103f1720,
104
- 0x103f9733,
105
- 0x10400c22,
106
- 0x10409746,
107
- 0x10411764,
108
- 0x10419777,
109
- 0x10421791,
110
- 0x104297a1,
111
- 0x104317b5,
112
- 0x104397cb,
113
- 0x104417e3,
114
- 0x104497f8,
115
- 0x1045180c,
116
- 0x1045981e,
117
- 0x104605fb,
118
- 0x1046894d,
119
- 0x10471833,
120
- 0x1047984a,
121
- 0x1048185f,
122
- 0x1048986d,
123
- 0x10490e5e,
124
- 0x14320c05,
125
- 0x14328c13,
126
- 0x14330c22,
127
- 0x14338c34,
99
+ 0x103d16e6,
100
+ 0x103d96fa,
101
+ 0x103e1719,
102
+ 0x103e9728,
103
+ 0x103f173f,
104
+ 0x103f9752,
105
+ 0x10400c32,
106
+ 0x10409765,
107
+ 0x10411783,
108
+ 0x10419796,
109
+ 0x104217b0,
110
+ 0x104297c0,
111
+ 0x104317d4,
112
+ 0x104397ea,
113
+ 0x10441802,
114
+ 0x10449817,
115
+ 0x1045182b,
116
+ 0x1045983d,
117
+ 0x1046060b,
118
+ 0x1046895d,
119
+ 0x10471852,
120
+ 0x10479869,
121
+ 0x1048187e,
122
+ 0x1048988c,
123
+ 0x10490e6e,
124
+ 0x104996c6,
125
+ 0x14320c15,
126
+ 0x14328c23,
127
+ 0x14330c32,
128
+ 0x14338c44,
128
129
  0x143400ac,
129
130
  0x143480ea,
130
131
  0x18320083,
131
- 0x18328f52,
132
+ 0x18328f62,
132
133
  0x183300ac,
133
- 0x18338f68,
134
- 0x18340f7c,
134
+ 0x18338f78,
135
+ 0x18340f8c,
135
136
  0x183480ea,
136
- 0x18350f91,
137
- 0x18358fa9,
138
- 0x18360fbe,
139
- 0x18368fd2,
140
- 0x18370ff6,
141
- 0x1837900c,
142
- 0x18381020,
143
- 0x18389030,
144
- 0x18390a73,
145
- 0x18399040,
146
- 0x183a1068,
147
- 0x183a908e,
148
- 0x183b0c6a,
149
- 0x183b90c3,
150
- 0x183c10d5,
151
- 0x183c90e0,
152
- 0x183d10f0,
153
- 0x183d9101,
154
- 0x183e1112,
155
- 0x183e9124,
156
- 0x183f114d,
157
- 0x183f9166,
158
- 0x1840117e,
159
- 0x184086d3,
160
- 0x184110b1,
161
- 0x1841907c,
162
- 0x1842109b,
163
- 0x18429055,
164
- 0x203211b8,
165
- 0x203291a5,
166
- 0x243211c4,
167
- 0x24328993,
168
- 0x243311d6,
169
- 0x243391e3,
170
- 0x243411f0,
171
- 0x24349202,
172
- 0x24351211,
173
- 0x2435922e,
174
- 0x2436123b,
175
- 0x24369249,
176
- 0x24371257,
177
- 0x24379265,
178
- 0x2438126e,
179
- 0x2438927b,
180
- 0x2439128e,
181
- 0x28320c52,
182
- 0x28328c6a,
183
- 0x28330c22,
184
- 0x28338c7d,
185
- 0x28340c5e,
137
+ 0x18350fa1,
138
+ 0x18358fb9,
139
+ 0x18360fce,
140
+ 0x18368fe2,
141
+ 0x18371006,
142
+ 0x1837901c,
143
+ 0x18381030,
144
+ 0x18389040,
145
+ 0x18390a83,
146
+ 0x18399050,
147
+ 0x183a1078,
148
+ 0x183a909e,
149
+ 0x183b0c7a,
150
+ 0x183b90d3,
151
+ 0x183c10e5,
152
+ 0x183c90f0,
153
+ 0x183d1100,
154
+ 0x183d9111,
155
+ 0x183e1122,
156
+ 0x183e9134,
157
+ 0x183f115d,
158
+ 0x183f9176,
159
+ 0x1840118e,
160
+ 0x184086e3,
161
+ 0x184110c1,
162
+ 0x1841908c,
163
+ 0x184210ab,
164
+ 0x18429065,
165
+ 0x203211c8,
166
+ 0x203291b5,
167
+ 0x243211d4,
168
+ 0x243289a3,
169
+ 0x243311e6,
170
+ 0x243391f3,
171
+ 0x24341200,
172
+ 0x24349212,
173
+ 0x24351221,
174
+ 0x2435923e,
175
+ 0x2436124b,
176
+ 0x24369259,
177
+ 0x24371267,
178
+ 0x24379275,
179
+ 0x2438127e,
180
+ 0x2438928b,
181
+ 0x2439129e,
182
+ 0x28320c62,
183
+ 0x28328c7a,
184
+ 0x28330c32,
185
+ 0x28338c8d,
186
+ 0x28340c6e,
186
187
  0x283480ac,
187
188
  0x283500ea,
188
- 0x2c322cf7,
189
- 0x2c3292a5,
190
- 0x2c332d05,
191
- 0x2c33ad17,
192
- 0x2c342d2b,
193
- 0x2c34ad3d,
194
- 0x2c352d58,
195
- 0x2c35ad6a,
196
- 0x2c362d7d,
189
+ 0x2c322d16,
190
+ 0x2c3292b5,
191
+ 0x2c332d24,
192
+ 0x2c33ad36,
193
+ 0x2c342d4a,
194
+ 0x2c34ad5c,
195
+ 0x2c352d77,
196
+ 0x2c35ad89,
197
+ 0x2c362d9c,
197
198
  0x2c36832d,
198
- 0x2c372d8a,
199
- 0x2c37ad9c,
200
- 0x2c382dc1,
201
- 0x2c38add8,
202
- 0x2c392de6,
203
- 0x2c39adf6,
204
- 0x2c3a2e08,
205
- 0x2c3aae1c,
206
- 0x2c3b2e2d,
207
- 0x2c3bae4c,
208
- 0x2c3c12b7,
209
- 0x2c3c92cd,
210
- 0x2c3d2e60,
211
- 0x2c3d92e6,
212
- 0x2c3e2e7d,
213
- 0x2c3eae8b,
214
- 0x2c3f2ea3,
215
- 0x2c3faebb,
216
- 0x2c402ec8,
217
- 0x2c4091b8,
218
- 0x2c412ed9,
219
- 0x2c41aeec,
220
- 0x2c42117e,
221
- 0x2c42aefd,
222
- 0x2c430720,
223
- 0x2c43ae3e,
224
- 0x2c442daf,
199
+ 0x2c372da9,
200
+ 0x2c37adbb,
201
+ 0x2c382de0,
202
+ 0x2c38adf7,
203
+ 0x2c392e05,
204
+ 0x2c39ae15,
205
+ 0x2c3a2e27,
206
+ 0x2c3aae3b,
207
+ 0x2c3b2e4c,
208
+ 0x2c3bae6b,
209
+ 0x2c3c12c7,
210
+ 0x2c3c92dd,
211
+ 0x2c3d2e7f,
212
+ 0x2c3d92f6,
213
+ 0x2c3e2e9c,
214
+ 0x2c3eaeaa,
215
+ 0x2c3f2ec2,
216
+ 0x2c3faeda,
217
+ 0x2c402ee7,
218
+ 0x2c4091c8,
219
+ 0x2c412ef8,
220
+ 0x2c41af0b,
221
+ 0x2c42118e,
222
+ 0x2c42af1c,
223
+ 0x2c430730,
224
+ 0x2c43ae5d,
225
+ 0x2c442dce,
225
226
  0x30320000,
226
227
  0x30328015,
227
228
  0x3033001f,
@@ -282,454 +283,455 @@ const uint32_t kOpenSSLReasonValues[] = {
282
283
  0x304e8463,
283
284
  0x304f0475,
284
285
  0x304f8487,
285
- 0x3050049a,
286
- 0x305084ad,
287
- 0x305104be,
288
- 0x305184ce,
289
- 0x305204e6,
290
- 0x305284fb,
291
- 0x30530513,
292
- 0x30538527,
293
- 0x3054053f,
294
- 0x30548558,
295
- 0x30550571,
296
- 0x3055858e,
297
- 0x30560599,
298
- 0x305685b1,
299
- 0x305705c1,
300
- 0x305785d2,
301
- 0x305805e5,
302
- 0x305885fb,
303
- 0x30590604,
304
- 0x30598619,
305
- 0x305a062c,
306
- 0x305a863b,
307
- 0x305b065b,
308
- 0x305b866a,
309
- 0x305c068b,
310
- 0x305c86a7,
311
- 0x305d06b3,
312
- 0x305d86d3,
313
- 0x305e06ef,
314
- 0x305e8700,
315
- 0x305f0716,
316
- 0x305f8720,
317
- 0x34320b63,
318
- 0x34328b77,
319
- 0x34330b94,
320
- 0x34338ba7,
321
- 0x34340bb6,
322
- 0x34348bef,
323
- 0x34350bd3,
286
+ 0x305004aa,
287
+ 0x305084bd,
288
+ 0x305104ce,
289
+ 0x305184de,
290
+ 0x305204f6,
291
+ 0x3052850b,
292
+ 0x30530523,
293
+ 0x30538537,
294
+ 0x3054054f,
295
+ 0x30548568,
296
+ 0x30550581,
297
+ 0x3055859e,
298
+ 0x305605a9,
299
+ 0x305685c1,
300
+ 0x305705d1,
301
+ 0x305785e2,
302
+ 0x305805f5,
303
+ 0x3058860b,
304
+ 0x30590614,
305
+ 0x30598629,
306
+ 0x305a063c,
307
+ 0x305a864b,
308
+ 0x305b066b,
309
+ 0x305b867a,
310
+ 0x305c069b,
311
+ 0x305c86b7,
312
+ 0x305d06c3,
313
+ 0x305d86e3,
314
+ 0x305e06ff,
315
+ 0x305e8710,
316
+ 0x305f0726,
317
+ 0x305f8730,
318
+ 0x3060049a,
319
+ 0x34320b73,
320
+ 0x34328b87,
321
+ 0x34330ba4,
322
+ 0x34338bb7,
323
+ 0x34340bc6,
324
+ 0x34348bff,
325
+ 0x34350be3,
324
326
  0x3c320083,
325
- 0x3c328ca7,
326
- 0x3c330cc0,
327
- 0x3c338cdb,
328
- 0x3c340cf8,
329
- 0x3c348d22,
330
- 0x3c350d3d,
331
- 0x3c358d63,
332
- 0x3c360d7c,
333
- 0x3c368d94,
334
- 0x3c370da5,
335
- 0x3c378db3,
336
- 0x3c380dc0,
337
- 0x3c388dd4,
338
- 0x3c390c6a,
339
- 0x3c398df7,
340
- 0x3c3a0e0b,
341
- 0x3c3a890d,
342
- 0x3c3b0e1b,
343
- 0x3c3b8e36,
344
- 0x3c3c0e48,
345
- 0x3c3c8e7b,
346
- 0x3c3d0e85,
347
- 0x3c3d8e99,
348
- 0x3c3e0ea7,
349
- 0x3c3e8ecc,
350
- 0x3c3f0c93,
351
- 0x3c3f8eb5,
327
+ 0x3c328cb7,
328
+ 0x3c330cd0,
329
+ 0x3c338ceb,
330
+ 0x3c340d08,
331
+ 0x3c348d32,
332
+ 0x3c350d4d,
333
+ 0x3c358d73,
334
+ 0x3c360d8c,
335
+ 0x3c368da4,
336
+ 0x3c370db5,
337
+ 0x3c378dc3,
338
+ 0x3c380dd0,
339
+ 0x3c388de4,
340
+ 0x3c390c7a,
341
+ 0x3c398e07,
342
+ 0x3c3a0e1b,
343
+ 0x3c3a891d,
344
+ 0x3c3b0e2b,
345
+ 0x3c3b8e46,
346
+ 0x3c3c0e58,
347
+ 0x3c3c8e8b,
348
+ 0x3c3d0e95,
349
+ 0x3c3d8ea9,
350
+ 0x3c3e0eb7,
351
+ 0x3c3e8edc,
352
+ 0x3c3f0ca3,
353
+ 0x3c3f8ec5,
352
354
  0x3c4000ac,
353
355
  0x3c4080ea,
354
- 0x3c410d13,
355
- 0x3c418d52,
356
- 0x3c420e5e,
357
- 0x3c428de8,
358
- 0x403218c6,
359
- 0x403298dc,
360
- 0x4033190a,
361
- 0x40339914,
362
- 0x4034192b,
363
- 0x40349949,
364
- 0x40351959,
365
- 0x4035996b,
366
- 0x40361978,
367
- 0x40369984,
368
- 0x40371999,
369
- 0x403799ab,
370
- 0x403819b6,
371
- 0x403899c8,
372
- 0x40390efc,
373
- 0x403999d8,
374
- 0x403a19eb,
375
- 0x403a9a0c,
376
- 0x403b1a1d,
377
- 0x403b9a2d,
356
+ 0x3c410d23,
357
+ 0x3c418d62,
358
+ 0x3c420e6e,
359
+ 0x3c428df8,
360
+ 0x403218e5,
361
+ 0x403298fb,
362
+ 0x40331929,
363
+ 0x40339933,
364
+ 0x4034194a,
365
+ 0x40349968,
366
+ 0x40351978,
367
+ 0x4035998a,
368
+ 0x40361997,
369
+ 0x403699a3,
370
+ 0x403719b8,
371
+ 0x403799ca,
372
+ 0x403819d5,
373
+ 0x403899e7,
374
+ 0x40390f0c,
375
+ 0x403999f7,
376
+ 0x403a1a0a,
377
+ 0x403a9a2b,
378
+ 0x403b1a3c,
379
+ 0x403b9a4c,
378
380
  0x403c0064,
379
381
  0x403c8083,
380
- 0x403d1ab1,
381
- 0x403d9ac7,
382
- 0x403e1ad6,
383
- 0x403e9b0e,
384
- 0x403f1b28,
385
- 0x403f9b36,
386
- 0x40401b4b,
387
- 0x40409b5f,
388
- 0x40411b7c,
389
- 0x40419b97,
390
- 0x40421bb0,
391
- 0x40429bc3,
392
- 0x40431bd7,
393
- 0x40439bef,
394
- 0x40441c06,
382
+ 0x403d1ad0,
383
+ 0x403d9ae6,
384
+ 0x403e1af5,
385
+ 0x403e9b2d,
386
+ 0x403f1b47,
387
+ 0x403f9b55,
388
+ 0x40401b6a,
389
+ 0x40409b7e,
390
+ 0x40411b9b,
391
+ 0x40419bb6,
392
+ 0x40421bcf,
393
+ 0x40429be2,
394
+ 0x40431bf6,
395
+ 0x40439c0e,
396
+ 0x40441c25,
395
397
  0x404480ac,
396
- 0x40451c1b,
397
- 0x40459c2d,
398
- 0x40461c51,
399
- 0x40469c71,
400
- 0x40471c7f,
401
- 0x40479ca6,
402
- 0x40481cf9,
403
- 0x40489d2c,
404
- 0x40491d43,
405
- 0x40499d5d,
406
- 0x404a1d74,
407
- 0x404a9d92,
408
- 0x404b1daa,
409
- 0x404b9dc1,
410
- 0x404c1dd7,
411
- 0x404c9de9,
412
- 0x404d1e0a,
413
- 0x404d9e43,
414
- 0x404e1e57,
415
- 0x404e9e64,
416
- 0x404f1e91,
417
- 0x404f9eba,
418
- 0x40501ef5,
419
- 0x40509f09,
420
- 0x40511f24,
421
- 0x40521f34,
422
- 0x40529f58,
423
- 0x40531f70,
424
- 0x40539f83,
425
- 0x40541f98,
426
- 0x40549fbb,
427
- 0x40551fc9,
428
- 0x4055a006,
429
- 0x40562013,
430
- 0x4056a02c,
431
- 0x40572044,
432
- 0x4057a057,
433
- 0x4058206c,
434
- 0x4058a093,
435
- 0x405920c2,
436
- 0x4059a0ef,
437
- 0x405a2103,
438
- 0x405aa113,
439
- 0x405b212b,
440
- 0x405ba13c,
441
- 0x405c214f,
442
- 0x405ca18e,
443
- 0x405d219b,
444
- 0x405da1b2,
445
- 0x405e21f0,
446
- 0x405e8ab1,
447
- 0x405f2211,
448
- 0x405fa21e,
449
- 0x4060222c,
450
- 0x4060a24e,
451
- 0x406122af,
452
- 0x4061a2e7,
453
- 0x406222fe,
454
- 0x4062a30f,
455
- 0x40632320,
456
- 0x4063a335,
457
- 0x4064234c,
458
- 0x4064a378,
459
- 0x40652393,
460
- 0x4065a3aa,
461
- 0x406623c2,
462
- 0x4066a3ec,
463
- 0x40672417,
464
- 0x4067a438,
465
- 0x40682480,
466
- 0x4068a4a1,
467
- 0x406924d3,
468
- 0x4069a501,
469
- 0x406a2522,
470
- 0x406aa542,
471
- 0x406b26ca,
472
- 0x406ba6ed,
473
- 0x406c2703,
474
- 0x406ca97e,
475
- 0x406d29ad,
476
- 0x406da9d5,
477
- 0x406e2a03,
478
- 0x406eaa50,
479
- 0x406f2a6f,
480
- 0x406faaa7,
481
- 0x40702aba,
482
- 0x4070aad7,
483
- 0x40710800,
484
- 0x4071aae9,
485
- 0x40722afc,
486
- 0x4072ab15,
487
- 0x40732b2d,
488
- 0x407394a4,
489
- 0x40742b41,
490
- 0x4074ab5b,
491
- 0x40752b6c,
492
- 0x4075ab80,
493
- 0x40762b8e,
494
- 0x4076927b,
495
- 0x40772bb3,
496
- 0x4077abd5,
497
- 0x40782bf0,
498
- 0x4078ac29,
499
- 0x40792c40,
500
- 0x4079ac56,
501
- 0x407a2c62,
502
- 0x407aac75,
503
- 0x407b2c8a,
504
- 0x407bac9c,
505
- 0x407c2ccd,
506
- 0x407cacd6,
507
- 0x407d24bc,
508
- 0x407d9eca,
509
- 0x407e2c05,
510
- 0x407ea0a3,
511
- 0x407f1c93,
512
- 0x407f9a53,
513
- 0x40801ea1,
514
- 0x40809cbb,
515
- 0x40811f46,
516
- 0x40819e7b,
517
- 0x408229ee,
518
- 0x40829a39,
519
- 0x4083207e,
520
- 0x4083a35d,
521
- 0x40841ccf,
522
- 0x4084a0db,
523
- 0x40852160,
524
- 0x4085a276,
525
- 0x408621d2,
526
- 0x40869ee4,
527
- 0x40872a34,
528
- 0x4087a2c4,
529
- 0x40881a9a,
530
- 0x4088a44b,
531
- 0x40891ae9,
532
- 0x40899a76,
533
- 0x408a2723,
534
- 0x408a9884,
535
- 0x408b2cb1,
536
- 0x408baa84,
537
- 0x408c2170,
538
- 0x408c98a0,
539
- 0x408d1d12,
540
- 0x408d9ce3,
541
- 0x408e1e2c,
542
- 0x408e9fe6,
543
- 0x408f245f,
544
- 0x408fa292,
545
- 0x41f425f5,
546
- 0x41f92687,
547
- 0x41fe257a,
548
- 0x41fea76f,
549
- 0x41ff2860,
550
- 0x4203260e,
551
- 0x42082630,
552
- 0x4208a66c,
553
- 0x4209255e,
554
- 0x4209a6a6,
555
- 0x420a25b5,
556
- 0x420aa595,
557
- 0x420b25d5,
558
- 0x420ba64e,
559
- 0x420c287c,
560
- 0x420ca73c,
561
- 0x420d2756,
562
- 0x420da78d,
563
- 0x421227a7,
564
- 0x42172843,
565
- 0x4217a7e9,
566
- 0x421c280b,
567
- 0x421f27c6,
568
- 0x42212893,
569
- 0x42262826,
570
- 0x422b2962,
571
- 0x422ba910,
572
- 0x422c294a,
573
- 0x422ca8cf,
574
- 0x422d28ae,
575
- 0x422da92f,
576
- 0x422e28f5,
577
- 0x422eaa1b,
578
- 0x4432072b,
579
- 0x4432873a,
580
- 0x44330746,
581
- 0x44338754,
582
- 0x44340767,
583
- 0x44348778,
584
- 0x4435077f,
585
- 0x44358789,
586
- 0x4436079c,
587
- 0x443687b2,
588
- 0x443707c4,
589
- 0x443787d1,
590
- 0x443807e0,
591
- 0x443887e8,
592
- 0x44390800,
593
- 0x4439880e,
594
- 0x443a0821,
595
- 0x483212a5,
596
- 0x483292b7,
597
- 0x483312cd,
598
- 0x483392e6,
599
- 0x4c32130b,
600
- 0x4c32931b,
601
- 0x4c33132e,
602
- 0x4c33934e,
398
+ 0x40451c3a,
399
+ 0x40459c4c,
400
+ 0x40461c70,
401
+ 0x40469c90,
402
+ 0x40471c9e,
403
+ 0x40479cc5,
404
+ 0x40481d18,
405
+ 0x40489d4b,
406
+ 0x40491d62,
407
+ 0x40499d7c,
408
+ 0x404a1d93,
409
+ 0x404a9db1,
410
+ 0x404b1dc9,
411
+ 0x404b9de0,
412
+ 0x404c1df6,
413
+ 0x404c9e08,
414
+ 0x404d1e29,
415
+ 0x404d9e62,
416
+ 0x404e1e76,
417
+ 0x404e9e83,
418
+ 0x404f1eb0,
419
+ 0x404f9ed9,
420
+ 0x40501f14,
421
+ 0x40509f28,
422
+ 0x40511f43,
423
+ 0x40521f53,
424
+ 0x40529f77,
425
+ 0x40531f8f,
426
+ 0x40539fa2,
427
+ 0x40541fb7,
428
+ 0x40549fda,
429
+ 0x40551fe8,
430
+ 0x4055a025,
431
+ 0x40562032,
432
+ 0x4056a04b,
433
+ 0x40572063,
434
+ 0x4057a076,
435
+ 0x4058208b,
436
+ 0x4058a0b2,
437
+ 0x405920e1,
438
+ 0x4059a10e,
439
+ 0x405a2122,
440
+ 0x405aa132,
441
+ 0x405b214a,
442
+ 0x405ba15b,
443
+ 0x405c216e,
444
+ 0x405ca1ad,
445
+ 0x405d21ba,
446
+ 0x405da1d1,
447
+ 0x405e220f,
448
+ 0x405e8ac1,
449
+ 0x405f2230,
450
+ 0x405fa23d,
451
+ 0x4060224b,
452
+ 0x4060a26d,
453
+ 0x406122ce,
454
+ 0x4061a306,
455
+ 0x4062231d,
456
+ 0x4062a32e,
457
+ 0x4063233f,
458
+ 0x4063a354,
459
+ 0x4064236b,
460
+ 0x4064a397,
461
+ 0x406523b2,
462
+ 0x4065a3c9,
463
+ 0x406623e1,
464
+ 0x4066a40b,
465
+ 0x40672436,
466
+ 0x4067a457,
467
+ 0x4068249f,
468
+ 0x4068a4c0,
469
+ 0x406924f2,
470
+ 0x4069a520,
471
+ 0x406a2541,
472
+ 0x406aa561,
473
+ 0x406b26e9,
474
+ 0x406ba70c,
475
+ 0x406c2722,
476
+ 0x406ca99d,
477
+ 0x406d29cc,
478
+ 0x406da9f4,
479
+ 0x406e2a22,
480
+ 0x406eaa6f,
481
+ 0x406f2a8e,
482
+ 0x406faac6,
483
+ 0x40702ad9,
484
+ 0x4070aaf6,
485
+ 0x40710810,
486
+ 0x4071ab08,
487
+ 0x40722b1b,
488
+ 0x4072ab34,
489
+ 0x40732b4c,
490
+ 0x407394b4,
491
+ 0x40742b60,
492
+ 0x4074ab7a,
493
+ 0x40752b8b,
494
+ 0x4075ab9f,
495
+ 0x40762bad,
496
+ 0x4076928b,
497
+ 0x40772bd2,
498
+ 0x4077abf4,
499
+ 0x40782c0f,
500
+ 0x4078ac48,
501
+ 0x40792c5f,
502
+ 0x4079ac75,
503
+ 0x407a2c81,
504
+ 0x407aac94,
505
+ 0x407b2ca9,
506
+ 0x407bacbb,
507
+ 0x407c2cec,
508
+ 0x407cacf5,
509
+ 0x407d24db,
510
+ 0x407d9ee9,
511
+ 0x407e2c24,
512
+ 0x407ea0c2,
513
+ 0x407f1cb2,
514
+ 0x407f9a72,
515
+ 0x40801ec0,
516
+ 0x40809cda,
517
+ 0x40811f65,
518
+ 0x40819e9a,
519
+ 0x40822a0d,
520
+ 0x40829a58,
521
+ 0x4083209d,
522
+ 0x4083a37c,
523
+ 0x40841cee,
524
+ 0x4084a0fa,
525
+ 0x4085217f,
526
+ 0x4085a295,
527
+ 0x408621f1,
528
+ 0x40869f03,
529
+ 0x40872a53,
530
+ 0x4087a2e3,
531
+ 0x40881ab9,
532
+ 0x4088a46a,
533
+ 0x40891b08,
534
+ 0x40899a95,
535
+ 0x408a2742,
536
+ 0x408a98a3,
537
+ 0x408b2cd0,
538
+ 0x408baaa3,
539
+ 0x408c218f,
540
+ 0x408c98bf,
541
+ 0x408d1d31,
542
+ 0x408d9d02,
543
+ 0x408e1e4b,
544
+ 0x408ea005,
545
+ 0x408f247e,
546
+ 0x408fa2b1,
547
+ 0x41f42614,
548
+ 0x41f926a6,
549
+ 0x41fe2599,
550
+ 0x41fea78e,
551
+ 0x41ff287f,
552
+ 0x4203262d,
553
+ 0x4208264f,
554
+ 0x4208a68b,
555
+ 0x4209257d,
556
+ 0x4209a6c5,
557
+ 0x420a25d4,
558
+ 0x420aa5b4,
559
+ 0x420b25f4,
560
+ 0x420ba66d,
561
+ 0x420c289b,
562
+ 0x420ca75b,
563
+ 0x420d2775,
564
+ 0x420da7ac,
565
+ 0x421227c6,
566
+ 0x42172862,
567
+ 0x4217a808,
568
+ 0x421c282a,
569
+ 0x421f27e5,
570
+ 0x422128b2,
571
+ 0x42262845,
572
+ 0x422b2981,
573
+ 0x422ba92f,
574
+ 0x422c2969,
575
+ 0x422ca8ee,
576
+ 0x422d28cd,
577
+ 0x422da94e,
578
+ 0x422e2914,
579
+ 0x422eaa3a,
580
+ 0x4432073b,
581
+ 0x4432874a,
582
+ 0x44330756,
583
+ 0x44338764,
584
+ 0x44340777,
585
+ 0x44348788,
586
+ 0x4435078f,
587
+ 0x44358799,
588
+ 0x443607ac,
589
+ 0x443687c2,
590
+ 0x443707d4,
591
+ 0x443787e1,
592
+ 0x443807f0,
593
+ 0x443887f8,
594
+ 0x44390810,
595
+ 0x4439881e,
596
+ 0x443a0831,
597
+ 0x483212b5,
598
+ 0x483292c7,
599
+ 0x483312dd,
600
+ 0x483392f6,
601
+ 0x4c32131b,
602
+ 0x4c32932b,
603
+ 0x4c33133e,
604
+ 0x4c33935e,
603
605
  0x4c3400ac,
604
606
  0x4c3480ea,
605
- 0x4c35135a,
606
- 0x4c359368,
607
- 0x4c361384,
608
- 0x4c369397,
609
- 0x4c3713a6,
610
- 0x4c3793b4,
611
- 0x4c3813c9,
612
- 0x4c3893d5,
613
- 0x4c3913f5,
614
- 0x4c39941f,
615
- 0x4c3a1438,
616
- 0x4c3a9451,
617
- 0x4c3b05fb,
618
- 0x4c3b946a,
619
- 0x4c3c147c,
620
- 0x4c3c948b,
621
- 0x4c3d14a4,
622
- 0x4c3d8c45,
623
- 0x4c3e14fd,
624
- 0x4c3e94b3,
625
- 0x4c3f151f,
626
- 0x4c3f927b,
627
- 0x4c4014c9,
628
- 0x4c4092f7,
629
- 0x4c4114ed,
630
- 0x50322f0f,
631
- 0x5032af1e,
632
- 0x50332f29,
633
- 0x5033af39,
634
- 0x50342f52,
635
- 0x5034af6c,
636
- 0x50352f7a,
637
- 0x5035af90,
638
- 0x50362fa2,
639
- 0x5036afb8,
640
- 0x50372fd1,
641
- 0x5037afe4,
642
- 0x50382ffc,
643
- 0x5038b00d,
644
- 0x50393022,
645
- 0x5039b036,
646
- 0x503a3056,
647
- 0x503ab06c,
648
- 0x503b3084,
649
- 0x503bb096,
650
- 0x503c30b2,
651
- 0x503cb0c9,
652
- 0x503d30e2,
653
- 0x503db0f8,
654
- 0x503e3105,
655
- 0x503eb11b,
656
- 0x503f312d,
607
+ 0x4c35136a,
608
+ 0x4c359378,
609
+ 0x4c361394,
610
+ 0x4c3693a7,
611
+ 0x4c3713b6,
612
+ 0x4c3793c4,
613
+ 0x4c3813d9,
614
+ 0x4c3893e5,
615
+ 0x4c391405,
616
+ 0x4c39942f,
617
+ 0x4c3a1448,
618
+ 0x4c3a9461,
619
+ 0x4c3b060b,
620
+ 0x4c3b947a,
621
+ 0x4c3c148c,
622
+ 0x4c3c949b,
623
+ 0x4c3d14b4,
624
+ 0x4c3d8c55,
625
+ 0x4c3e150d,
626
+ 0x4c3e94c3,
627
+ 0x4c3f152f,
628
+ 0x4c3f928b,
629
+ 0x4c4014d9,
630
+ 0x4c409307,
631
+ 0x4c4114fd,
632
+ 0x50322f2e,
633
+ 0x5032af3d,
634
+ 0x50332f48,
635
+ 0x5033af58,
636
+ 0x50342f71,
637
+ 0x5034af8b,
638
+ 0x50352f99,
639
+ 0x5035afaf,
640
+ 0x50362fc1,
641
+ 0x5036afd7,
642
+ 0x50372ff0,
643
+ 0x5037b003,
644
+ 0x5038301b,
645
+ 0x5038b02c,
646
+ 0x50393041,
647
+ 0x5039b055,
648
+ 0x503a3075,
649
+ 0x503ab08b,
650
+ 0x503b30a3,
651
+ 0x503bb0b5,
652
+ 0x503c30d1,
653
+ 0x503cb0e8,
654
+ 0x503d3101,
655
+ 0x503db117,
656
+ 0x503e3124,
657
+ 0x503eb13a,
658
+ 0x503f314c,
657
659
  0x503f8382,
658
- 0x50403140,
659
- 0x5040b150,
660
- 0x5041316a,
661
- 0x5041b179,
662
- 0x50423193,
663
- 0x5042b1b0,
664
- 0x504331c0,
665
- 0x5043b1d0,
666
- 0x504431df,
660
+ 0x5040315f,
661
+ 0x5040b16f,
662
+ 0x50413189,
663
+ 0x5041b198,
664
+ 0x504231b2,
665
+ 0x5042b1cf,
666
+ 0x504331df,
667
+ 0x5043b1ef,
668
+ 0x504431fe,
667
669
  0x5044843f,
668
- 0x504531f3,
669
- 0x5045b211,
670
- 0x50463224,
671
- 0x5046b23a,
672
- 0x5047324c,
673
- 0x5047b261,
674
- 0x50483287,
675
- 0x5048b295,
676
- 0x504932a8,
677
- 0x5049b2bd,
678
- 0x504a32d3,
679
- 0x504ab2e3,
680
- 0x504b3303,
681
- 0x504bb316,
682
- 0x504c3339,
683
- 0x504cb367,
684
- 0x504d3379,
685
- 0x504db396,
686
- 0x504e33b1,
687
- 0x504eb3cd,
688
- 0x504f33df,
689
- 0x504fb3f6,
690
- 0x50503405,
691
- 0x505086ef,
692
- 0x50513418,
693
- 0x58320f3a,
694
- 0x68320efc,
695
- 0x68328c6a,
696
- 0x68330c7d,
697
- 0x68338f0a,
698
- 0x68340f1a,
670
+ 0x50453212,
671
+ 0x5045b230,
672
+ 0x50463243,
673
+ 0x5046b259,
674
+ 0x5047326b,
675
+ 0x5047b280,
676
+ 0x504832a6,
677
+ 0x5048b2b4,
678
+ 0x504932c7,
679
+ 0x5049b2dc,
680
+ 0x504a32f2,
681
+ 0x504ab302,
682
+ 0x504b3322,
683
+ 0x504bb335,
684
+ 0x504c3358,
685
+ 0x504cb386,
686
+ 0x504d3398,
687
+ 0x504db3b5,
688
+ 0x504e33d0,
689
+ 0x504eb3ec,
690
+ 0x504f33fe,
691
+ 0x504fb415,
692
+ 0x50503424,
693
+ 0x505086ff,
694
+ 0x50513437,
695
+ 0x58320f4a,
696
+ 0x68320f0c,
697
+ 0x68328c7a,
698
+ 0x68330c8d,
699
+ 0x68338f1a,
700
+ 0x68340f2a,
699
701
  0x683480ea,
700
- 0x6c320ed8,
701
- 0x6c328c34,
702
- 0x6c330ee3,
703
- 0x74320a19,
702
+ 0x6c320ee8,
703
+ 0x6c328c44,
704
+ 0x6c330ef3,
705
+ 0x74320a29,
704
706
  0x743280ac,
705
- 0x74330c45,
706
- 0x7832097e,
707
- 0x78328993,
708
- 0x7833099f,
707
+ 0x74330c55,
708
+ 0x7832098e,
709
+ 0x783289a3,
710
+ 0x783309af,
709
711
  0x78338083,
710
- 0x783409ae,
711
- 0x783489c3,
712
- 0x783509e2,
713
- 0x78358a04,
714
- 0x78360a19,
715
- 0x78368a2f,
716
- 0x78370a3f,
717
- 0x78378a60,
718
- 0x78380a73,
719
- 0x78388a85,
720
- 0x78390a92,
721
- 0x78398ab1,
722
- 0x783a0ac6,
723
- 0x783a8ad4,
724
- 0x783b0ade,
725
- 0x783b8af2,
726
- 0x783c0b09,
727
- 0x783c8b1e,
728
- 0x783d0b35,
729
- 0x783d8b4a,
730
- 0x783e0aa0,
731
- 0x783e8a52,
732
- 0x7c321194,
712
+ 0x783409be,
713
+ 0x783489d3,
714
+ 0x783509f2,
715
+ 0x78358a14,
716
+ 0x78360a29,
717
+ 0x78368a3f,
718
+ 0x78370a4f,
719
+ 0x78378a70,
720
+ 0x78380a83,
721
+ 0x78388a95,
722
+ 0x78390aa2,
723
+ 0x78398ac1,
724
+ 0x783a0ad6,
725
+ 0x783a8ae4,
726
+ 0x783b0aee,
727
+ 0x783b8b02,
728
+ 0x783c0b19,
729
+ 0x783c8b2e,
730
+ 0x783d0b45,
731
+ 0x783d8b5a,
732
+ 0x783e0ab0,
733
+ 0x783e8a62,
734
+ 0x7c3211a4,
733
735
  };
734
736
 
735
737
  const size_t kOpenSSLReasonValuesLen = sizeof(kOpenSSLReasonValues) / sizeof(kOpenSSLReasonValues[0]);
@@ -795,6 +797,7 @@ const char kOpenSSLReasonStringData[] =
795
797
  "MSTRING_WRONG_TAG\0"
796
798
  "NESTED_ASN1_ERROR\0"
797
799
  "NESTED_ASN1_STRING\0"
800
+ "NESTED_TOO_DEEP\0"
798
801
  "NON_HEX_CHARACTERS\0"
799
802
  "NOT_ASCII_FORMAT\0"
800
803
  "NOT_ENOUGH_DATA\0"
@@ -1031,6 +1034,7 @@ const char kOpenSSLReasonStringData[] =
1031
1034
  "DATA_TOO_SMALL_FOR_KEY_SIZE\0"
1032
1035
  "DIGEST_TOO_BIG_FOR_RSA_KEY\0"
1033
1036
  "D_E_NOT_CONGRUENT_TO_1\0"
1037
+ "D_OUT_OF_RANGE\0"
1034
1038
  "EMPTY_PUBLIC_KEY\0"
1035
1039
  "FIRST_OCTET_INVALID\0"
1036
1040
  "INCONSISTENT_SET_OF_CRT_VALUES\0"