diff options
Diffstat (limited to 'net/base')
-rw-r--r-- | net/base/net_error_list.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/base/net_error_list.h b/net/base/net_error_list.h index 49ca641..c472f54 100644 --- a/net/base/net_error_list.h +++ b/net/base/net_error_list.h @@ -227,6 +227,10 @@ NET_ERROR(RESPONSE_HEADERS_TOO_BIG, -325) // The PAC requested by HTTP did not have a valid status code (non-200). NET_ERROR(PAC_STATUS_NOT_OK, -326) +// The response was 401 (Unauthorized), yet the request was a CONNECT request +// to a proxy. +NET_ERROR(UNEXPECTED_SERVER_AUTH, -327) + // The cache does not have the requested entry. NET_ERROR(CACHE_MISS, -400) |