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
|
/*
kirctransfer.h - DCC Handler
Copyright (c) 2003-2004 by Michel Hermier <michel.hermier@wanadoo.fr>
Kopete (c) 2003-2004 by the Kopete developers <kopete-devel@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 KIRCTRANSFERSERVER_H
#define KIRCTRANSFERSERVER_H
#include "kirctransfer.h"
#include <tqobject.h>
class KExtendedSocket;
class TQFile;
class TQTextCodec;
namespace KIRC
{
class TransferServer
: public QObject
{
Q_OBJECT
public:
// TransferServer(TQObject *parent = 0, const char *name = 0);
TransferServer(Q_UINT16 port, int backlog = 1, TQObject *parent = 0, const char *name = 0);
TransferServer(KIRC::Engine *engine, TQString nick,// TQString nick_peer_adress,
Transfer::Type type,
TQString fileName, Q_UINT32 fileSize,
TQObject *parent = 0, const char *name = 0);
~TransferServer();
int port()
{ return m_port; }
protected:
bool initServer();
bool initServer( Q_UINT16 port, int backlog = 1 );
signals:
void incomingNewTransfer(Transfer *transfer);
protected slots:
void readyAccept();
void connectionFailed(int error);
private:
KExtendedSocket * m_socket;
Q_UINT16 m_port;
int m_backlog;
// The following will be deprecated ...
KIRC::Engine * m_engine;
QString m_nick;
Transfer::Type m_type;
QString m_fileName;
Q_UINT32 m_fileSize;
// by
// TQPtrList<Transfer> m_pendingTransfers;
// TQPtrList<Transfer> m_activeTransfers;
};
}
#endif
|