mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-05 15:45:04 -04:00
replaced QString output of uniqueIdentifier() in feedItem classes by a std::string because QString caused random crashes
This commit is contained in:
parent
da6e7f9e9b
commit
11c520d280
21 changed files with 27 additions and 25 deletions
|
@ -442,6 +442,7 @@ bool RttPeerInfo::initialisePeerInfo(const RsPeerId& id)
|
|||
mCurrentPingTS = 0;
|
||||
mCurrentPingCounter = 0;
|
||||
mCurrentPongRecvd = true;
|
||||
mCurrentMeanOffset = 0;
|
||||
|
||||
mSentPings = 0;
|
||||
mLostPongs = 0;
|
||||
|
|
|
@ -34,6 +34,8 @@ class p3ServiceControl;
|
|||
class RttPeerInfo
|
||||
{
|
||||
public:
|
||||
RttPeerInfo()
|
||||
: mCurrentPingTS(0.0),mCurrentPingCounter(0.0),mCurrentPongRecvd(false),mCurrentMeanOffset(0.0),mLostPongs(0),mSentPings(0){}
|
||||
|
||||
bool initialisePeerInfo(const RsPeerId& id);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue