Skip to content

Commit

Permalink
Add comments to DEFAULT_CONFIG.json5
Browse files Browse the repository at this point in the history
  • Loading branch information
Mallets committed Nov 30, 2023
1 parent 1dc31d4 commit e22a312
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions DEFAULT_CONFIG.json5
Original file line number Diff line number Diff line change
Expand Up @@ -133,17 +133,25 @@
/// NOTE: Due to the note above, 'lowlatency' is incompatible with 'qos' option, so in order to
/// enable 'lowlatency' you need to explicitly disable 'qos'.
lowlatency: false,
/// Enables QoS on unicast communications.
qos: {
enabled: true,
},
/// Enables compression on unicast communications.
/// Compression capabilities are negotiated during session establishment.
/// If both Zenoh nodes support compression, then compression is activated.
compression: {
enabled: false,
},
},
},
multicast: {
/// Enables QoS on multicast communication.
/// Default to false for Zenoh-to-Zenoh-Pico out-of-the-box compatibility.
qos: {
enabled: true,
enabled: false,
},
/// Enables compression on multicast communication.
/// Default to false for Zenoh-to-Zenoh-Pico out-of-the-box compatibility.
compression: {
enabled: false,
},
Expand Down

0 comments on commit e22a312

Please sign in to comment.