blob: 50d18746dde4fdfdbb8e60ea0efafb5a634e9f23 [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 fidl.test.echo;
const MAX_LENGTH uint64 = 1024;
closed protocol Echo {
strict EchoString(struct {
value string:MAX_LENGTH;
}) -> (struct {
response string:MAX_LENGTH;
});
};