blob: bb37e3940a69b5508591e63006771fafc909f277 [file] [log] [blame]
// Copyright 2023 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.starnix.container;
using zx;
@discoverable
protocol Controller {
/// Connects `bridge_socket` to a vsocket at `port` in the container.
VsockConnect(resource struct {
port uint32;
bridge_socket zx.handle:SOCKET;
});
};