blob: 5c17697621d1a48148cf5db6630cb2a46d93d103 [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 ddk.protocol.codec;
using zx;
[Layout = "ddk-protocol"]
protocol Codec {
/// This method connects a channel in order to serve FIDL over it outside the driver host
/// control.
Connect(handle<channel> channel) -> (zx.status status);
};