Revert "Just define these static const int members in-class"

Can't say I understand why, but this turned out to not be a good idea
after all. And no, using constexpr did not work either, so I won't
waste any more time on this triviality, but just revert.

This reverts commit 195b88ac8d.

Change-Id: I49f737dc6a36fa4808841cb8e0335246ad8c6d03
This commit is contained in:
Tor Lillqvist
2018-09-11 11:34:53 +03:00
parent 3110bea2ea
commit 5f779e0295
2 changed files with 5 additions and 2 deletions

View File

@ -44,8 +44,8 @@ protected:
static const unsigned char Mask = 0x80;
};
static const int InitialPingDelayMs = 25;
static const int PingFrequencyMs = 18 * 1000;
static const int InitialPingDelayMs;
static const int PingFrequencyMs;
public:
/// Perform upgrade ourselves, or select a client web socket.