diff options
| author | Cory Fields <[email protected]> | 2016-12-31 02:05:09 -0500 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2017-01-04 09:29:14 -0500 |
| commit | 5b4a8ac6d6b4d8e17b448f2b4927025fb352f7af (patch) | |
| tree | 604fcf4cf30779e23783c3e57fe19754226af0e0 /src | |
| parent | net: make vRecvMsg a list so that we can use splice() (diff) | |
| download | discoin-5b4a8ac6d6b4d8e17b448f2b4927025fb352f7af.tar.xz discoin-5b4a8ac6d6b4d8e17b448f2b4927025fb352f7af.zip | |
net: make GetReceiveFloodSize public
This will be needed so that the message processor can cork incoming messages
Diffstat (limited to 'src')
| -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); |