summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/network/network_NN.cpp
blob: a6b15c69b74633328c6bde251ed56043cd1d6ab5 (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
#include "network_NN.h"
#include "network_NNI.h"

static const char * NetworkNeeds[] = 
    { "device", 
      0
    };

/**
 * Constructor, find all of the possible interfaces
 */
NetworkNetNode::NetworkNetNode() : ANetNode() {
}

/**
 * Delete any interfaces that we own.
 */
NetworkNetNode::~NetworkNetNode(){
}

const QString NetworkNetNode::nodeDescription(){
      return tr("\
<p>Sets up TCP/IP options.</p>\
<p>Use this to configure the TCP/IP protocol</p>\
"
);
}

ANetNodeInstance * NetworkNetNode::createInstance( void ) {
      return new ANetwork( this );
}

const char ** NetworkNetNode::needs( void ) {
      return NetworkNeeds;
}

const char * NetworkNetNode::provides( void ) {
      return "connection";
}

bool NetworkNetNode::generateProperFilesFor( 
            ANetNodeInstance * ) {
      return 1;
}

bool NetworkNetNode::hasDataFor( const QString & S, bool DS ) {
      if( ! DS && S == "interfaces" ) {
        return 1;
      }
      return 0;
}

bool NetworkNetNode::generateDataForCommonFile( 
                                SystemFile & S, 
                                long DevNr,
                                ANetNodeInstance * NNI ) {
      return ((ANetwork *)NNI)->generateDataForCommonFile(S, DevNr);
}

bool NetworkNetNode::generateDeviceDataForCommonFile( 
                                SystemFile & , 
                                long ,
                                ANetNodeInstance * ) {
      return 1;
}

extern "C" {
void create_plugin( QList<ANetNode> & PNN ) {
      PNN.append( new NetworkNetNode() );
}
}