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.
62 lines
1.2 KiB
62 lines
1.2 KiB
/**********************************************************************
|
|
|
|
The IO LAG Controller
|
|
|
|
$$Id$$
|
|
|
|
**********************************************************************/
|
|
|
|
#include "ioLAG.h"
|
|
#include "control_message.h"
|
|
#include "ksircprocess.h"
|
|
|
|
#include <kdebug.h>
|
|
|
|
KSircIOLAG::KSircIOLAG(KSircProcess *_proc)
|
|
: TQObject(),
|
|
KSircMessageReceiver(_proc)
|
|
{
|
|
proc = _proc;
|
|
setBroadcast(FALSE);
|
|
startTimer(30000);
|
|
// startTimer(5000);
|
|
//(proc->getWindowList())["!all"]->control_message(SET_LAG, "99");
|
|
}
|
|
|
|
|
|
KSircIOLAG::~KSircIOLAG()
|
|
{
|
|
killTimers();
|
|
}
|
|
|
|
void KSircIOLAG::sirc_receive(TQCString str, bool)
|
|
{
|
|
|
|
if(str.contains("*L*")){
|
|
int s1, s2;
|
|
s1 = str.find("*L* ") + 4;
|
|
s2 = str.length();
|
|
if(s1 < 0 || s2 < 0){
|
|
kdDebug(5008) << "Lag mesage broken: " << str << endl;
|
|
return;
|
|
}
|
|
TQString lag = str.mid(s1, s2 - s1);
|
|
// cerr << "Lag: " << str << endl;
|
|
// cerr << "Setting lag to: " << lag << endl;
|
|
(proc->getWindowList())["!all"]->control_message(SET_LAG, lag);
|
|
}
|
|
|
|
}
|
|
|
|
void KSircIOLAG::control_message(int, TQString)
|
|
{
|
|
}
|
|
|
|
void KSircIOLAG::timerEvent ( TQTimerEvent * )
|
|
{
|
|
TQCString cmd = "/lag\n";
|
|
emit outputLine(cmd);
|
|
}
|
|
|
|
#include "ioLAG.moc"
|