blob: f4a561e929ab2d545b4d72086064b2a3504382a3 (
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
|
/***************************************************************************
jabberconnector.cpp - Socket Connector for Jabber
-------------------
begin : Wed Jul 7 2004
copyright : (C) 2004 by Till Gerken <till@tantalo.net>
Kopete (C) 2004 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 Lesser General Public License as *
* published by the Free Software Foundation; either version 2.1 of the *
* License, or (at your option) any later version. *
* *
***************************************************************************/
#ifndef JABBERCONNECTOR_H
#define JABBERCONNECTOR_H
#include <xmpp.h>
#include "jabberbytestream.h"
class ByteStream;
class KResolverEntry;
/**
@author Till Gerken
*/
class JabberConnector : public XMPP::Connector
{
Q_OBJECT
TQ_OBJECT
public:
JabberConnector ( TQObject *parent = 0, const char *name = 0 );
~JabberConnector ();
void connectToServer ( const TQString &server );
ByteStream *stream () const;
void done ();
void setOptHostPort ( const TQString &host, TQ_UINT16 port );
void setOptSSL ( bool );
void setOptProbe ( bool );
int errorCode ();
private slots:
void slotConnected ();
void slotError ( int );
private:
TQString mHost;
TQ_UINT16 mPort;
int mErrorCode;
JabberByteStream *mByteStream;
};
#endif
|