Android NTP: Most visited tile clicks should have PageTransition.AUTO_BOOKMARK
[chromium-blink-merge.git] / net / base / net_error_list.h
blob3e5152d77db95018b08d5f66e8215f7947dc697a
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // This file intentionally does not have header guards, it's included
6 // inside a macro to generate enum values.
8 // This file contains the list of network errors.
11 // Ranges:
12 // 0- 99 System related errors
13 // 100-199 Connection related errors
14 // 200-299 Certificate errors
15 // 300-399 HTTP errors
16 // 400-499 Cache errors
17 // 500-599 ?
18 // 600-699 FTP errors
19 // 700-799 Certificate manager errors
20 // 800-899 DNS resolver errors
22 // An asynchronous IO operation is not yet complete. This usually does not
23 // indicate a fatal error. Typically this error will be generated as a
24 // notification to wait for some external notification that the IO operation
25 // finally completed.
26 NET_ERROR(IO_PENDING, -1)
28 // A generic failure occurred.
29 NET_ERROR(FAILED, -2)
31 // An operation was aborted (due to user action).
32 NET_ERROR(ABORTED, -3)
34 // An argument to the function is incorrect.
35 NET_ERROR(INVALID_ARGUMENT, -4)
37 // The handle or file descriptor is invalid.
38 NET_ERROR(INVALID_HANDLE, -5)
40 // The file or directory cannot be found.
41 NET_ERROR(FILE_NOT_FOUND, -6)
43 // An operation timed out.
44 NET_ERROR(TIMED_OUT, -7)
46 // The file is too large.
47 NET_ERROR(FILE_TOO_BIG, -8)
49 // An unexpected error. This may be caused by a programming mistake or an
50 // invalid assumption.
51 NET_ERROR(UNEXPECTED, -9)
53 // Permission to access a resource, other than the network, was denied.
54 NET_ERROR(ACCESS_DENIED, -10)
56 // The operation failed because of unimplemented functionality.
57 NET_ERROR(NOT_IMPLEMENTED, -11)
59 // There were not enough resources to complete the operation.
60 NET_ERROR(INSUFFICIENT_RESOURCES, -12)
62 // Memory allocation failed.
63 NET_ERROR(OUT_OF_MEMORY, -13)
65 // The file upload failed because the file's modification time was different
66 // from the expectation.
67 NET_ERROR(UPLOAD_FILE_CHANGED, -14)
69 // The socket is not connected.
70 NET_ERROR(SOCKET_NOT_CONNECTED, -15)
72 // The file already exists.
73 NET_ERROR(FILE_EXISTS, -16)
75 // The path or file name is too long.
76 NET_ERROR(FILE_PATH_TOO_LONG, -17)
78 // Not enough room left on the disk.
79 NET_ERROR(FILE_NO_SPACE, -18)
81 // The file has a virus.
82 NET_ERROR(FILE_VIRUS_INFECTED, -19)
84 // The client chose to block the request.
85 NET_ERROR(BLOCKED_BY_CLIENT, -20)
87 // The network changed.
88 NET_ERROR(NETWORK_CHANGED, -21)
90 // The request was blocked by the URL blacklist configured by the domain
91 // administrator.
92 NET_ERROR(BLOCKED_BY_ADMINISTRATOR, -22)
94 // The socket is already connected.
95 NET_ERROR(SOCKET_IS_CONNECTED, -23)
97 // The request was blocked because the forced reenrollment check is still
98 // pending. This error can only occur on ChromeOS.
99 // The error can be emitted by code in chrome/browser/policy/policy_helpers.cc.
100 NET_ERROR(BLOCKED_ENROLLMENT_CHECK_PENDING, -24)
102 // The upload failed because the upload stream needed to be re-read, due to a
103 // retry or a redirect, but the upload stream doesn't support that operation.
104 NET_ERROR(UPLOAD_STREAM_REWIND_NOT_SUPPORTED, -25)
106 // The request failed because the URLRequestContext is shutting down, or has
107 // been shut down.
108 NET_ERROR(CONTEXT_SHUT_DOWN, -26)
110 // A connection was closed (corresponding to a TCP FIN).
111 NET_ERROR(CONNECTION_CLOSED, -100)
113 // A connection was reset (corresponding to a TCP RST).
114 NET_ERROR(CONNECTION_RESET, -101)
116 // A connection attempt was refused.
117 NET_ERROR(CONNECTION_REFUSED, -102)
119 // A connection timed out as a result of not receiving an ACK for data sent.
120 // This can include a FIN packet that did not get ACK'd.
121 NET_ERROR(CONNECTION_ABORTED, -103)
123 // A connection attempt failed.
124 NET_ERROR(CONNECTION_FAILED, -104)
126 // The host name could not be resolved.
127 NET_ERROR(NAME_NOT_RESOLVED, -105)
129 // The Internet connection has been lost.
130 NET_ERROR(INTERNET_DISCONNECTED, -106)
132 // An SSL protocol error occurred.
133 NET_ERROR(SSL_PROTOCOL_ERROR, -107)
135 // The IP address or port number is invalid (e.g., cannot connect to the IP
136 // address 0 or the port 0).
137 NET_ERROR(ADDRESS_INVALID, -108)
139 // The IP address is unreachable. This usually means that there is no route to
140 // the specified host or network.
141 NET_ERROR(ADDRESS_UNREACHABLE, -109)
143 // The server requested a client certificate for SSL client authentication.
144 NET_ERROR(SSL_CLIENT_AUTH_CERT_NEEDED, -110)
146 // A tunnel connection through the proxy could not be established.
147 NET_ERROR(TUNNEL_CONNECTION_FAILED, -111)
149 // No SSL protocol versions are enabled.
150 NET_ERROR(NO_SSL_VERSIONS_ENABLED, -112)
152 // The client and server don't support a common SSL protocol version or
153 // cipher suite.
154 NET_ERROR(SSL_VERSION_OR_CIPHER_MISMATCH, -113)
156 // The server requested a renegotiation (rehandshake).
157 NET_ERROR(SSL_RENEGOTIATION_REQUESTED, -114)
159 // The proxy requested authentication (for tunnel establishment) with an
160 // unsupported method.
161 NET_ERROR(PROXY_AUTH_UNSUPPORTED, -115)
163 // During SSL renegotiation (rehandshake), the server sent a certificate with
164 // an error.
166 // Note: this error is not in the -2xx range so that it won't be handled as a
167 // certificate error.
168 NET_ERROR(CERT_ERROR_IN_SSL_RENEGOTIATION, -116)
170 // The SSL handshake failed because of a bad or missing client certificate.
171 NET_ERROR(BAD_SSL_CLIENT_AUTH_CERT, -117)
173 // A connection attempt timed out.
174 NET_ERROR(CONNECTION_TIMED_OUT, -118)
176 // There are too many pending DNS resolves, so a request in the queue was
177 // aborted.
178 NET_ERROR(HOST_RESOLVER_QUEUE_TOO_LARGE, -119)
180 // Failed establishing a connection to the SOCKS proxy server for a target host.
181 NET_ERROR(SOCKS_CONNECTION_FAILED, -120)
183 // The SOCKS proxy server failed establishing connection to the target host
184 // because that host is unreachable.
185 NET_ERROR(SOCKS_CONNECTION_HOST_UNREACHABLE, -121)
187 // The request to negotiate an alternate protocol failed.
188 NET_ERROR(NPN_NEGOTIATION_FAILED, -122)
190 // The peer sent an SSL no_renegotiation alert message.
191 NET_ERROR(SSL_NO_RENEGOTIATION, -123)
193 // Winsock sometimes reports more data written than passed. This is probably
194 // due to a broken LSP.
195 NET_ERROR(WINSOCK_UNEXPECTED_WRITTEN_BYTES, -124)
197 // An SSL peer sent us a fatal decompression_failure alert. This typically
198 // occurs when a peer selects DEFLATE compression in the mistaken belief that
199 // it supports it.
200 NET_ERROR(SSL_DECOMPRESSION_FAILURE_ALERT, -125)
202 // An SSL peer sent us a fatal bad_record_mac alert. This has been observed
203 // from servers with buggy DEFLATE support.
204 NET_ERROR(SSL_BAD_RECORD_MAC_ALERT, -126)
206 // The proxy requested authentication (for tunnel establishment).
207 NET_ERROR(PROXY_AUTH_REQUESTED, -127)
209 // The SSL server attempted to use a weak ephemeral Diffie-Hellman key.
210 NET_ERROR(SSL_WEAK_SERVER_EPHEMERAL_DH_KEY, -129)
212 // Could not create a connection to the proxy server. An error occurred
213 // either in resolving its name, or in connecting a socket to it.
214 // Note that this does NOT include failures during the actual "CONNECT" method
215 // of an HTTP proxy.
216 NET_ERROR(PROXY_CONNECTION_FAILED, -130)
218 // A mandatory proxy configuration could not be used. Currently this means
219 // that a mandatory PAC script could not be fetched, parsed or executed.
220 NET_ERROR(MANDATORY_PROXY_CONFIGURATION_FAILED, -131)
222 // -132 was formerly ERR_ESET_ANTI_VIRUS_SSL_INTERCEPTION
224 // We've hit the max socket limit for the socket pool while preconnecting. We
225 // don't bother trying to preconnect more sockets.
226 NET_ERROR(PRECONNECT_MAX_SOCKET_LIMIT, -133)
228 // The permission to use the SSL client certificate's private key was denied.
229 NET_ERROR(SSL_CLIENT_AUTH_PRIVATE_KEY_ACCESS_DENIED, -134)
231 // The SSL client certificate has no private key.
232 NET_ERROR(SSL_CLIENT_AUTH_CERT_NO_PRIVATE_KEY, -135)
234 // The certificate presented by the HTTPS Proxy was invalid.
235 NET_ERROR(PROXY_CERTIFICATE_INVALID, -136)
237 // An error occurred when trying to do a name resolution (DNS).
238 NET_ERROR(NAME_RESOLUTION_FAILED, -137)
240 // Permission to access the network was denied. This is used to distinguish
241 // errors that were most likely caused by a firewall from other access denied
242 // errors. See also ERR_ACCESS_DENIED.
243 NET_ERROR(NETWORK_ACCESS_DENIED, -138)
245 // The request throttler module cancelled this request to avoid DDOS.
246 NET_ERROR(TEMPORARILY_THROTTLED, -139)
248 // A request to create an SSL tunnel connection through the HTTPS proxy
249 // received a non-200 (OK) and non-407 (Proxy Auth) response. The response
250 // body might include a description of why the request failed.
251 NET_ERROR(HTTPS_PROXY_TUNNEL_RESPONSE, -140)
253 // We were unable to sign the CertificateVerify data of an SSL client auth
254 // handshake with the client certificate's private key.
256 // Possible causes for this include the user implicitly or explicitly
257 // denying access to the private key, the private key may not be valid for
258 // signing, the key may be relying on a cached handle which is no longer
259 // valid, or the CSP won't allow arbitrary data to be signed.
260 NET_ERROR(SSL_CLIENT_AUTH_SIGNATURE_FAILED, -141)
262 // The message was too large for the transport. (for example a UDP message
263 // which exceeds size threshold).
264 NET_ERROR(MSG_TOO_BIG, -142)
266 // A SPDY session already exists, and should be used instead of this connection.
267 NET_ERROR(SPDY_SESSION_ALREADY_EXISTS, -143)
269 // Error -144 was removed (LIMIT_VIOLATION).
271 // Websocket protocol error. Indicates that we are terminating the connection
272 // due to a malformed frame or other protocol violation.
273 NET_ERROR(WS_PROTOCOL_ERROR, -145)
275 // Error -146 was removed (PROTOCOL_SWITCHED)
277 // Returned when attempting to bind an address that is already in use.
278 NET_ERROR(ADDRESS_IN_USE, -147)
280 // An operation failed because the SSL handshake has not completed.
281 NET_ERROR(SSL_HANDSHAKE_NOT_COMPLETED, -148)
283 // SSL peer's public key is invalid.
284 NET_ERROR(SSL_BAD_PEER_PUBLIC_KEY, -149)
286 // The certificate didn't match the built-in public key pins for the host name.
287 // The pins are set in net/http/transport_security_state.cc and require that
288 // one of a set of public keys exist on the path from the leaf to the root.
289 NET_ERROR(SSL_PINNED_KEY_NOT_IN_CERT_CHAIN, -150)
291 // Server request for client certificate did not contain any types we support.
292 NET_ERROR(CLIENT_AUTH_CERT_TYPE_UNSUPPORTED, -151)
294 // Server requested one type of cert, then requested a different type while the
295 // first was still being generated.
296 NET_ERROR(ORIGIN_BOUND_CERT_GENERATION_TYPE_MISMATCH, -152)
298 // An SSL peer sent us a fatal decrypt_error alert. This typically occurs when
299 // a peer could not correctly verify a signature (in CertificateVerify or
300 // ServerKeyExchange) or validate a Finished message.
301 NET_ERROR(SSL_DECRYPT_ERROR_ALERT, -153)
303 // There are too many pending WebSocketJob instances, so the new job was not
304 // pushed to the queue.
305 NET_ERROR(WS_THROTTLE_QUEUE_TOO_LARGE, -154)
307 // Error -155 was removed (TOO_MANY_SOCKET_STREAMS)
309 // The SSL server certificate changed in a renegotiation.
310 NET_ERROR(SSL_SERVER_CERT_CHANGED, -156)
312 // The SSL server indicated that an unnecessary TLS version fallback was
313 // performed.
314 NET_ERROR(SSL_INAPPROPRIATE_FALLBACK, -157)
316 // Certificate Transparency: All Signed Certificate Timestamps failed to verify.
317 NET_ERROR(CT_NO_SCTS_VERIFIED_OK, -158)
319 // The SSL server sent us a fatal unrecognized_name alert.
320 NET_ERROR(SSL_UNRECOGNIZED_NAME_ALERT, -159)
322 // Failed to set the socket's receive buffer size as requested.
323 NET_ERROR(SOCKET_SET_RECEIVE_BUFFER_SIZE_ERROR, -160)
325 // Failed to set the socket's send buffer size as requested.
326 NET_ERROR(SOCKET_SET_SEND_BUFFER_SIZE_ERROR, -161)
328 // Failed to set the socket's receive buffer size as requested, despite success
329 // return code from setsockopt.
330 NET_ERROR(SOCKET_RECEIVE_BUFFER_SIZE_UNCHANGEABLE, -162)
332 // Failed to set the socket's send buffer size as requested, despite success
333 // return code from setsockopt.
334 NET_ERROR(SOCKET_SEND_BUFFER_SIZE_UNCHANGEABLE, -163)
336 // Failed to import a client certificate from the platform store into the SSL
337 // library.
338 NET_ERROR(SSL_CLIENT_AUTH_CERT_BAD_FORMAT, -164)
340 // The SSL server requires falling back to a version older than the configured
341 // minimum fallback version, and thus fallback failed.
342 NET_ERROR(SSL_FALLBACK_BEYOND_MINIMUM_VERSION, -165)
344 // Resolving a hostname to an IP address list included the IPv4 address
345 // "127.0.53.53". This is a special IP address which ICANN has recommended to
346 // indicate there was a name collision, and alert admins to a potential
347 // problem.
348 NET_ERROR(ICANN_NAME_COLLISION, -166)
350 // The SSL server presented a certificate which could not be decoded. This is
351 // not a certificate error code as no X509Certificate object is available. This
352 // error is fatal.
353 NET_ERROR(SSL_SERVER_CERT_BAD_FORMAT, -167)
355 // Certificate error codes
357 // The values of certificate error codes must be consecutive.
359 // The server responded with a certificate whose common name did not match
360 // the host name. This could mean:
362 // 1. An attacker has redirected our traffic to their server and is
363 // presenting a certificate for which they know the private key.
365 // 2. The server is misconfigured and responding with the wrong cert.
367 // 3. The user is on a wireless network and is being redirected to the
368 // network's login page.
370 // 4. The OS has used a DNS search suffix and the server doesn't have
371 // a certificate for the abbreviated name in the address bar.
373 NET_ERROR(CERT_COMMON_NAME_INVALID, -200)
375 // The server responded with a certificate that, by our clock, appears to
376 // either not yet be valid or to have expired. This could mean:
378 // 1. An attacker is presenting an old certificate for which they have
379 // managed to obtain the private key.
381 // 2. The server is misconfigured and is not presenting a valid cert.
383 // 3. Our clock is wrong.
385 NET_ERROR(CERT_DATE_INVALID, -201)
387 // The server responded with a certificate that is signed by an authority
388 // we don't trust. The could mean:
390 // 1. An attacker has substituted the real certificate for a cert that
391 // contains their public key and is signed by their cousin.
393 // 2. The server operator has a legitimate certificate from a CA we don't
394 // know about, but should trust.
396 // 3. The server is presenting a self-signed certificate, providing no
397 // defense against active attackers (but foiling passive attackers).
399 NET_ERROR(CERT_AUTHORITY_INVALID, -202)
401 // The server responded with a certificate that contains errors.
402 // This error is not recoverable.
404 // MSDN describes this error as follows:
405 // "The SSL certificate contains errors."
406 // NOTE: It's unclear how this differs from ERR_CERT_INVALID. For consistency,
407 // use that code instead of this one from now on.
409 NET_ERROR(CERT_CONTAINS_ERRORS, -203)
411 // The certificate has no mechanism for determining if it is revoked. In
412 // effect, this certificate cannot be revoked.
413 NET_ERROR(CERT_NO_REVOCATION_MECHANISM, -204)
415 // Revocation information for the security certificate for this site is not
416 // available. This could mean:
418 // 1. An attacker has compromised the private key in the certificate and is
419 // blocking our attempt to find out that the cert was revoked.
421 // 2. The certificate is unrevoked, but the revocation server is busy or
422 // unavailable.
424 NET_ERROR(CERT_UNABLE_TO_CHECK_REVOCATION, -205)
426 // The server responded with a certificate has been revoked.
427 // We have the capability to ignore this error, but it is probably not the
428 // thing to do.
429 NET_ERROR(CERT_REVOKED, -206)
431 // The server responded with a certificate that is invalid.
432 // This error is not recoverable.
434 // MSDN describes this error as follows:
435 // "The SSL certificate is invalid."
437 NET_ERROR(CERT_INVALID, -207)
439 // The server responded with a certificate that is signed using a weak
440 // signature algorithm.
441 NET_ERROR(CERT_WEAK_SIGNATURE_ALGORITHM, -208)
443 // -209 is availible: was CERT_NOT_IN_DNS.
445 // The host name specified in the certificate is not unique.
446 NET_ERROR(CERT_NON_UNIQUE_NAME, -210)
448 // The server responded with a certificate that contains a weak key (e.g.
449 // a too-small RSA key).
450 NET_ERROR(CERT_WEAK_KEY, -211)
452 // The certificate claimed DNS names that are in violation of name constraints.
453 NET_ERROR(CERT_NAME_CONSTRAINT_VIOLATION, -212)
455 // The certificate's validity period is too long.
456 NET_ERROR(CERT_VALIDITY_TOO_LONG, -213)
458 // Add new certificate error codes here.
460 // Update the value of CERT_END whenever you add a new certificate error
461 // code.
463 // The value immediately past the last certificate error code.
464 NET_ERROR(CERT_END, -214)
466 // The URL is invalid.
467 NET_ERROR(INVALID_URL, -300)
469 // The scheme of the URL is disallowed.
470 NET_ERROR(DISALLOWED_URL_SCHEME, -301)
472 // The scheme of the URL is unknown.
473 NET_ERROR(UNKNOWN_URL_SCHEME, -302)
475 // Attempting to load an URL resulted in too many redirects.
476 NET_ERROR(TOO_MANY_REDIRECTS, -310)
478 // Attempting to load an URL resulted in an unsafe redirect (e.g., a redirect
479 // to file:// is considered unsafe).
480 NET_ERROR(UNSAFE_REDIRECT, -311)
482 // Attempting to load an URL with an unsafe port number. These are port
483 // numbers that correspond to services, which are not robust to spurious input
484 // that may be constructed as a result of an allowed web construct (e.g., HTTP
485 // looks a lot like SMTP, so form submission to port 25 is denied).
486 NET_ERROR(UNSAFE_PORT, -312)
488 // The server's response was invalid.
489 NET_ERROR(INVALID_RESPONSE, -320)
491 // Error in chunked transfer encoding.
492 NET_ERROR(INVALID_CHUNKED_ENCODING, -321)
494 // The server did not support the request method.
495 NET_ERROR(METHOD_NOT_SUPPORTED, -322)
497 // The response was 407 (Proxy Authentication Required), yet we did not send
498 // the request to a proxy.
499 NET_ERROR(UNEXPECTED_PROXY_AUTH, -323)
501 // The server closed the connection without sending any data.
502 NET_ERROR(EMPTY_RESPONSE, -324)
504 // The headers section of the response is too large.
505 NET_ERROR(RESPONSE_HEADERS_TOO_BIG, -325)
507 // The PAC requested by HTTP did not have a valid status code (non-200).
508 NET_ERROR(PAC_STATUS_NOT_OK, -326)
510 // The evaluation of the PAC script failed.
511 NET_ERROR(PAC_SCRIPT_FAILED, -327)
513 // The response was 416 (Requested range not satisfiable) and the server cannot
514 // satisfy the range requested.
515 NET_ERROR(REQUEST_RANGE_NOT_SATISFIABLE, -328)
517 // The identity used for authentication is invalid.
518 NET_ERROR(MALFORMED_IDENTITY, -329)
520 // Content decoding of the response body failed.
521 NET_ERROR(CONTENT_DECODING_FAILED, -330)
523 // An operation could not be completed because all network IO
524 // is suspended.
525 NET_ERROR(NETWORK_IO_SUSPENDED, -331)
527 // FLIP data received without receiving a SYN_REPLY on the stream.
528 NET_ERROR(SYN_REPLY_NOT_RECEIVED, -332)
530 // Converting the response to target encoding failed.
531 NET_ERROR(ENCODING_CONVERSION_FAILED, -333)
533 // The server sent an FTP directory listing in a format we do not understand.
534 NET_ERROR(UNRECOGNIZED_FTP_DIRECTORY_LISTING_FORMAT, -334)
536 // Attempted use of an unknown SPDY stream id.
537 NET_ERROR(INVALID_SPDY_STREAM, -335)
539 // There are no supported proxies in the provided list.
540 NET_ERROR(NO_SUPPORTED_PROXIES, -336)
542 // There is a SPDY protocol error.
543 NET_ERROR(SPDY_PROTOCOL_ERROR, -337)
545 // Credentials could not be established during HTTP Authentication.
546 NET_ERROR(INVALID_AUTH_CREDENTIALS, -338)
548 // An HTTP Authentication scheme was tried which is not supported on this
549 // machine.
550 NET_ERROR(UNSUPPORTED_AUTH_SCHEME, -339)
552 // Detecting the encoding of the response failed.
553 NET_ERROR(ENCODING_DETECTION_FAILED, -340)
555 // (GSSAPI) No Kerberos credentials were available during HTTP Authentication.
556 NET_ERROR(MISSING_AUTH_CREDENTIALS, -341)
558 // An unexpected, but documented, SSPI or GSSAPI status code was returned.
559 NET_ERROR(UNEXPECTED_SECURITY_LIBRARY_STATUS, -342)
561 // The environment was not set up correctly for authentication (for
562 // example, no KDC could be found or the principal is unknown.
563 NET_ERROR(MISCONFIGURED_AUTH_ENVIRONMENT, -343)
565 // An undocumented SSPI or GSSAPI status code was returned.
566 NET_ERROR(UNDOCUMENTED_SECURITY_LIBRARY_STATUS, -344)
568 // The HTTP response was too big to drain.
569 NET_ERROR(RESPONSE_BODY_TOO_BIG_TO_DRAIN, -345)
571 // The HTTP response contained multiple distinct Content-Length headers.
572 NET_ERROR(RESPONSE_HEADERS_MULTIPLE_CONTENT_LENGTH, -346)
574 // SPDY Headers have been received, but not all of them - status or version
575 // headers are missing, so we're expecting additional frames to complete them.
576 NET_ERROR(INCOMPLETE_SPDY_HEADERS, -347)
578 // No PAC URL configuration could be retrieved from DHCP. This can indicate
579 // either a failure to retrieve the DHCP configuration, or that there was no
580 // PAC URL configured in DHCP.
581 NET_ERROR(PAC_NOT_IN_DHCP, -348)
583 // The HTTP response contained multiple Content-Disposition headers.
584 NET_ERROR(RESPONSE_HEADERS_MULTIPLE_CONTENT_DISPOSITION, -349)
586 // The HTTP response contained multiple Location headers.
587 NET_ERROR(RESPONSE_HEADERS_MULTIPLE_LOCATION, -350)
589 // SPDY server refused the stream. Client should retry. This should never be a
590 // user-visible error.
591 NET_ERROR(SPDY_SERVER_REFUSED_STREAM, -351)
593 // SPDY server didn't respond to the PING message.
594 NET_ERROR(SPDY_PING_FAILED, -352)
596 // Obsolete. Kept here to avoid reuse, as the old error can still appear on
597 // histograms.
598 // NET_ERROR(PIPELINE_EVICTION, -353)
600 // The HTTP response body transferred fewer bytes than were advertised by the
601 // Content-Length header when the connection is closed.
602 NET_ERROR(CONTENT_LENGTH_MISMATCH, -354)
604 // The HTTP response body is transferred with Chunked-Encoding, but the
605 // terminating zero-length chunk was never sent when the connection is closed.
606 NET_ERROR(INCOMPLETE_CHUNKED_ENCODING, -355)
608 // There is a QUIC protocol error.
609 NET_ERROR(QUIC_PROTOCOL_ERROR, -356)
611 // The HTTP headers were truncated by an EOF.
612 NET_ERROR(RESPONSE_HEADERS_TRUNCATED, -357)
614 // The QUIC crytpo handshake failed. This means that the server was unable
615 // to read any requests sent, so they may be resent.
616 NET_ERROR(QUIC_HANDSHAKE_FAILED, -358)
618 // An https resource was requested over an insecure QUIC connection.
619 NET_ERROR(REQUEST_FOR_SECURE_RESOURCE_OVER_INSECURE_QUIC, -359)
621 // Transport security is inadequate for the SPDY version.
622 NET_ERROR(SPDY_INADEQUATE_TRANSPORT_SECURITY, -360)
624 // The peer violated SPDY flow control.
625 NET_ERROR(SPDY_FLOW_CONTROL_ERROR, -361)
627 // The peer sent an improperly sized SPDY frame.
628 NET_ERROR(SPDY_FRAME_SIZE_ERROR, -362)
630 // Decoding or encoding of compressed SPDY headers failed.
631 NET_ERROR(SPDY_COMPRESSION_ERROR, -363)
633 // Proxy Auth Requested without a valid Client Socket Handle.
634 NET_ERROR(PROXY_AUTH_REQUESTED_WITH_NO_CONNECTION, -364)
636 // HTTP_1_1_REQUIRED error code received on HTTP/2 session.
637 NET_ERROR(HTTP_1_1_REQUIRED, -365)
639 // HTTP_1_1_REQUIRED error code received on HTTP/2 session to proxy.
640 NET_ERROR(PROXY_HTTP_1_1_REQUIRED, -366)
642 // The PAC script terminated fatally and must be reloaded.
643 NET_ERROR(PAC_SCRIPT_TERMINATED, -367)
645 // The certificate offered by the alternative server is not valid for the
646 // origin, a violation of HTTP Alternative Services specification Section 2.1,
647 // https://tools.ietf.org/id/draft-ietf-httpbis-alt-svc-06.html#host_auth.
648 NET_ERROR(ALTERNATIVE_CERT_NOT_VALID_FOR_ORIGIN, -368)
650 // Request is throttled because of a Backoff header.
651 // See: crbug.com/486891.
652 NET_ERROR(TEMPORARY_BACKOFF, -369)
654 // The cache does not have the requested entry.
655 NET_ERROR(CACHE_MISS, -400)
657 // Unable to read from the disk cache.
658 NET_ERROR(CACHE_READ_FAILURE, -401)
660 // Unable to write to the disk cache.
661 NET_ERROR(CACHE_WRITE_FAILURE, -402)
663 // The operation is not supported for this entry.
664 NET_ERROR(CACHE_OPERATION_NOT_SUPPORTED, -403)
666 // The disk cache is unable to open this entry.
667 NET_ERROR(CACHE_OPEN_FAILURE, -404)
669 // The disk cache is unable to create this entry.
670 NET_ERROR(CACHE_CREATE_FAILURE, -405)
672 // Multiple transactions are racing to create disk cache entries. This is an
673 // internal error returned from the HttpCache to the HttpCacheTransaction that
674 // tells the transaction to restart the entry-creation logic because the state
675 // of the cache has changed.
676 NET_ERROR(CACHE_RACE, -406)
678 // The cache was unable to read a checksum record on an entry. This can be
679 // returned from attempts to read from the cache. It is an internal error,
680 // returned by the SimpleCache backend, but not by any URLRequest methods
681 // or members.
682 NET_ERROR(CACHE_CHECKSUM_READ_FAILURE, -407)
684 // The cache found an entry with an invalid checksum. This can be returned from
685 // attempts to read from the cache. It is an internal error, returned by the
686 // SimpleCache backend, but not by any URLRequest methods or members.
687 NET_ERROR(CACHE_CHECKSUM_MISMATCH, -408)
689 // Internal error code for the HTTP cache. The cache lock timeout has fired.
690 NET_ERROR(CACHE_LOCK_TIMEOUT, -409)
692 // Received a challenge after the transaction has read some data, and the
693 // credentials aren't available. There isn't a way to get them at that point.
694 NET_ERROR(CACHE_AUTH_FAILURE_AFTER_READ, -410)
696 // The server's response was insecure (e.g. there was a cert error).
697 NET_ERROR(INSECURE_RESPONSE, -501)
699 // The server responded to a <keygen> with a generated client cert that we
700 // don't have the matching private key for.
701 NET_ERROR(NO_PRIVATE_KEY_FOR_CERT, -502)
703 // An error adding to the OS certificate database (e.g. OS X Keychain).
704 NET_ERROR(ADD_USER_CERT_FAILED, -503)
706 // *** Code -600 is reserved (was FTP_PASV_COMMAND_FAILED). ***
708 // A generic error for failed FTP control connection command.
709 // If possible, please use or add a more specific error code.
710 NET_ERROR(FTP_FAILED, -601)
712 // The server cannot fulfill the request at this point. This is a temporary
713 // error.
714 // FTP response code 421.
715 NET_ERROR(FTP_SERVICE_UNAVAILABLE, -602)
717 // The server has aborted the transfer.
718 // FTP response code 426.
719 NET_ERROR(FTP_TRANSFER_ABORTED, -603)
721 // The file is busy, or some other temporary error condition on opening
722 // the file.
723 // FTP response code 450.
724 NET_ERROR(FTP_FILE_BUSY, -604)
726 // Server rejected our command because of syntax errors.
727 // FTP response codes 500, 501.
728 NET_ERROR(FTP_SYNTAX_ERROR, -605)
730 // Server does not support the command we issued.
731 // FTP response codes 502, 504.
732 NET_ERROR(FTP_COMMAND_NOT_SUPPORTED, -606)
734 // Server rejected our command because we didn't issue the commands in right
735 // order.
736 // FTP response code 503.
737 NET_ERROR(FTP_BAD_COMMAND_SEQUENCE, -607)
739 // PKCS #12 import failed due to incorrect password.
740 NET_ERROR(PKCS12_IMPORT_BAD_PASSWORD, -701)
742 // PKCS #12 import failed due to other error.
743 NET_ERROR(PKCS12_IMPORT_FAILED, -702)
745 // CA import failed - not a CA cert.
746 NET_ERROR(IMPORT_CA_CERT_NOT_CA, -703)
748 // Import failed - certificate already exists in database.
749 // Note it's a little weird this is an error but reimporting a PKCS12 is ok
750 // (no-op). That's how Mozilla does it, though.
751 NET_ERROR(IMPORT_CERT_ALREADY_EXISTS, -704)
753 // CA import failed due to some other error.
754 NET_ERROR(IMPORT_CA_CERT_FAILED, -705)
756 // Server certificate import failed due to some internal error.
757 NET_ERROR(IMPORT_SERVER_CERT_FAILED, -706)
759 // PKCS #12 import failed due to invalid MAC.
760 NET_ERROR(PKCS12_IMPORT_INVALID_MAC, -707)
762 // PKCS #12 import failed due to invalid/corrupt file.
763 NET_ERROR(PKCS12_IMPORT_INVALID_FILE, -708)
765 // PKCS #12 import failed due to unsupported features.
766 NET_ERROR(PKCS12_IMPORT_UNSUPPORTED, -709)
768 // Key generation failed.
769 NET_ERROR(KEY_GENERATION_FAILED, -710)
771 // Error -711 was removed (ORIGIN_BOUND_CERT_GENERATION_FAILED)
773 // Failure to export private key.
774 NET_ERROR(PRIVATE_KEY_EXPORT_FAILED, -712)
776 // Self-signed certificate generation failed.
777 NET_ERROR(SELF_SIGNED_CERT_GENERATION_FAILED, -713)
779 // The certificate database changed in some way.
780 NET_ERROR(CERT_DATABASE_CHANGED, -714)
782 // Failure to import Channel ID.
783 NET_ERROR(CHANNEL_ID_IMPORT_FAILED, -715)
785 // DNS error codes.
787 // DNS resolver received a malformed response.
788 NET_ERROR(DNS_MALFORMED_RESPONSE, -800)
790 // DNS server requires TCP
791 NET_ERROR(DNS_SERVER_REQUIRES_TCP, -801)
793 // DNS server failed. This error is returned for all of the following
794 // error conditions:
795 // 1 - Format error - The name server was unable to interpret the query.
796 // 2 - Server failure - The name server was unable to process this query
797 // due to a problem with the name server.
798 // 4 - Not Implemented - The name server does not support the requested
799 // kind of query.
800 // 5 - Refused - The name server refuses to perform the specified
801 // operation for policy reasons.
802 NET_ERROR(DNS_SERVER_FAILED, -802)
804 // DNS transaction timed out.
805 NET_ERROR(DNS_TIMED_OUT, -803)
807 // The entry was not found in cache, for cache-only lookups.
808 NET_ERROR(DNS_CACHE_MISS, -804)
810 // Suffix search list rules prevent resolution of the given host name.
811 NET_ERROR(DNS_SEARCH_EMPTY, -805)
813 // Failed to sort addresses according to RFC3484.
814 NET_ERROR(DNS_SORT_ERROR, -806)