OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // This file intentionally does not have header guards, it's included | 5 // This file intentionally does not have header guards, it's included |
6 // inside a macro to generate enum values. | 6 // inside a macro to generate enum values. |
7 | 7 |
8 // This file contains the list of network errors. | 8 // This file contains the list of network errors. |
9 | 9 |
10 // | 10 // |
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 // pushed to the queue. | 317 // pushed to the queue. |
318 NET_ERROR(WS_THROTTLE_QUEUE_TOO_LARGE, -154) | 318 NET_ERROR(WS_THROTTLE_QUEUE_TOO_LARGE, -154) |
319 | 319 |
320 // Error -155 was removed (TOO_MANY_SOCKET_STREAMS) | 320 // Error -155 was removed (TOO_MANY_SOCKET_STREAMS) |
321 | 321 |
322 // The SSL server certificate changed in a renegotiation. | 322 // The SSL server certificate changed in a renegotiation. |
323 NET_ERROR(SSL_SERVER_CERT_CHANGED, -156) | 323 NET_ERROR(SSL_SERVER_CERT_CHANGED, -156) |
324 | 324 |
325 // Error -157 was removed (SSL_INAPPROPRIATE_FALLBACK). | 325 // Error -157 was removed (SSL_INAPPROPRIATE_FALLBACK). |
326 | 326 |
327 // Certificate Transparency: All Signed Certificate Timestamps failed to verify. | 327 // Error -158 was removed (CT_NO_SCTS_VERIFIED_OK). |
328 NET_ERROR(CT_NO_SCTS_VERIFIED_OK, -158) | |
329 | 328 |
330 // The SSL server sent us a fatal unrecognized_name alert. | 329 // The SSL server sent us a fatal unrecognized_name alert. |
331 NET_ERROR(SSL_UNRECOGNIZED_NAME_ALERT, -159) | 330 NET_ERROR(SSL_UNRECOGNIZED_NAME_ALERT, -159) |
332 | 331 |
333 // Failed to set the socket's receive buffer size as requested. | 332 // Failed to set the socket's receive buffer size as requested. |
334 NET_ERROR(SOCKET_SET_RECEIVE_BUFFER_SIZE_ERROR, -160) | 333 NET_ERROR(SOCKET_SET_RECEIVE_BUFFER_SIZE_ERROR, -160) |
335 | 334 |
336 // Failed to set the socket's send buffer size as requested. | 335 // Failed to set the socket's send buffer size as requested. |
337 NET_ERROR(SOCKET_SET_SEND_BUFFER_SIZE_ERROR, -161) | 336 NET_ERROR(SOCKET_SET_SEND_BUFFER_SIZE_ERROR, -161) |
338 | 337 |
(...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
848 NET_ERROR(DNS_TIMED_OUT, -803) | 847 NET_ERROR(DNS_TIMED_OUT, -803) |
849 | 848 |
850 // The entry was not found in cache, for cache-only lookups. | 849 // The entry was not found in cache, for cache-only lookups. |
851 NET_ERROR(DNS_CACHE_MISS, -804) | 850 NET_ERROR(DNS_CACHE_MISS, -804) |
852 | 851 |
853 // Suffix search list rules prevent resolution of the given host name. | 852 // Suffix search list rules prevent resolution of the given host name. |
854 NET_ERROR(DNS_SEARCH_EMPTY, -805) | 853 NET_ERROR(DNS_SEARCH_EMPTY, -805) |
855 | 854 |
856 // Failed to sort addresses according to RFC3484. | 855 // Failed to sort addresses according to RFC3484. |
857 NET_ERROR(DNS_SORT_ERROR, -806) | 856 NET_ERROR(DNS_SORT_ERROR, -806) |
OLD | NEW |