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
121
122
|
/*
qcatlshandler.cpp - Kopete Groupwise Protocol
Copyright (c) 2004 SUSE Linux AG http://www.suse.com
Based on Iris, Copyright (C) 2003 Justin Karneges
Kopete (c) 2002-2004 by the Kopete developers <kopete-devel@kde.org>
*************************************************************************
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
*************************************************************************
*/
#include <tqtimer.h>
#include <qca.h>
#include "qcatlshandler.h"
class TQCATLSHandler::Private
{
public:
TQCA::TLS *tls;
int state, err;
};
TQCATLSHandler::TQCATLSHandler(TQCA::TLS *parent)
:TLSHandler(parent)
{
d = new Private;
d->tls = parent;
connect(d->tls, TQT_SIGNAL(handshaken()), TQT_SLOT(tls_handshaken()));
connect(d->tls, TQT_SIGNAL(readyRead()), TQT_SLOT(tls_readyRead()));
connect(d->tls, TQT_SIGNAL(readyReadOutgoing(int)), TQT_SLOT(tls_readyReadOutgoing(int)));
connect(d->tls, TQT_SIGNAL(closed()), TQT_SLOT(tls_closed()));
connect(d->tls, TQT_SIGNAL(error(int)), TQT_SLOT(tls_error(int)));
d->state = 0;
d->err = -1;
}
TQCATLSHandler::~TQCATLSHandler()
{
delete d;
}
TQCA::TLS *TQCATLSHandler::tls() const
{
return d->tls;
}
int TQCATLSHandler::tlsError() const
{
return d->err;
}
void TQCATLSHandler::reset()
{
d->tls->reset();
d->state = 0;
}
void TQCATLSHandler::startClient(const TQString &host)
{
d->state = 0;
d->err = -1;
if(!d->tls->startClient(host))
TQTimer::singleShot(0, this, TQT_SIGNAL(fail()));
}
void TQCATLSHandler::write(const TQByteArray &a)
{
d->tls->write(a);
}
void TQCATLSHandler::writeIncoming(const TQByteArray &a)
{
d->tls->writeIncoming(a);
}
void TQCATLSHandler::continueAfterHandshake()
{
if(d->state == 2) {
success();
d->state = 3;
}
}
void TQCATLSHandler::tls_handshaken()
{
d->state = 2;
tlsHandshaken();
}
void TQCATLSHandler::tls_readyRead()
{
readyRead(d->tls->read());
}
void TQCATLSHandler::tls_readyReadOutgoing(int plainBytes)
{
readyReadOutgoing(d->tls->readOutgoing(), plainBytes);
}
void TQCATLSHandler::tls_closed()
{
closed();
}
void TQCATLSHandler::tls_error(int x)
{
d->err = x;
d->state = 0;
fail();
}
#include "qcatlshandler.moc"
|