Missing HTTP 401.

This commit is contained in:
Alex Zolotarev 2016-01-11 08:57:40 +03:00 committed by Sergey Yershov
parent 1d80d472e1
commit 468eeba08e
2 changed files with 2 additions and 0 deletions

View file

@ -306,6 +306,7 @@ string DebugPrint(OsmOAuth::ResponseCode const code)
case OsmOAuth::ResponseCode::NetworkError: return "NetworkError";
case OsmOAuth::ResponseCode::OK: return "OK";
case OsmOAuth::ResponseCode::BadXML: return "BadXML";
case OsmOAuth::ResponseCode::BadAuth: return "BadAuth";
case OsmOAuth::ResponseCode::Redacted: return "Redacted";
case OsmOAuth::ResponseCode::NotFound: return "NotFound";
case OsmOAuth::ResponseCode::WrongMethod: return "WrongMethod";

View file

@ -38,6 +38,7 @@ public:
NetworkError = -1,
OK = 200,
BadXML = 400,
BadAuth = 401,
Redacted = 403,
NotFound = 404,
WrongMethod = 405,