/* -*- c++ -*- * * network.cpp * * Copyright (C) 2003 Petter E. Stokke * * 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; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * */ #include "network.h" #include "donkeymessage.h" Network::Network(DonkeyMessage* msg, int /*proto*/) { num = msg->readInt32(); name = msg->readString(); enabled = msg->readInt8(); config_file = msg->readString(); uploaded = msg->readInt64(); downloaded = msg->readInt64(); connected = msg->readInt32(); int i, j = msg->readInt16(); int flag = 0; for (i=0; ireadInt16(); } flags = (NetworkFlags)flag; } Network::Network(const Network& nw) { num = nw.networkNo(); name = nw.networkName(); enabled = nw.networkEnabled(); config_file = nw.networkConfigFile(); uploaded = nw.networkUploaded(); downloaded = nw.networkDownloaded(); connected = nw.networkConnected(); flags = nw.networkFlags(); } Network::~Network() { } const int Network::networkNo() const { return num; } const QString& Network::networkName() const { return name; } const bool Network::networkEnabled() const { return enabled; } const QString& Network::networkConfigFile() const { return config_file; } const int64 Network::networkUploaded() const { return uploaded; } const int64 Network::networkDownloaded() const { return downloaded; } const int Network::networkConnected() const { return connected; } const Network::NetworkFlags Network::networkFlags() const { return flags; }