blob: 13b6b01916a3b8547831dbbf65800c04aa81d2ce [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.
#ifndef LIB_SERVICE_LLCPP_CONSTANTS_H_
#define LIB_SERVICE_LLCPP_CONSTANTS_H_
namespace llcpp::sys {
// The name of the default FIDL Service instance.
constexpr const char kDefaultInstance[] = "default";
// The path referencing the incoming services directory.
constexpr const char kServiceDirectory[] = "/svc";
// The path prefix referencing the incoming services directory,
// with a trailing slash.
constexpr const char kServiceDirectoryTrailingSlash[] = "/svc/";
} // namespace llcpp::sys
#endif // LIB_SERVICE_LLCPP_CONSTANTS_H_