[network/libktorrent] src/peer: Fix sending peers with UTPex since Address writeCompact change
Jack Hill <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit b6ba955a742c79e90522d3f5612f77da23197104 by Jack Hill.
Committed on 01/08/2026 at 12:20.
Pushed by jackh into branch 'master'.
Fix sending peers with UTPex since Address writeCompact change
Amends 2f94b4cdcd8bc30218a846354887155be11c86d0
M +1 -1 src/peer/utpex.cpp
https://invent.kde.org/network/libktorrent/-/commit/b6ba955a742c79e90522d3f5612f77da23197104
diff --git a/src/peer/utpex.cpp b/src/peer/utpex.cpp
index 65e3ef33..4f9f8492 100644
--- a/src/peer/utpex.cpp
+++ b/src/peer/utpex.cpp
@@ -179,7 +179,7 @@ void UTPex::encode(BEncoder &enc, const std::map<Uint32, net::Address> &ps, int
if (addr.ipVersion() != ip_version) {
continue;
}
- addr.writeCompact(tmp);
+ size += addr.writeCompact(tmp);
tmp += compact_width;
}