ultimatepp/bazaar/ProtectClient/ProtectStatus.h
micio d1a78c5335 Bazaar/Protect : split hardware encription, client and server codes
git-svn-id: svn://ultimatepp.org/upp/trunk@6171 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2013-07-06 13:17:40 +00:00

58 lines
2.5 KiB
C

#ifndef _ProtectStatus_h_
#define _ProtectStatus_h_
#include <Core/Core.h>
NAMESPACE_UPP
// server error codes
typedef enum {
PROTECT_OK = 0, // no error (unused)
PROTECT_HTTP_ERROR, // error on HTTP communication with server
PROTECT_BAD_REQUEST, // missing POST data on request
PROTECT_MISSING_IV, // missing Initialization Vector on POST data
PROTECT_MISSING_DATA, // missing DATA field on POST data
PROTECT_MISSING_EMAIL, // missing mandatory EMAIL field in POST DATA
PROTECT_INVALID_EMAIL, // ill-formed email address
PROTECT_MISSING_REASON, // missing connection's reason
PROTECT_UNKNOWN_REASON, // unknown connection's reason
PROTECT_MISSING_CLIENTID, // missing client connection ID in POST DATA
PROTECT_MISSING_ACTIVATIONKEY, // missing activation key in request
PROTECT_BAD_ACTIVATIONKEY, // wrong activation key in request
PROTECT_BAD_DATA, // missing mandatory fields in POST DATA
PROTECT_NOT_CONNECTED, // not connected to server -- must connect first
PROTECT_CONNECTION_EXPIRED, // server connection timeout -- should refresh more often
PROTECT_LICENSE_EXPIRED, // testing license expired
PROTECT_LICENSE_NOT_ACTIVATED, // license requested but still not activated by user
PROTECT_UNREGISTERED, // product unregistered
PROTECT_LICENSES_NUMBER_EXCEEDED, // number of product licenses exceeded (too many apps running)
PROTECT_MAIL_ALREADY_USED, // e-mail already used (and expired), can't register
PROTECT_INVALID_APP_VERSION, // your license isn't valid for this APP version, should upgrade
PROTECT_MAIL_SEND_ERROR, // smtp error sending email
PROTECT_MISSING_MAC // missing MAC field on POST DATA
} ProtectStatus;
// gets human-readable error message
extern String ProtectMessage(int m);
// server request reasons
typedef enum {
PROTECT_BAD_REASON, // internal error
PROTECT_CONNECT, // establish connection to server
PROTECT_DISCONNECT, // frees server connection
PROTECT_REFRESH, // refreshes server connection (to restart timeout)
PROTECT_GETLICENSEKEY, // gets application key
PROTECT_REGISTER, // registers app for timed demo OR re-request activation code
PROTECT_GETLICENSEINFO, // gets info about license (name, expiration date, app version....)
PROTECT_UPDATEUSERDATA // update user-modifiable user data (name, address....)
} ProtectReasons;
// get reason in string format
extern String ProtectReasonStr(int r);
// get reason in enum format
extern int ProtectReason(String const &s);
END_UPP_NAMESPACE
#endif