aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Bevenius <[email protected]>2022-09-23 08:27:18 +0200
committerDaniel Bevenius <[email protected]>2022-09-23 08:37:16 +0200
commit8f21a5b11698e0c84e61e22c9c505d59d5e50f67 (patch)
tree686f673b46e10af8c8cd45c1083b852a03fe5dda /src
parent9db9333d0569ca8e86301f643e42abd37f3b7118 (diff)
Add comment about bus:txglom iovar
This commit adds a comment to the setting of the iovar `bus:txglom`. The motivation for this is that I had not heard of 'glom/glomming' before and having a comment might help others that are not familar with the term.
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index a6b26188d..7a09a539b 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -291,6 +291,9 @@ impl<'a> Control<'a> {
291 291
292 info!("Configuring misc stuff..."); 292 info!("Configuring misc stuff...");
293 293
294 // Disable tx gloming which transfers multiple packets in one request.
295 // 'glom' is short for "conglomerate" which means "gather together into
296 // a compact mass".
294 self.set_iovar_u32("bus:txglom", 0).await; 297 self.set_iovar_u32("bus:txglom", 0).await;
295 self.set_iovar_u32("apsta", 1).await; 298 self.set_iovar_u32("apsta", 1).await;
296 299