Skip to content

Commit

Permalink
Default CongestionControl for Push is Drop
Browse files Browse the repository at this point in the history
  • Loading branch information
Mallets committed Feb 9, 2024
1 parent 09a97ac commit 32a2846
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commons/zenoh-protocol/src/network/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ pub mod ext {
const E_FLAG: u8 = 0b00010000;

pub const DECLARE: Self = Self::new(Priority::DEAULT, CongestionControl::Block, false);
pub const PUSH: Self = Self::new(Priority::DEAULT, CongestionControl::Block, false);
pub const PUSH: Self = Self::new(Priority::DEAULT, CongestionControl::Drop, false);
pub const REQUEST: Self = Self::new(Priority::DEAULT, CongestionControl::Block, false);
pub const RESPONSE: Self = Self::new(Priority::DEAULT, CongestionControl::Block, false);
pub const RESPONSE_FINAL: Self =
Expand Down

0 comments on commit 32a2846

Please sign in to comment.