Revert "connectd: add dev_uniform_padding to connectd_wire.csv"
What changed, and why it matters
This commit simply removes a developer-only experimental feature flag called 'dev_uniform_padding' from an internal message definition file. It is a clean revert of a previous commit that added the flag. There is no indication this change fixes or introduces a security vulnerability; it just undoes an unmerged or unwanted development experiment related to padding network messages for traffic-analysis defense.
No security action required. Treat as ordinary development cleanup. If the padding feature is desired, it should be reintroduced through normal design review rather than as a hidden dev flag.
Security signals we found
Removal of a developer-only experimental traffic-analysis defense flag
No functional code changes or vulnerability indicators in the diff
Evidence from the diff
The diff removes two lines from connectd/connectd_wire.csv: a comment describing ‘dev_uniform_padding’ as padding outgoing messages to uniform 1460-byte segments for traffic-analysis defense, and the corresponding msgdata boolean field in connectd_init. This is a wire-protocol schema revert with no functional code changes shown. The feature was clearly marked ‘dev_’ (developer-only) and the commit message is a straightforward revert.
Changed components
connectd/connectd_wire.csvInspect captured patch +0 / −2
diff --git a/connectd/connectd_wire.csv b/connectd/connectd_wire.csv
index 700e6829..d5f6aee3 100644
--- a/connectd/connectd_wire.csv
+++ b/connectd/connectd_wire.csv
@@ -29,8 +29,6 @@ msgdata,connectd_init,dev_no_reconnect,bool,
msgdata,connectd_init,dev_fast_reconnect,bool,
msgdata,connectd_init,dev_limit_connections_inflight,bool,
msgdata,connectd_init,dev_keep_nagle,bool,
-# Pad outgoing messages to uniform 1460-byte segments (traffic analysis defence)
-msgdata,connectd_init,dev_uniform_padding,bool,
# Connectd->master, here are the addresses I bound, can announce.
msgtype,connectd_init_reply,2100
Why this scored 11/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.