diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | bcb704366cb5e333a626c18c308c7e0448a8e69f (patch) | |
tree | f0d6ab7d78ecdd9207cf46536376b44b91a1ca71 /kopete/protocols/msn/incomingtransfer.h | |
download | tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.tar.gz tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kopete/protocols/msn/incomingtransfer.h')
-rw-r--r-- | kopete/protocols/msn/incomingtransfer.h | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/kopete/protocols/msn/incomingtransfer.h b/kopete/protocols/msn/incomingtransfer.h new file mode 100644 index 00000000..23e101b3 --- /dev/null +++ b/kopete/protocols/msn/incomingtransfer.h @@ -0,0 +1,57 @@ +/* + incomingtransfer.h - msn p2p protocol + + Copyright (c) 2003-2005 by Olivier Goffart <ogoffart@ kde.org> + Copyright (c) 2005 by Gregg Edghill <gregg.edghill@gmail.com> + + ************************************************************************* + * * + * 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 INCOMINGTRANSFER_H +#define INCOMINGTRANSFER_H + +#include "p2p.h" +#include "dispatcher.h" + +namespace KNetwork{ + class KServerSocket; +} + +/** +@author Kopete Developers +*/ +namespace P2P{ + class IncomingTransfer : public P2P::TransferContext + { Q_OBJECT + public: + IncomingTransfer(const QString& from, P2P::Dispatcher *dispatcher, Q_UINT32 sessionId); + virtual ~IncomingTransfer(); + + private slots: + void slotListenError(int errorCode); + void slotAccept(); + void slotSocketRead(); + void slotSocketClosed(); + void slotSocketError(int errorCode); + + void slotTransferAccepted(Kopete::Transfer* transfer, const QString& fileName); + void slotTransferRefused(const Kopete::FileTransferInfo& info); + + + private: + virtual void acknowledged(); + virtual void processMessage(const Message& message); + + KTempFile *m_tempFile; + KNetwork::KServerSocket *m_listener; + }; +} + +#endif |