diff options
author | Piotr Piastucki <leech.miranda@gmail.com> | 2015-05-21 00:18:47 +0000 |
---|---|---|
committer | Piotr Piastucki <leech.miranda@gmail.com> | 2015-05-21 00:18:47 +0000 |
commit | 1b673c9c170f595fdf9a0c34029451bbba3d4139 (patch) | |
tree | d7e5a7419aae8e9cf8bd268def197ca0748b08d6 /protocols/MSN/src/msn_ws.cpp | |
parent | f5a2a6da0378e95c5eb330e0ec4dc2aeca2e7fd2 (diff) |
Removed obsolete code from protocol like P2P, Media Info status messages, Nudge, File transfers, Switchboard.
Currently it is just disabled with #ifdef OBSOLETE in order to keep the code for future reference and still benefit from decreased file size.
If MSN protocol doesn't get back these features, code can finally be thrown out then later. Most likely, these features will be gone forever.
git-svn-id: http://svn.miranda-ng.org/main/trunk@13726 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/MSN/src/msn_ws.cpp')
-rw-r--r-- | protocols/MSN/src/msn_ws.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/protocols/MSN/src/msn_ws.cpp b/protocols/MSN/src/msn_ws.cpp index 3bea4b60eb..79c35ed56d 100644 --- a/protocols/MSN/src/msn_ws.cpp +++ b/protocols/MSN/src/msn_ws.cpp @@ -66,6 +66,7 @@ bool ThreadData::isTimeout(void) if (mJoinedContactsWLID.getCount() == 0 || termPending)
res = true;
+#ifdef OBSOLETE
else if (proto->p2p_getThreadSession(hContact, mType) != NULL)
res = false;
else if (mType == SERVER_SWITCHBOARD) {
@@ -76,6 +77,7 @@ bool ThreadData::isTimeout(void) res = false;
}
}
+#endif
else
res = true;
}
@@ -86,6 +88,7 @@ bool ThreadData::isTimeout(void) proto->debugLogA("Dropping the idle %s due to inactivity", sbsess ? "switchboard" : "p2p");
if (!sbsess || termPending) return true;
+#ifdef OBSOLETE
if (proto->getByte("EnableSessionPopup", 0)) {
MCONTACT hContact = NULL;
if (mJoinedContactsWLID.getCount())
@@ -99,6 +102,7 @@ bool ThreadData::isTimeout(void) sendTerminate();
resetTimeout(true);
+#endif
}
else
resetTimeout();
|