Skip to content

Commit

Permalink
fix: update Mumble.proto to version 1.5.735 (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
garrappachc authored Jan 2, 2025
1 parent bf6cc6c commit 58df9bb
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion Mumble.proto
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2009-2021 The Mumble Developers. All rights reserved.
// Copyright The Mumble Developers. All rights reserved.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
Expand Down Expand Up @@ -41,6 +41,8 @@ message Authenticate {
// A list of CELT bitstream version constants supported by the client.
repeated int32 celt_versions = 4;
optional bool opus = 5 [default = false];
// 0 = REGULAR, 1 = BOT
optional int32 client_type = 6 [default = 0];
}

// Sent by the client to notify the server that the client is still alive.
Expand Down Expand Up @@ -111,6 +113,9 @@ message ServerSync {
// Server welcome text.
optional string welcome_text = 3;
// Current user permissions in the root channel.
// Note: The permissions data type usually is uin32 (e.g. in PermissionQuery and PermissionDenied messages). Here
// it is uint64 because of an oversight in the past. Nonetheless it should never exceed the uin32 range.
// See also: https://github.com/mumble-voip/mumble/issues/5139
optional uint64 permissions = 4;
}

Expand Down Expand Up @@ -176,6 +181,11 @@ message UserRemove {
// First seen during login procedure. May be sent by the client when it wishes
// to alter its state.
message UserState {
message VolumeAdjustment {
optional uint32 listening_channel = 1;
optional float volume_adjustment = 2;
}

// Unique user session ID of the user whose state this is, may change on
// reconnect.
optional uint32 session = 1;
Expand Down Expand Up @@ -227,6 +237,8 @@ message UserState {
repeated uint32 listening_channel_add = 21;
// a list of channels the user does no longer want to listen to.
repeated uint32 listening_channel_remove = 22;
// A list of volume adjustments the user has applied to listeners
repeated VolumeAdjustment listening_volume_adjustment = 23;
}

// Relays information on the bans. The client may send the BanList message to
Expand Down Expand Up @@ -575,6 +587,8 @@ message ServerConfig {
optional uint32 image_message_length = 5;
// The maximum number of users allowed on the server.
optional uint32 max_users = 6;
// Whether using Mumble's recording feature is allowed on the server
optional bool recording_allowed = 7;
}

// Sent by the server to inform the clients of suggested client configuration
Expand Down

0 comments on commit 58df9bb

Please sign in to comment.