diff options
Diffstat (limited to 'net/base')
-rw-r--r-- | net/base/net_error_list.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/base/net_error_list.h b/net/base/net_error_list.h index 14555c3..9503f534 100644 --- a/net/base/net_error_list.h +++ b/net/base/net_error_list.h @@ -96,6 +96,10 @@ NET_ERROR(SSL_VERSION_OR_CIPHER_MISMATCH, -113) // The server requested a renegotiation (rehandshake). NET_ERROR(SSL_RENEGOTIATION_REQUESTED, -114) +// The proxy claimed to want authenication but didn't provide the proper +// challenge headers. +NET_ERROR(PROXY_AUTH_REQUESTED, -115) + // Certificate error codes // // The values of certificate error codes must be consecutive. @@ -233,10 +237,6 @@ NET_ERROR(PAC_STATUS_NOT_OK, -326) // The evaluation of the PAC script failed. NET_ERROR(PAC_SCRIPT_FAILED, -327) -// The response was 401 (Unauthorized), yet the request was a CONNECT request -// to a proxy. -NET_ERROR(UNEXPECTED_SERVER_AUTH, -328) - // The cache does not have the requested entry. NET_ERROR(CACHE_MISS, -400) |