|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
gwconnector.h - Socket Connector for KNetwork
|
|
|
|
-------------------
|
|
|
|
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 GWCONNECTOR_H
|
|
|
|
#define GWCONNECTOR_H
|
|
|
|
|
|
|
|
#include "gwbytestream.h"
|
|
|
|
|
|
|
|
#include "connector.h"
|
|
|
|
|
|
|
|
class ByteStream;
|
|
|
|
class KNetworkByteStream;
|
|
|
|
class KResolverEntry;
|
|
|
|
|
|
|
|
/**
|
|
|
|
@author Till Gerken
|
|
|
|
*/
|
|
|
|
class KNetworkConnector : public Connector
|
|
|
|
{
|
|
|
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
KNetworkConnector ( TQObject *parent = 0, const char *name = 0 );
|
|
|
|
|
|
|
|
virtual ~KNetworkConnector ();
|
|
|
|
|
|
|
|
virtual void connectToServer ( const TQString &server );
|
|
|
|
virtual ByteStream *stream () const;
|
|
|
|
virtual void done ();
|
|
|
|
|
|
|
|
void setOptHostPort ( const TQString &host, TQ_UINT16 port );
|
|
|
|
void setOptSSL ( bool );
|
|
|
|
|
|
|
|
int errorCode ();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void slotConnected ();
|
|
|
|
void slotError ( int );
|
|
|
|
|
|
|
|
private:
|
|
|
|
TQString mHost;
|
|
|
|
TQ_UINT16 mPort;
|
|
|
|
int mErrorCode;
|
|
|
|
|
|
|
|
KNetworkByteStream *mByteStream;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|