Skip to content

Commit

Permalink
Fix protocol documentation for RequestBlob in the .proto file.
Browse files Browse the repository at this point in the history
Fixes #1494
  • Loading branch information
Tim Cooper authored and mkrautz committed Mar 17, 2015
1 parent eda74f2 commit 88aefca
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/Mumble.proto
Expand Up @@ -503,16 +503,16 @@ message UserStats {
// comments or textures are not sent within standard messages but instead the
// hash is. If the client does not recognize the hash it may request the
// resource when it needs it. The client does so by sending a RequestBlob
// message with the correct fields filled with the hashes it wants to receive.
// The server replies to this by sending a new UserState/ChannelState message
// with the resources filled even if they would normally be transmitted as
// hashes.
// message with the correct fields filled with the user sessions or channel_ids
// it wants to receive. The server replies to this by sending a new
// UserState/ChannelState message with the resources filled even if they would
// normally be transmitted as hashes.
message RequestBlob {
// Hashes of the requested UserState textures.
// sessions of the requested UserState textures.
repeated uint32 session_texture = 1;
// Hashes of the requested UserState comments.
// sessions of the requested UserState comments.
repeated uint32 session_comment = 2;
// Hashes of the requested ChannelState descriptions.
// channel_ids of the requested ChannelState descriptions.
repeated uint32 channel_description = 3;
}

Expand Down

0 comments on commit 88aefca

Please sign in to comment.