-
Notifications
You must be signed in to change notification settings - Fork 1
FEAT: Add switch presets #428
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
…-Team/algnet into presets_for_switch
| }; | ||
|
|
||
| class ECMPHasher : public IPacketHasher { | ||
| class ECMPHasher : public ClonebleHasher<ECMPHasher> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| class ECMPHasher : public ClonebleHasher<ECMPHasher> { | |
| class ECMPHasher : public ClonebleHasher<ECMPHasher> { |
| }; | ||
|
|
||
| class SaltECMPHasher : public IPacketHasher { | ||
| class SaltECMPHasher : public ClonebleHasher<SaltECMPHasher> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| class SaltECMPHasher : public ClonebleHasher<SaltECMPHasher> { | |
| class SaltECMPHasher : public ClonebleHasher<SaltECMPHasher> { |
| }; | ||
|
|
||
| class FLowletHasher : public IPacketHasher { | ||
| class FLowletHasher : public ClonebleHasher<FLowletHasher> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| class FLowletHasher : public ClonebleHasher<FLowletHasher> { | |
| class FLowletHasher : public ClonebleHasher<FLowletHasher> { |
| }; | ||
|
|
||
| class SymmetricHasher : public IPacketHasher { | ||
| class SymmetricHasher : public ClonebleHasher<SymmetricHasher> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| class SymmetricHasher : public ClonebleHasher<SymmetricHasher> { | |
| class SymmetricHasher : public ClonebleHasher<SymmetricHasher> { |
| }; | ||
|
|
||
| class RandomHasher : public IPacketHasher { | ||
| template <typename Hasher> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, but I think, naming I suggested before is not really good
| template <typename Hasher> | |
| template <typename THasher> |
No description provided.