blob: 6abe3f4dec550239746e27dcde8dcb034cfc0f9b [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 fuchsia.bluetooth.host;
closed 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.
strict Open(resource struct {
channel server_end:fuchsia.bluetooth.host.Host;
});
};