diff options
| author | Javier <dev.git@javispedro.com> | 2016-01-02 05:10:03 +0100 |
|---|---|---|
| committer | Andrew Branson <andrew.branson@cern.ch> | 2016-02-12 01:46:24 +0100 |
| commit | 3a4e80053081ab7f5de142bfbc6589dfc2bc6e2d (patch) | |
| tree | a3f61628f4d424c43c6d9e1065560ddf4f67c56d /daemon/watchconnector.h | |
| parent | 5dc645452192f1e0b2261ec261945e310c77f8da (diff) | |
implement blobdbmanager
Conflicts:
daemon/daemon.pro
daemon/manager.h
daemon/watchconnector.h
Diffstat (limited to 'daemon/watchconnector.h')
| -rw-r--r-- | daemon/watchconnector.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/daemon/watchconnector.h b/daemon/watchconnector.h index 3ce2e74..011d2ab 100644 --- a/daemon/watchconnector.h +++ b/daemon/watchconnector.h @@ -171,6 +171,24 @@ public: uploadFILE = 6,
uploadWORKER = 7, uploadAPP_ID_FLAG = (1 << 7) +
+ uploadWORKER = 7, + uploadAPP_ID_FLAG = (1 << 7) + }; + enum BlobDbCommand { + blobdbINSERT = 1, + blobdbDELETE = 4, + blobdbCLEAR = 5 + }; + enum BlobDbStatus { + blobdbSUCCESS = 1, + blobdbFAILURE = 2, + blobdbINVALID_OPERATION = 3, + blobdbINVALID_DATABASE_ID = 4, + blobdbINVALID_DATA = 5, + blobdbKEY_DOES_NOT_EXIST = 6, + blobdbDATABASE_FULL = 7, + blobdbDATA_STALE = 8 };
enum PutBytesCommand {
putbytesINIT = 1,
|
