From 8f21a5b11698e0c84e61e22c9c505d59d5e50f67 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Fri, 23 Sep 2022 08:27:18 +0200 Subject: [PATCH] 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. --- src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) 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> { info!("Configuring misc stuff..."); + // Disable tx gloming which transfers multiple packets in one request. + // 'glom' is short for "conglomerate" which means "gather together into + // a compact mass". self.set_iovar_u32("bus:txglom", 0).await; self.set_iovar_u32("apsta", 1).await;