summaryrefslogtreecommitdiffstats
path: root/knetworkconf/knetworkconf/knetworkinterface.h
blob: 4a6464110ddb282c43802f2c0d56c27ecfbc837e (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 <tqstring.h>

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

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

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

#endif