diff options
author | Cory Fields <cory-nospam-@coryfields.com> | 2016-12-31 02:05:09 -0500 |
---|---|---|
committer | Cory Fields <cory-nospam-@coryfields.com> | 2017-01-04 09:29:14 -0500 |
commit | 5b4a8ac6d6b4d8e17b448f2b4927025fb352f7af (patch) | |
tree | 604fcf4cf30779e23783c3e57fe19754226af0e0 /src/net.h | |
parent | e5bcd9c84fd3107321ff6dbdef067ba03f2b43cb (diff) |
net: make GetReceiveFloodSize public
This will be needed so that the message processor can cork incoming messages
Diffstat (limited to 'src/net.h')
-rw-r--r-- | src/net.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -324,6 +324,7 @@ public: /** Get a unique deterministic randomizer. */ CSipHasher GetDeterministicRandomizer(uint64_t id); + unsigned int GetReceiveFloodSize() const; private: struct ListenSocket { SOCKET socket; @@ -365,8 +366,6 @@ private: void DumpData(); void DumpBanlist(); - unsigned int GetReceiveFloodSize() const; - // Network stats void RecordBytesRecv(uint64_t bytes); void RecordBytesSent(uint64_t bytes); |