Browse Source

net: make GetReceiveFloodSize public

This will be needed so that the message processor can cork incoming messages
0.14
Cory Fields 8 years ago
parent
commit
5b4a8ac6d6
  1. 3
      src/net.h

3
src/net.h

@ -324,6 +324,7 @@ public: @@ -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: @@ -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);

Loading…
Cancel
Save