diff options
Diffstat (limited to 'protocol/events.proto')
-rw-r--r-- | protocol/events.proto | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/protocol/events.proto b/protocol/events.proto index 9b3d676..553ada5 100644 --- a/protocol/events.proto +++ b/protocol/events.proto @@ -38,22 +38,22 @@ message unsubscription_download_ui_info { //subscription type enum SUBSCRIPTION_TYPE { - S_UI_CHANGE = 0; - S_SETTING_CHANGE = 1; - S_DOWNLOAD_STATE_CHANGE = 2; - S_DOWNLOAD_ADDED = 3; - S_DOWNLOAD_DELETED = 4; + ST_UI_CHANGE = 0; + ST_SETTING_CHANGE = 1; + ST_DOWNLOAD_STATE_CHANGE = 2; + ST_DOWNLOAD_ADDED = 3; + ST_DOWNLOAD_DELETED = 4; } enum SUBSCRIPTION_MODE { - S_MODE_EVENT = 0; - S_MODE_REPEATED = 1; + SM_EVENT = 0; + SM_REPEATED = 1; } //download state subscription for download state changes (can be module defined) enum SUBSCRIPTION_DOWNLOAD_STATE { - S_D_STARTED = 0; - S_D_STOPPED = 1; + SDS_STARTED = 0; + SDS_STOPPED = 1; } message subscription_download_state_change { |