| // Copyright 2018 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 fidl.test.fakesocket; | |
| [Transport = "SocketControl", Layout = "Simple"] | |
| interface Control { | |
| 1: Bind(string:64 addr); | |
| 2: GetPeerAddr(int32 index) -> (string:64 addr); | |
| }; |