| // 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. |
| |
| #ifndef SRC_LEDGER_BIN_P2P_SYNC_IMPL_FLATBUFFER_MESSAGE_FACTORY_H_ |
| #define SRC_LEDGER_BIN_P2P_SYNC_IMPL_FLATBUFFER_MESSAGE_FACTORY_H_ |
| |
| #include "src/ledger/bin/p2p_sync/impl/message_generated.h" |
| #include "third_party/abseil-cpp/absl/strings/string_view.h" |
| #include "third_party/flatbuffers/include/flatbuffers/flatbuffers.h" |
| |
| namespace p2p_sync { |
| |
| // Fill |buffer| with a new |Message| containing a |Response| for an unknown |
| // namespace or page. |
| void CreateUnknownResponseMessage(flatbuffers::FlatBufferBuilder* buffer, |
| absl::string_view namespace_id, absl::string_view page_id, |
| ResponseStatus status); |
| } // namespace p2p_sync |
| |
| #endif // SRC_LEDGER_BIN_P2P_SYNC_IMPL_FLATBUFFER_MESSAGE_FACTORY_H_ |