summaryrefslogtreecommitdiff
path: root/protocol/udm.proto
diff options
context:
space:
mode:
Diffstat (limited to 'protocol/udm.proto')
-rw-r--r--protocol/udm.proto3
1 files changed, 3 insertions, 0 deletions
diff --git a/protocol/udm.proto b/protocol/udm.proto
index d80e1f0..78793fb 100644
--- a/protocol/udm.proto
+++ b/protocol/udm.proto
@@ -74,6 +74,7 @@ message client_msg {
repeated client_event_unsubscription_request unsubscription_request = 6;
optional client_download_request download_info_request = 7;
optional client_download_add_request download_add_request = 8;
+ //TODO: use new download_state_change_request instaed of all download_*_request structures (simplification)
repeated client_download_start_request download_start_request = 9;
repeated client_download_stop_request download_stop_request = 10;
repeated client_download_delete_request download_delete_request = 11;
@@ -92,6 +93,7 @@ enum SERVER_MSG_TYPE {
SERVER_UNSUBSCRIPTIONS_REPLY = 5;
SERVER_DOWNLOADS_LIST_REPLY = 6;
SERVER_DOWNLOAD_INFO_REPLY = 7;
+ SERVER_DOWNLOAD_STATE_CHANGE = 8;
}
@@ -106,6 +108,7 @@ message server_msg {
repeated server_event_unsubscription_reply unsubscription_reply = 7;
optional server_download_reply download = 8;
repeated server_download_reply downloads = 9;
+ repeated download_state_change download_state_changes = 10;
}
//top level messages end