Chrome Fail Error Codes

I searched for a while, and I can’t find the exact list of everyone, I can’t download the google chrome error code / error description.

I'm talking about this highlighted text. Can someone give me a link?

enter image description here

+4
source share
1 answer

I have done something and I must admit that it is not easy to find a complete comprehensive list of all network error codes (Chromium).

A complete list of all Chromium error codes can be found in the file net_error_list.h: https://cs.chromium.org/chromium/src/net/base/net_error_list.h

It looks like Google Chrome is adding ERR_to all the codes listed in the above list.

XHR . linux errno.h, POSIX.1-2001, C99: http://man7.org/linux/man-pages/man3/errno.3.html

, NodeJS NodeJS API: https://nodejs.org/api/errors.html#errors_common_system_errors

. operation timeout "":

  • TIMED_OUT Chromium.
  • ERR_TIMED_OUT Google Chrome.
  • ETIMEDOUT XHR (error.code).

:

  • CONNECTION_REFUSED → Chromium
  • ERR_CONNECTION_REFUSED → Google Chrome
  • ECONNREFUSED → linux (POSIX.1)
+6

Source: https://habr.com/ru/post/1671102/


All Articles