Send correct channel tree. Update mumbleproto. Add comments regarding UserState permission handling.

This commit is contained in:
Mikkel Krautz 2010-11-20 23:05:44 +01:00
parent 8a836ac3af
commit 1e67afca46
5 changed files with 141 additions and 25 deletions

View file

@ -245,6 +245,8 @@ type UserState struct {
Hash *string "PB(bytes,15,opt,name=hash)"
CommentHash []byte "PB(bytes,16,opt,name=comment_hash)"
TextureHash []byte "PB(bytes,17,opt,name=texture_hash)"
PrioritySpeaker *bool "PB(varint,18,opt,name=priority_speaker)"
Recording *bool "PB(varint,19,opt,name=recording)"
XXX_unrecognized []byte
}
func (this *UserState) Reset() {

View file

@ -106,6 +106,8 @@ message UserState {
optional string hash = 15;
optional bytes comment_hash = 16;
optional bytes texture_hash = 17;
optional bool priority_speaker = 18;
optional bool recording = 19;
}
message BanList {