Skip to content

Commit

Permalink
fix(deps): update Mumble.proto to version 1.4.287 (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
garrappachc authored Oct 5, 2023
1 parent 5cdb407 commit 69241fa
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions Mumble.proto
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2009-2022 The Mumble Developers. All rights reserved.
// Copyright 2009-2021 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 All @@ -10,8 +10,12 @@ package MumbleProto;
option optimize_for = SPEED;

message Version {
// 2-byte Major, 1-byte Minor and 1-byte Patch version number.
optional uint32 version = 1;
// Legacy version number format.
optional uint32 version_v1 = 1;
// New version number format.
// Necessary since patch level may exceed 255. (See https://github.com/mumble-voip/mumble/issues/5827)
optional uint64 version_v2 = 5;

// Client release name.
optional string release = 2;
// Client OS name.
Expand Down Expand Up @@ -107,9 +111,6 @@ 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 @@ -574,15 +575,17 @@ 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
// specified by the server administrator.
message SuggestConfig {
// Suggested client version.
optional uint32 version = 1;
// Suggested client version in the legacy format.
optional uint32 version_v1 = 1;
// Suggested client version in the new format.
// Necessary since patch level may exceed 255. (See https://github.com/mumble-voip/mumble/issues/5827)
optional uint64 version_v2 = 4;

// True if the administrator suggests positional audio to be used on this
// server.
optional bool positional = 2;
Expand Down

0 comments on commit 69241fa

Please sign in to comment.