blob: 4ce3bc854610d87e42eaf5d4ec9a72fe21c35c99 [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.hardware.bluetooth;
using zx;
[Layout = "Simple"]
protocol Host {
/// Connects to the host driver on the provided handle. The zircon channel
/// is closed in the event of an error connecting to the driver. This
/// channel speaks the "//sdk/fidl/fuchsia.bluetooth.host.Host" protocol.
Open(handle<channel> channel);
};