diff options
author | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-16 20:53:01 +0000 |
---|---|---|
committer | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-16 20:53:01 +0000 |
commit | f7fcceefed4e4817f3fca6fdd2156136662ae39b (patch) | |
tree | 49f5d7736c5031f1a7036182f623cacfe6014186 /net/base | |
parent | 92c6d20388d078771d35a56cfa4b54e080df40d0 (diff) | |
download | chromium_src-f7fcceefed4e4817f3fca6fdd2156136662ae39b.zip chromium_src-f7fcceefed4e4817f3fca6fdd2156136662ae39b.tar.gz chromium_src-f7fcceefed4e4817f3fca6fdd2156136662ae39b.tar.bz2 |
Add a new net error code for when the load failure was due to connecting to a bad proxy server.
Prior to this change, users would likely have seen one of these errors on failure to connect through a proxy server:
ERR_NAME_NOT_RESOLVED
ERR_ADDRESS_UNREACHABLE
ERR_CONNECTION_REFUSED
ERR_CONNECTION_TIMED_OUT
ERR_CONNECTION_FAILED
Whereas now any host resolve or tcp connect error will map to:
ERR_PROXY_UNREACHABLE
This error code will allow selecting a more suitable error page.
BUG=53477
Review URL: http://codereview.chromium.org/3360025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@59710 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base')
-rw-r--r-- | net/base/net_error_list.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/net/base/net_error_list.h b/net/base/net_error_list.h index b254204..7f2a6c2 100644 --- a/net/base/net_error_list.h +++ b/net/base/net_error_list.h @@ -171,6 +171,12 @@ NET_ERROR(SSL_UNSAFE_NEGOTIATION, -128) // The SSL server attempted to use a weak ephemeral Diffie-Hellman key. NET_ERROR(SSL_WEAK_SERVER_EPHEMERAL_DH_KEY, -129) +// Could not create a TCP connection to the proxy server. An error occurred +// either in resolving its name, or in connecting a socket to it. +// Note that this does NOT include failures during the actual "CONNECT" method +// of an HTTP proxy. +NET_ERROR(PROXY_CONNECTION_FAILED, -130) + // Certificate error codes // // The values of certificate error codes must be consecutive. |