From 4595eb426c6e22eba62642f4f64b451c43964fc0 Mon Sep 17 00:00:00 2001 From: Niklas Date: Fri, 7 Oct 2011 14:07:39 +0200 Subject: renaming of the projekt form LogReceiver into NetworkDiscovery --- LogReceiver/interfaceconfiguration.cpp | 133 --------------------------------- 1 file changed, 133 deletions(-) delete mode 100644 LogReceiver/interfaceconfiguration.cpp (limited to 'LogReceiver/interfaceconfiguration.cpp') diff --git a/LogReceiver/interfaceconfiguration.cpp b/LogReceiver/interfaceconfiguration.cpp deleted file mode 100644 index 8ab7cbb..0000000 --- a/LogReceiver/interfaceconfiguration.cpp +++ /dev/null @@ -1,133 +0,0 @@ -/* - * interfaceconfiguration.cpp - * - * Created on: Sep 2, 2011 - * Author: niklas - */ -#include "interfaceconfiguration.h" - -interfaceconfiguration::interfaceconfiguration() { - -} - -interfaceconfiguration::~interfaceconfiguration() { - // TODO Auto-generated destructor stub -} - -/** - * This method reads the configuration values out of a file. - * - * This method reads the configuration values out of a file. - * The file has to be created before by the customdhcpcd QProcess. - * (Overwrites the old values if they are already present.) - * - * @param pathToConfig - * contains the path to the configuration file. - */ -bool interfaceconfiguration::readConfigOutOfFile(QString pathToConfig) { - QFile file(pathToConfig); - if (file.exists()) { - if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) { - qDebug() << "couldn't open file:" << pathToConfig; - return false; - } - while (!file.atEnd()) { - QString line(file.readLine()); - QStringList splitedLine = line.split("="); - QString name = splitedLine.first().trimmed(); - splitedLine.removeFirst(); - QString values = splitedLine.first().trimmed(); - values.remove(QChar('\'')); - qDebug() << "read config file:" << name << values; - if (name.compare("IPADDR") == 0) { - this->ipAddress = values; - } else if (name.compare("NETMASK") == 0) { - this->netmask = values; - } else if (name.compare("NETWORK") == 0) { - this->network = values; - } else if (name.compare("BROADCAST") == 0) { - this->broadcast = values; - } else if (name.compare("ROUTES") == 0) { - this->routes = values; - } else if (name.compare("GATEWAYS") == 0) { - this->gateways = values; - this->gateway = this->gateways.split(" ").first().trimmed(); - } else if (name.compare("HOSTNAME") == 0) { - this->hostname = values; - } else if (name.compare("DNSSEARCH") == 0) { - this->dnssearch = values; - } else if (name.compare("DNSSERVERS") == 0) { - this->dnsservers = values; - } else if (name.compare("DHCPSID") == 0) { - this->dhcpsid = values; - } else if (name.compare("INTERFACE") == 0) { - this->interface = values; - } else if (name.compare("CLIENTID") == 0) { - this->clientid = values; - } else if (name.compare("DHCPCHADDR") == 0) { - this->dhcpchaddr = values; - } else { - qDebug() << "read unknown name" << name << values; - } - } - } else { - qDebug() << "file doesn't exist:" << pathToConfig; - return false; - } - return true; -} - -QString interfaceconfiguration::getBroadcast() { - return broadcast; -} - -QString interfaceconfiguration::getClientid() { - return clientid; -} - -QString interfaceconfiguration::getDhcpchaddr() { - return dhcpchaddr; -} - -QString interfaceconfiguration::getDhcpsid() { - return dhcpsid; -} -QString interfaceconfiguration::getDnssearch() { - return dnssearch; -} - -QString interfaceconfiguration::getDnsservers() { - return dnsservers; -} - -QString interfaceconfiguration::getGateways() { - return gateways; -} - -QString interfaceconfiguration::getGateway() { - return gateway; -} - -QString interfaceconfiguration::getHostname() { - return hostname; -} - -QString interfaceconfiguration::getInterface() { - return interface; -} - -QString interfaceconfiguration::getIpAddress() { - return ipAddress; -} - -QString interfaceconfiguration::getNetmask() { - return netmask; -} - -QString interfaceconfiguration::getNetwork() { - return network; -} - -QString interfaceconfiguration::getRoutes() { - return routes; -} -- cgit v1.2.3-55-g7522