diff options
author | Ulas Kozat <ulas.kozat@gmail.com> | 2017-07-25 11:23:48 -0700 |
---|---|---|
committer | Ulas Kozat <ulas.kozat@gmail.com> | 2017-07-25 11:30:34 -0700 |
commit | 21f973902ee4428462564d27719f366b41ce04c5 (patch) | |
tree | 27b2d3e79818e2908f57db165b80e29f8b40c57b /domino.thrift | |
parent | bd933de68d560a4f412ef0b8ef0a7928cb4f7bfa (diff) |
JIRA: DOMINO-27 Extend publish RPC call
Change-Id: If8cba13e3237c034ceace68cf4b14f3090612ab5
Signed-off-by: Ulas Kozat <ulas.kozat@gmail.com>
Diffstat (limited to 'domino.thrift')
-rw-r--r-- | domino.thrift | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/domino.thrift b/domino.thrift index dd48942..4ce9dfa 100644 --- a/domino.thrift +++ b/domino.thrift @@ -155,13 +155,19 @@ struct PublishMessage { 6: optional string template_UUID } +struct DomainInfo { + 1: string ipaddr, + 2: i16 tcpport +} + struct PublishResponseMessage { 1: MessageType messageType = PUBLISH_RESPONSE, 2: string domino_udid, 3: i64 seq_no, 4: ResponseCode responseCode, 5: string template_UUID, - 6: optional list<string> comments + 6: optional list<DomainInfo> domainInfo, + 7: optional list<string> comments } struct PushMessage { |