-
Notifications
You must be signed in to change notification settings - Fork 279
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* no cache no 4 Mb limit Signed-off-by: iceseer <iceseer@gmail.com> Signed-off-by: Alexander Lednev <57529355+iceseer@users.noreply.github.com> * proposal response parsing refactoring Signed-off-by: iceseer <iceseer@gmail.com> Signed-off-by: Alexander Lednev <57529355+iceseer@users.noreply.github.com> * configuration refactoring Signed-off-by: iceseer <iceseer@gmail.com> Signed-off-by: Alexander Lednev <57529355+iceseer@users.noreply.github.com> * yac stream Signed-off-by: iceseer <iceseer@gmail.com> Signed-off-by: Alexander Lednev <57529355+iceseer@users.noreply.github.com> * block fake peer test for MAC OS Signed-off-by: iceseer <iceseer@gmail.com> Signed-off-by: Alexander Lednev <57529355+iceseer@users.noreply.github.com>
- Loading branch information
Showing
16 changed files
with
255 additions
and
225 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
system_irohad_test | ||
fake_peer_example_test | ||
get_engine_receipts_test | ||
integration_add_peer_test | ||
integration_remove_peer_test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/** | ||
* Copyright Soramitsu Co., Ltd. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
#ifndef IROHA_CHANNEL_CONSTANTS_HPP | ||
#define IROHA_CHANNEL_CONSTANTS_HPP | ||
|
||
namespace iroha::network { | ||
|
||
/// Determines maximum packet size can be sent via grpc | ||
static constexpr int kMaxMessageSize = 128 * 1024 * 1024; | ||
|
||
} // namespace iroha::network | ||
|
||
#endif // IROHA_CHANNEL_CONSTANTS_HPP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.