k_EResultLimitExceeded=25,// Too much of a good thing
k_EResultRevoked=26,// Access has been revoked (used for revoked guest passes)
k_EResultExpired=27,// License/Guest pass the user is trying to access is expired
k_EResultAlreadyRedeemed=28,// Guest pass has already been redeemed by account, cannot be acked again
k_EResultDuplicateRequest=29,// The request is a duplicate and the action has already occurred in the past, ignored this time
k_EResultAlreadyOwned=30,// All the games in this guest pass redemption request are already owned by the user
k_EResultIPNotFound=31,// IP address not found
k_EResultPersistFailed=32,// failed to write change to the data store
k_EResultLockingFailed=33,// failed to acquire access lock for this operation
k_EResultLogonSessionReplaced=34,
k_EResultConnectFailed=35,
k_EResultHandshakeFailed=36,
k_EResultIOFailure=37,
k_EResultRemoteDisconnect=38,
k_EResultShoppingCartNotFound=39,// failed to find the shopping cart requested
k_EResultBlocked=40,// a user didn't allow it
k_EResultIgnored=41,// target is ignoring sender
k_EResultNoMatch=42,// nothing matching the request found
k_EResultAccountDisabled=43,
k_EResultServiceReadOnly=44,// this service is not accepting content changes right now
k_EResultAccountNotFeatured=45,// account doesn't have value, so this feature isn't available
k_EResultAdministratorOK=46,// allowed to take this action, but only because requester is admin
k_EResultContentVersion=47,// A Version mismatch in content transmitted within the Steam protocol.
k_EResultTryAnotherCM=48,// The current CM can't service the user making a request, user should try another.
k_EResultPasswordRequiredToKickSession=49,// You are already logged in elsewhere, this cached credential login has failed.
k_EResultAlreadyLoggedInElsewhere=50,// You are already logged in elsewhere, you must wait
k_EResultSuspended=51,// Long running operation (content download) suspended/paused
k_EResultCancelled=52,// Operation canceled (typically by user: content download)
k_EResultDataCorruption=53,// Operation canceled because data is ill formed or unrecoverable
k_EResultDiskFull=54,// Operation canceled - not enough disk space.
k_EResultRemoteCallFailed=55,// an remote call or IPC call failed
k_EResultPasswordUnset=56,// Password could not be verified as it's unset server side
k_EResultExternalAccountUnlinked=57,// External account (PSN, Facebook...) is not linked to a Steam account
k_EResultPSNTicketInvalid=58,// PSN ticket was invalid
k_EResultExternalAccountAlreadyLinked=59,// External account (PSN, Facebook...) is already linked to some other account, must explicitly request to replace/delete the link first
k_EResultRemoteFileConflict=60,// The sync cannot resume due to a conflict between the local and remote files
k_EResultIllegalPassword=61,// The requested new password is not legal
k_EResultSameAsPreviousValue=62,// new value is the same as the old one ( secret question and answer )
k_EResultAccountLogonDenied=63,// account login denied due to 2nd factor authentication failure
k_EResultCannotUseOldPassword=64,// The requested new password is not legal
k_EResultInvalidLoginAuthCode=65,// account login denied due to auth code invalid
k_EResultAccountLogonDeniedNoMail=66,// account login denied due to 2nd factor auth failure - and no mail has been sent
// Invalid status code (this isn't defined in HTTP, used to indicate unset in our code)
k_EHTTPStatusCodeInvalid=0,
// Informational codes
k_EHTTPStatusCode100Continue=100,
k_EHTTPStatusCode101SwitchingProtocols=101,
// Success codes
k_EHTTPStatusCode200OK=200,
k_EHTTPStatusCode201Created=201,
k_EHTTPStatusCode202Accepted=202,
k_EHTTPStatusCode203NonAuthoritative=203,
k_EHTTPStatusCode204NoContent=204,
k_EHTTPStatusCode205ResetContent=205,
k_EHTTPStatusCode206PartialContent=206,
// Redirection codes
k_EHTTPStatusCode300MultipleChoices=300,
k_EHTTPStatusCode301MovedPermanently=301,
k_EHTTPStatusCode302Found=302,
k_EHTTPStatusCode303SeeOther=303,
k_EHTTPStatusCode304NotModified=304,
k_EHTTPStatusCode305UseProxy=305,
//k_EHTTPStatusCode306Unused = 306, (used in old HTTP spec, now unused in 1.1)
k_EHTTPStatusCode307TemporaryRedirect=307,
// Error codes
k_EHTTPStatusCode400BadRequest=400,
k_EHTTPStatusCode401Unauthorized=401,// You probably want 403 or something else. 401 implies you're sending a WWW-Authenticate header and the client can sent an Authorization header in response.
k_EHTTPStatusCode402PaymentRequired=402,// This is reserved for future HTTP specs, not really supported by clients