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.
105 lines
2.8 KiB
105 lines
2.8 KiB
/*
|
|
smpppdready.cpp
|
|
|
|
Copyright (c) 2006 by Heiko Schaefer <heiko@rangun.de>
|
|
|
|
Kopete (c) 2002-2006 by the 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 General Public License as published by *
|
|
* the Free Software Foundation; version 2 of the License. *
|
|
* *
|
|
*************************************************************************
|
|
*/
|
|
|
|
#include <tqregexp.h>
|
|
|
|
#include <kdebug.h>
|
|
#include <kstreamsocket.h>
|
|
|
|
#include "smpppdunsettled.h"
|
|
#include "smpppdclient.h"
|
|
#include "smpppdready.h"
|
|
|
|
using namespace SMPPPD;
|
|
|
|
Ready * Ready::m_instance = NULL;
|
|
|
|
Ready::Ready() {}
|
|
|
|
Ready::~Ready() {}
|
|
|
|
Ready * Ready::instance() {
|
|
if(!m_instance) {
|
|
m_instance = new Ready;
|
|
}
|
|
|
|
return m_instance;
|
|
}
|
|
|
|
void Ready::disconnect(Client * client) {
|
|
kdDebug(14312) << k_funcinfo << endl;
|
|
if(socket(client)) {
|
|
socket(client)->flush();
|
|
socket(client)->close();
|
|
|
|
delete socket(client);
|
|
setSocket(client, NULL);
|
|
|
|
setServerID(client, TQString());
|
|
setServerVersion(client, TQString());
|
|
}
|
|
|
|
changeState(client, Unsettled::instance());
|
|
}
|
|
|
|
TQStringList Ready::getInterfaceConfigurations(Client * client) {
|
|
|
|
TQStringList ifcfgs;
|
|
|
|
// we want all ifcfgs
|
|
kdDebug(14312) << k_funcinfo << "smpppd req: list-ifcfgs" << endl;
|
|
write(client, "list-ifcfgs");
|
|
TQStringList stream = read(client);
|
|
kdDebug(14312) << k_funcinfo << "smpppd ack: " << stream[0] << endl;
|
|
if(stream[0].startsWith("ok")) {
|
|
// we have now a TQStringList with all ifcfgs
|
|
// we extract them and put them in the global ifcfgs-list
|
|
// stream[1] tells us how many ifcfgs are coming next
|
|
TQRegExp numIfcfgsRex("^BEGIN IFCFGS ([0-9]+).*");
|
|
if(numIfcfgsRex.exactMatch(stream[1])) {
|
|
int count_ifcfgs = numIfcfgsRex.cap(1).toInt();
|
|
kdDebug(14312) << k_funcinfo << "ifcfgs: " << count_ifcfgs << endl;
|
|
|
|
for(int i = 0; i < count_ifcfgs; i++) {
|
|
TQRegExp ifcfgRex("^i \"(ifcfg-[a-zA-Z]+[0-9]+)\".*");
|
|
if(ifcfgRex.exactMatch(stream[i+2])) {
|
|
ifcfgs.push_back(ifcfgRex.cap(1));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return ifcfgs;
|
|
}
|
|
|
|
bool Ready::statusInterface(Client * client, const TQString& ifcfg) {
|
|
|
|
TQString cmd = "list-status " + ifcfg;
|
|
|
|
write(client, cmd.latin1());
|
|
socket(client)->waitForMore(0);
|
|
|
|
TQStringList stream = read(client);
|
|
|
|
if(stream[0].startsWith("ok")) {
|
|
if(stream[2].startsWith("status connected")) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|