mirror of
https://github.com/transmission/transmission.git
synced 2025-12-19 18:08:31 +00:00
fix: readability-inconsistent-declaration-parameter-name warnings in libtransmission (#3572)
This commit is contained in:
@@ -76,9 +76,9 @@ class Filter
|
||||
{
|
||||
public:
|
||||
void decryptInit(bool is_incoming, DH const&, tr_sha1_digest_t const& info_hash);
|
||||
void decrypt(size_t buflen, void* buf);
|
||||
void decrypt(size_t buf_len, void* buf);
|
||||
void encryptInit(bool is_incoming, DH const&, tr_sha1_digest_t const& info_hash);
|
||||
void encrypt(size_t buflen, void* buf);
|
||||
void encrypt(size_t buf_len, void* buf);
|
||||
|
||||
private:
|
||||
std::shared_ptr<struct arc4_context> dec_key_;
|
||||
|
||||
Reference in New Issue
Block a user