summaryrefslogtreecommitdiffstats
path: root/examples/sasltest/sasltest.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-08 11:54:46 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-08 11:54:46 +0900
commit145fb03d2e5d2009d40d347e2efc577d6920aae4 (patch)
treebb4b03f592d77d0a391c621b58eed7e15148ac75 /examples/sasltest/sasltest.cpp
parent4a9cdf1df0a990c82989ea75b1f65d31444b0c8d (diff)
downloadtqca-145fb03d2e5d2009d40d347e2efc577d6920aae4.tar.gz
tqca-145fb03d2e5d2009d40d347e2efc577d6920aae4.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'examples/sasltest/sasltest.cpp')
-rw-r--r--examples/sasltest/sasltest.cpp50
1 files changed, 25 insertions, 25 deletions
diff --git a/examples/sasltest/sasltest.cpp b/examples/sasltest/sasltest.cpp
index 9eea0f9..bc32134 100644
--- a/examples/sasltest/sasltest.cpp
+++ b/examples/sasltest/sasltest.cpp
@@ -33,19 +33,19 @@ public:
ClientTest()
{
sock = new TQSocket;
- connect(sock, SIGNAL(connected()), SLOT(sock_connected()));
- connect(sock, SIGNAL(connectionClosed()), SLOT(sock_connectionClosed()));
- connect(sock, SIGNAL(readyRead()), SLOT(sock_readyRead()));
- connect(sock, SIGNAL(error(int)), SLOT(sock_error(int)));
+ connect(sock, TQ_SIGNAL(connected()), TQ_SLOT(sock_connected()));
+ connect(sock, TQ_SIGNAL(connectionClosed()), TQ_SLOT(sock_connectionClosed()));
+ connect(sock, TQ_SIGNAL(readyRead()), TQ_SLOT(sock_readyRead()));
+ connect(sock, TQ_SIGNAL(error(int)), TQ_SLOT(sock_error(int)));
sasl = new QCA::SASL;
- connect(sasl, SIGNAL(clientFirstStep(const TQString &, const TQByteArray *)), SLOT(sasl_clientFirstStep(const TQString &, const TQByteArray *)));
- connect(sasl, SIGNAL(nextStep(const TQByteArray &)), SLOT(sasl_nextStep(const TQByteArray &)));
- connect(sasl, SIGNAL(needParams(bool, bool, bool, bool)), SLOT(sasl_needParams(bool, bool, bool, bool)));
- connect(sasl, SIGNAL(authenticated()), SLOT(sasl_authenticated()));
- connect(sasl, SIGNAL(readyRead()), SLOT(sasl_readyRead()));
- connect(sasl, SIGNAL(readyReadOutgoing(int)), SLOT(sasl_readyReadOutgoing(int)));
- connect(sasl, SIGNAL(error(int)), SLOT(sasl_error(int)));
+ connect(sasl, TQ_SIGNAL(clientFirstStep(const TQString &, const TQByteArray *)), TQ_SLOT(sasl_clientFirstStep(const TQString &, const TQByteArray *)));
+ connect(sasl, TQ_SIGNAL(nextStep(const TQByteArray &)), TQ_SLOT(sasl_nextStep(const TQByteArray &)));
+ connect(sasl, TQ_SIGNAL(needParams(bool, bool, bool, bool)), TQ_SLOT(sasl_needParams(bool, bool, bool, bool)));
+ connect(sasl, TQ_SIGNAL(authenticated()), TQ_SLOT(sasl_authenticated()));
+ connect(sasl, TQ_SIGNAL(readyRead()), TQ_SLOT(sasl_readyRead()));
+ connect(sasl, TQ_SIGNAL(readyReadOutgoing(int)), TQ_SLOT(sasl_readyReadOutgoing(int)));
+ connect(sasl, TQ_SIGNAL(error(int)), TQ_SLOT(sasl_error(int)));
}
~ClientTest()
@@ -308,14 +308,14 @@ public:
{
if(!ok()) {
printf("Error binding to port %d!\n", port);
- TQTimer::singleShot(0, this, SIGNAL(quit()));
+ TQTimer::singleShot(0, this, TQ_SIGNAL(quit()));
return;
}
char myhostname[256];
int r = gethostname(myhostname, sizeof(myhostname)-1);
if(r == -1) {
printf("Error getting hostname!\n");
- TQTimer::singleShot(0, this, SIGNAL(quit()));
+ TQTimer::singleShot(0, this, TQ_SIGNAL(quit()));
return;
}
host = myhostname;
@@ -335,18 +335,18 @@ public:
printf("Connection received! Starting SASL handshake...\n");
sock = new TQSocket;
- connect(sock, SIGNAL(connectionClosed()), SLOT(sock_connectionClosed()));
- connect(sock, SIGNAL(readyRead()), SLOT(sock_readyRead()));
- connect(sock, SIGNAL(error(int)), SLOT(sock_error(int)));
- connect(sock, SIGNAL(bytesWritten(int)), SLOT(sock_bytesWritten(int)));
+ connect(sock, TQ_SIGNAL(connectionClosed()), TQ_SLOT(sock_connectionClosed()));
+ connect(sock, TQ_SIGNAL(readyRead()), TQ_SLOT(sock_readyRead()));
+ connect(sock, TQ_SIGNAL(error(int)), TQ_SLOT(sock_error(int)));
+ connect(sock, TQ_SIGNAL(bytesWritten(int)), TQ_SLOT(sock_bytesWritten(int)));
sasl = new QCA::SASL;
- connect(sasl, SIGNAL(authCheck(const TQString &, const TQString &)), SLOT(sasl_authCheck(const TQString &, const TQString &)));
- connect(sasl, SIGNAL(nextStep(const TQByteArray &)), SLOT(sasl_nextStep(const TQByteArray &)));
- connect(sasl, SIGNAL(authenticated()), SLOT(sasl_authenticated()));
- connect(sasl, SIGNAL(readyRead()), SLOT(sasl_readyRead()));
- connect(sasl, SIGNAL(readyReadOutgoing(int)), SLOT(sasl_readyReadOutgoing(int)));
- connect(sasl, SIGNAL(error(int)), SLOT(sasl_error(int)));
+ connect(sasl, TQ_SIGNAL(authCheck(const TQString &, const TQString &)), TQ_SLOT(sasl_authCheck(const TQString &, const TQString &)));
+ connect(sasl, TQ_SIGNAL(nextStep(const TQByteArray &)), TQ_SLOT(sasl_nextStep(const TQByteArray &)));
+ connect(sasl, TQ_SIGNAL(authenticated()), TQ_SLOT(sasl_authenticated()));
+ connect(sasl, TQ_SIGNAL(readyRead()), TQ_SLOT(sasl_readyRead()));
+ connect(sasl, TQ_SIGNAL(readyReadOutgoing(int)), TQ_SLOT(sasl_readyReadOutgoing(int)));
+ connect(sasl, TQ_SIGNAL(error(int)), TQ_SLOT(sasl_error(int)));
sock->setSocket(s);
mode = 0;
@@ -598,14 +598,14 @@ int main(int argc, char **argv)
if(server) {
ServerTest *s = new ServerTest(str, PROTO_PORT);
- TQObject::connect(s, SIGNAL(quit()), &app, SLOT(quit()));
+ TQObject::connect(s, TQ_SIGNAL(quit()), &app, TQ_SLOT(quit()));
s->start();
app.exec();
delete s;
}
else {
ClientTest *c = new ClientTest;
- TQObject::connect(c, SIGNAL(quit()), &app, SLOT(quit()));
+ TQObject::connect(c, TQ_SIGNAL(quit()), &app, TQ_SLOT(quit()));
c->start(host, PROTO_PORT, user, pass);
app.exec();
delete c;