X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fnetworkconfig.h;fp=src%2Fcommon%2Fnetworkconfig.h;h=d1d10b965efd0443fe92bad3c20d7cb698f1ec89;hp=83574f97bf5f959f4fc2f2be08fcac3b7ec39714;hb=158443f71d48215eea8b47b836b61afd77654b78;hpb=3a3e844f9fcfd12235a0086af75ecd503b621ef4 diff --git a/src/common/networkconfig.h b/src/common/networkconfig.h index 83574f97..d1d10b96 100644 --- a/src/common/networkconfig.h +++ b/src/common/networkconfig.h @@ -93,14 +93,14 @@ signals: // void setAutoWhoDelayRequested(int); private: - bool _pingTimeoutEnabled; - int _pingInterval; - int _maxPingCount; + bool _pingTimeoutEnabled{true}; + int _pingInterval{30}; + int _maxPingCount{6}; - bool _autoWhoEnabled; - int _autoWhoInterval; - int _autoWhoNickLimit; - int _autoWhoDelay; + bool _autoWhoEnabled{true}; + int _autoWhoInterval{90}; + int _autoWhoNickLimit{200}; + int _autoWhoDelay{5}; - bool _standardCtcp; + bool _standardCtcp{false}; };