diff options
| author | Javier <dev.git@javispedro.com> | 2016-01-02 03:31:42 +0100 |
|---|---|---|
| committer | Andrew Branson <andrew.branson@cern.ch> | 2016-02-12 00:07:55 +0100 |
| commit | 5dc645452192f1e0b2261ec261945e310c77f8da (patch) | |
| tree | 7ae609824320b35783fe5954f7f258d65a92666c /daemon/watchconnector.h | |
| parent | b8f4002115abfc7a63af023e6199284041368a62 (diff) | |
implement the AppFetch manager, including upload based on AppId
Conflicts:
daemon/daemon.pro
daemon/manager.cpp
daemon/manager.h
daemon/watchconnector.h
Diffstat (limited to 'daemon/watchconnector.h')
| -rw-r--r-- | daemon/watchconnector.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/daemon/watchconnector.h b/daemon/watchconnector.h index cea5993..3ce2e74 100644 --- a/daemon/watchconnector.h +++ b/daemon/watchconnector.h @@ -105,6 +105,15 @@ public: appmgrREFRESH_APP = 3,
appmgrGET_APPBANK_UUIDS = 5
};
+ enum AppFetchMessage { + appfetchREQUEST = 1 + }; + enum AppFetchStatus { + appfetchSTART = 1, + appfetchBUSY = 2, + appfetchINVALID_UUID = 3, + appfetchNO_DATA = 4 + }; enum AppMessage {
appmsgPUSH = 1,
appmsgREQUEST = 2,
@@ -160,7 +169,8 @@ public: uploadRESOURCES = 4,
uploadBINARY = 5,
uploadFILE = 6,
- uploadWORKER = 7
+ uploadWORKER = 7, + uploadAPP_ID_FLAG = (1 << 7) };
enum PutBytesCommand {
putbytesINIT = 1,
|
