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.
44 lines
1.2 KiB
44 lines
1.2 KiB
/*
|
|
Kopete Yahoo Protocol
|
|
Log off the Yahoo server
|
|
|
|
Copyright (c) 2005 André Duffeck <duffeck@kde.org>
|
|
|
|
*************************************************************************
|
|
* *
|
|
* This library 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 of the License, or (at your option) any later version. *
|
|
* *
|
|
*************************************************************************
|
|
*/
|
|
|
|
#include "logofftask.h"
|
|
#include "transfer.h"
|
|
#include "ymsgtransfer.h"
|
|
#include "yahootypes.h"
|
|
#include "client.h"
|
|
#include <tqstring.h>
|
|
#include <kdebug.h>
|
|
|
|
LogoffTask::LogoffTask(Task* parent) : Task(parent)
|
|
{
|
|
kdDebug(YAHOO_RAW_DEBUG) ;
|
|
}
|
|
|
|
LogoffTask::~LogoffTask()
|
|
{
|
|
}
|
|
|
|
void LogoffTask::onGo()
|
|
{
|
|
kdDebug(YAHOO_RAW_DEBUG) ;
|
|
|
|
YMSGTransfer *t = new YMSGTransfer(Yahoo::ServiceLogoff);
|
|
t->setId( client()->sessionID() );
|
|
send( t );
|
|
|
|
setSuccess();
|
|
}
|