We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbbf46c commit b3fea33Copy full SHA for b3fea33
proto/decentraland/kernel/apis/communications_controller.proto
@@ -8,7 +8,13 @@ message RealSendRequest {
8
message RealSendResponse {}
9
10
message SendBinaryRequest {
11
+ repeated bytes data = 1; // @deprecated old broadcasted messages. Use peerData with an empty array for broadcasting.
12
+ repeated PeerMessageData peer_data = 2; // peer-to-peer messages
13
+}
14
+
15
+message PeerMessageData {
16
repeated bytes data = 1;
17
+ repeated string address = 2; // if address is empty, its a broadcast message
18
}
19
20
message SendBinaryResponse {
0 commit comments