Commit bc222124 authored by John Selbie's avatar John Selbie

Fix a bad bug that would cause DDOS protection to not work reliably

parent 9109c81f
......@@ -19,6 +19,10 @@ struct RateTrackerAddress
{
return ((other.addrbytes[0] == addrbytes[0]) && (other.addrbytes[1] == addrbytes[1]));
}
RateTrackerAddress() : addrbytes()
{
}
};
inline size_t FastHash_Hash(const RateTrackerAddress& addr)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment