undertheironbridge
undertheironbridge
In the last (12 March 2020) update to [BEP-0007](http://www.bittorrent.org/beps/bep_0007.html), the following paragraph was added : > An earlier version of this BEP specified new HTTP parameters to announce an additional...
All whitelist lookups are currently performed by a linear search over a `std::vector` of `std::string` objects. Since peer IDs are always 20 bytes long, an `std::array` might be better suited...
`db.cpp` had some very repetitive code related to managing the query buffers. This is now handled by a local wrapper for `std::string` which provides the necessary functionality. Also, usages of...