Fix some hashing bugs resulting from adaptation of new IPAddr class.

This commit is contained in:
Jon Siwek 2012-02-06 13:05:52 -06:00
parent 2e2f8f5d06
commit 1f58ac875b
6 changed files with 24 additions and 25 deletions

View file

@ -50,8 +50,8 @@ struct ConnID {
// The structure used internally for hashing.
struct Key {
IPAddr ip1;
IPAddr ip2;
uint32 ip1[4];
uint32 ip2[4];
uint16 port1;
uint16 port2;
};