blob: a806d88cd1b3608f404d7731fc917690913b51b9 [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
library fuchsia.bluetooth.avdtp;
/// Maximum number of peers that can be connected to a node.
/// (Core Spec 5.0, Vol 2, Part B, Section 1)
const uint64 MAX_PICONET_SIZE = 8;
/// Represents the return status of a [`fuchsia.bluetooth.avdtp.Peer`] method
enum PeerError : uint32 {
/// Failure reason is not known
UNKNOWN_FAILURE = 1;
/// The peer is unable to perform the request
PROTOCOL_ERROR = 2;
};