You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.8 KiB
67 lines
1.8 KiB
|
|
/***************************************************************************
|
|
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
|
|
|
|
|
|
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
|