diff options
author | Michele Calgaro <[email protected]> | 2014-03-29 00:54:51 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2014-03-29 00:54:51 +0900 |
commit | 0486034738b850c210b1389a8c3ae51a6b9fad23 (patch) | |
tree | b1e3a4dbf9673b5e0031e8225e88f5dd490585a5 /kopete/protocols/msn/msnsecureloginhandler.h | |
parent | 4bd7620e88d450995b78c201f9e7d9181f62ea6a (diff) | |
download | tdenetwork-0486034738b850c210b1389a8c3ae51a6b9fad23.tar.gz tdenetwork-0486034738b850c210b1389a8c3ae51a6b9fad23.zip |
Removed MSN support across Kopete by removing the MSN protocol and the netmeeting plugin.
This resolves bug 1547.
Diffstat (limited to 'kopete/protocols/msn/msnsecureloginhandler.h')
-rw-r--r-- | kopete/protocols/msn/msnsecureloginhandler.h | 77 |
1 files changed, 0 insertions, 77 deletions
diff --git a/kopete/protocols/msn/msnsecureloginhandler.h b/kopete/protocols/msn/msnsecureloginhandler.h deleted file mode 100644 index 5dc4a277..00000000 --- a/kopete/protocols/msn/msnsecureloginhandler.h +++ /dev/null @@ -1,77 +0,0 @@ -/* - msnsecureloginhandler.h - SSL login for MSN protocol - - Copyright (c) 2005 by Michaël Larouche <[email protected]> - - Kopete (c) 2002-2005 by the Kopete developers <[email protected]> - - ************************************************************************* - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - ************************************************************************* -*/ -#ifndef MSNSECURELOGINHANDLER_H -#define MSNSECURELOGINHANDLER_H - -#include <tqobject.h> - -namespace TDEIO -{ - class Job; - class MetaData; -} - -/** - * This class handle the login process. It connect to the .NET Password service and retrive the ticket(tweener) to login. - * Use TDEIO. - * - * @author Michaël Larouche <[email protected]> -*/ -class MSNSecureLoginHandler : public TQObject -{ -Q_OBJECT - -public: - MSNSecureLoginHandler(const TQString &accountId, const TQString &password, const TQString &authParameters); - - ~MSNSecureLoginHandler(); - - void login(); - -signals: - /** - * TODO: return to const TQString & - */ - void loginSuccesful(TQString ticket); - void loginBadPassword(); - void loginFailed(); - -private slots: - void slotLoginServerReceived(TDEIO::Job *); - /** - * We have received our ticket to login. - */ - void slotTweenerReceived(TDEIO::Job *); - -private: - /** - * Store the password. - */ - TQString m_password; - /** - * Store the accountId. - */ - TQString m_accountId; - /** - * Store the authentification parameters - */ - TQString m_authentification; - - void displayMetaData(TDEIO::MetaData data); -}; - -#endif |