blob: 5803cd01c93217d05c45cc1dd91fddfee3e398cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
/***************************************************************************
msnfiletransfersocket.h - description
-------------------
begin : mer jui 31 2002
copyright : (C) 2002 by Olivier Goffart
email : ogoffart @ kde.org
***************************************************************************/
/***************************************************************************
* *
* 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 MSNFILETRANSFERSOCKET_H
#define MSNFILETRANSFERSOCKET_H
#include <tqwidget.h>
#include "msnsocket.h"
#include "msninvitation.h"
class TQFile;
namespace KNetwork {
class TDEServerSocket;
}
namespace Kopete { class Transfer; }
namespace Kopete { class FileTransferInfo; }
namespace Kopete { class Protocol; }
namespace Kopete { class Contact; }
/**
* @author Olivier Goffart
*/
class MSNFileTransferSocket : public MSNSocket , public MSNInvitation
{
Q_OBJECT
public:
MSNFileTransferSocket(const TQString &myID,Kopete::Contact* c, bool incoming, TQObject* parent = 0L );
~MSNFileTransferSocket();
static TQString applicationID() { return "5D3E02AB-6190-11d3-BBBB-00C04F795683"; }
TQString invitationHead();
void setKopeteTransfer( Kopete::Transfer *kt );
Kopete::Transfer* kopeteTransfer() { return m_kopeteTransfer; }
void setFile( const TQString &fn, long unsigned int fileSize = 0L );
void setAuthCookie( const TQString &c ) { m_authcook = c; }
TQString fileName() { return m_fileName;}
long unsigned int size() { return m_size;}
void listen( int port );
virtual void parseInvitation(const TQString& invitation);
virtual TQObject* object() { return this; }
public slots:
void abort();
signals:
void done( MSNInvitation * );
protected:
/**
* This reimplementation sets up the negotiating with the server and
* suppresses the change of the status to online until the handshake
* is complete.
*/
virtual void doneConnect();
/**
* Handle an MSN command response line.
*/
virtual void parseCommand(const TQString & cmd, uint id, const TQString & data);
virtual void bytesReceived(const TQByteArray & data);
protected slots:
virtual void slotReadyWrite();
private slots:
void slotSocketClosed();
void slotReadBlock(const TQByteArray &);
void slotAcceptConnection();
void slotTimer();
void slotSendFile();
void slotFileTransferRefused( const Kopete::FileTransferInfo &info );
void slotFileTransferAccepted( Kopete::Transfer *trans, const TQString& fileName );
/* the Kopete::Transfer has been deleted */
void slotKopeteTransferDestroyed();
private:
TQString m_handle;
Kopete::Contact *m_contact;
long unsigned int m_size;
long unsigned int m_downsize;
TQString m_authcook;
TQString m_fileName;
Kopete::Transfer* m_kopeteTransfer;
TQFile *m_file ;
KNetwork::TDEServerSocket *m_server;
bool ready;
};
#endif
// vim: set noet ts=4 sts=4 tw=4:
|