summaryrefslogtreecommitdiffstats
path: root/knetworkconf/knetworkconf/knetworkinterface.h
blob: 859afc6e442d620e0ad49124b600a94d9f19a22d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/***************************************************************************
                          knetworkinterface.h  -  description
                             -------------------
    begin                : Mon Jan 13 2003
    copyright            : (C) 2003 by Juan Luis Baptiste
    email                : jbaptiste@merlinux.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; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef KNETWORKINTERFACE_H
#define KNETWORKINTERFACE_H

#include <qstring.h>

/**This class has all the values associated with a network interface.
  *@author Juan Luis Baptiste
  */

class KNetworkInterface {
  public: 
    KNetworkInterface();
    ~KNetworkInterface();

    QString getBootProto();
    QString getBroadcast();
    QString getDeviceName();
    QString getIpAddress();
    QString getNetmask();
    QString getNetwork();
    QString getOnBoot();
    QString getGateway();
    void setBootProto(const QString &bootProto);
    void setBroadcast(const QString &broadcast);
    void setDeviceName(const QString &deviceName);
    void setIpAddress(const QString &ipAddress);
    void setNetmask(const QString &netmask);
    void setNetwork(const QString &network);
    void setOnBoot(const QString &onBoot);
    void setGateway(const QString &gateway);
    bool isActive();
    void setActive(bool active);
    void setMacAddress(const QString &addr);
    QString getMacAddress();
    void setDescription(const QString &desc);
    QString getDescription();
    void setType(const QString &type);
    QString getType();
    
  private: // Private attributes
    /** Interface name (i.e. eth0, eth1, etc). */
    QString deviceName;
    /** Boot protocol of the device (static, dhcp). */
    QString bootProto;
    /** IPv4 address of the interface. */
    QString ipAddress;
    /** The Netmask. */
    QString netmask;
    /** The network. */
    QString network;
    /** The broadcast. */
    QString broadcast;
    /** thetermines if this device is configured at boot time. */
    QString onBoot;
    /** default gateway for this device. */
    QString gateway;
    bool active;
    /** The MAC address. */
    QString hwAddress;
    /** A little description about the network device. */
    QString description;
    /** Type of interface (ethernet,wireless,loopback or modem)*/
    QString type;
};

#endif