Skip to content

Commit

Permalink
Bugfixes and test improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
marta-lokhova authored and sisuresh committed Sep 7, 2023
1 parent ba22838 commit 3155afa
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Stellar-overlay.x
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,13 @@ struct Hello
uint256 nonce;
};

// During the roll-out phrase, nodes can disable flow control in bytes.
// Therefore, we need a way to communicate with other nodes
// that we want/don't want flow control in bytes.
// We use the `flags` field in the Auth message with a special value
// set to communicate this. Note that AUTH_MSG_FLAG_FLOW_CONTROL_BYTES_REQUESTED != 0
// AND AUTH_MSG_FLAG_FLOW_CONTROL_BYTES_REQUESTED != 100 (as previously
// that value was used for other purposes).
const AUTH_MSG_FLAG_FLOW_CONTROL_BYTES_REQUESTED = 200;

struct Auth
Expand Down

0 comments on commit 3155afa

Please sign in to comment.