summaryrefslogtreecommitdiffstats
path: root/libktorrent/util/httprequest.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-28 20:34:15 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-28 20:34:15 +0000
commit1c1403293485f35fd53db45aaa77a01cdd9627e7 (patch)
tree38559cd68cd4f63023fb5f6375def9db3b8b491e /libktorrent/util/httprequest.cpp
parent894f94545727610df22c4f73911d62d58266f695 (diff)
downloadktorrent-1c1403293485f35fd53db45aaa77a01cdd9627e7.tar.gz
ktorrent-1c1403293485f35fd53db45aaa77a01cdd9627e7.zip
TQt4 port ktorrent
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ktorrent@1238733 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libktorrent/util/httprequest.cpp')
-rw-r--r--libktorrent/util/httprequest.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/libktorrent/util/httprequest.cpp b/libktorrent/util/httprequest.cpp
index d0652bc..ed7d980 100644
--- a/libktorrent/util/httprequest.cpp
+++ b/libktorrent/util/httprequest.cpp
@@ -17,7 +17,7 @@
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
-#include <qstringlist.h>
+#include <tqstringlist.h>
#include <torrent/globals.h>
#include "httprequest.h"
#include "array.h"
@@ -27,18 +27,18 @@
namespace bt
{
- HTTPRequest::HTTPRequest(const QString & hdr,const QString & payload,const QString & host,Uint16 port,bool verbose) : hdr(hdr),payload(payload),verbose(verbose)
+ HTTPRequest::HTTPRequest(const TQString & hdr,const TQString & payload,const TQString & host,Uint16 port,bool verbose) : hdr(hdr),payload(payload),verbose(verbose)
{
- sock = new KNetwork::KStreamSocket(host,QString::number(port),this,0);
+ sock = new KNetwork::KStreamSocket(host,TQString::number(port),this,0);
sock->enableRead(true);
sock->enableWrite(true);
sock->setTimeout(30000);
sock->setBlocking(false);
- connect(sock,SIGNAL(readyRead()),this,SLOT(onReadyRead()));
- connect(sock,SIGNAL(gotError(int)),this,SLOT(onError(int )));
- connect(sock,SIGNAL(timedOut()),this,SLOT(onTimeout()));
- connect(sock,SIGNAL(connected(const KResolverEntry&)),
- this, SLOT(onConnect( const KResolverEntry& )));
+ connect(sock,TQT_SIGNAL(readyRead()),this,TQT_SLOT(onReadyRead()));
+ connect(sock,TQT_SIGNAL(gotError(int)),this,TQT_SLOT(onError(int )));
+ connect(sock,TQT_SIGNAL(timedOut()),this,TQT_SLOT(onTimeout()));
+ connect(sock,TQT_SIGNAL(connected(const KResolverEntry&)),
+ this, TQT_SLOT(onConnect( const KResolverEntry& )));
}
@@ -55,10 +55,10 @@ namespace bt
void HTTPRequest::onConnect(const KResolverEntry&)
{
- payload = payload.replace("$LOCAL_IP",sock->localAddress().nodeName());
- hdr = hdr.replace("$CONTENT_LENGTH",QString::number(payload.length()));
+ payload = payload.tqreplace("$LOCAL_IP",sock->localAddress().nodeName());
+ hdr = hdr.tqreplace("$CONTENT_LENGTH",TQString::number(payload.length()));
- QString req = hdr + payload;
+ TQString req = hdr + payload;
if (verbose)
{
Out(SYS_PNP|LOG_DEBUG) << "Sending " << endl;
@@ -79,8 +79,8 @@ namespace bt
Array<char> data(ba);
ba = sock->readBlock(data,ba);
- QString strdata((const char*)data);
- QStringList sl = QStringList::split("\r\n",strdata,false);
+ TQString strdata((const char*)data);
+ TQStringList sl = TQStringList::split("\r\n",strdata,false);
if (verbose)
{
@@ -88,7 +88,7 @@ namespace bt
Out(SYS_PNP|LOG_DEBUG) << strdata << endl;
}
- if (sl.first().contains("HTTP") && sl.first().contains("200"))
+ if (sl.first().tqcontains("HTTP") && sl.first().tqcontains("200"))
{
// emit reply OK
replyOK(this,sl.last());
@@ -103,7 +103,7 @@ namespace bt
void HTTPRequest::onError(int)
{
- Out() << "HTTPRequest error : " << sock->errorString() << endl;
+ Out() << "HTTPRequest error : " << sock->KSocketBase::errorString() << endl;
error(this,false);
sock->close();
operationFinished(this);