blob: 8ae0f1d467c71d430724621a934e293b8767b7ff (
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
|
/*
smpppdstate.cpp
Copyright (c) 2006 by Heiko Schaefer <heiko@rangun.de>
Kopete (c) 2002-2006 by the Kopete developers <kopete-devel@kde.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; version 2 of the License. *
* *
*************************************************************************
*/
#include <kstreamsocket.h>
#include "smpppdclient.h"
#include "smpppdstate.h"
using namespace SMPPPD;
State::State() {}
State::~State() {}
TQStringList State::read(Client * client) const {
return client->read();
}
void State::write(Client * client, const char * cmd) {
client->write(cmd);
}
void State::changeState(Client * client, State * state) {
client->changeState(state);
}
KNetwork::KStreamSocket * State::socket(Client * client) const {
return client->m_sock;
}
TQString State::password(Client * client) const {
return client->m_password;
}
void State::setPassword(Client * client, const TQString& pass) {
client->m_password = pass;
}
void State::setServerID(Client * client, const TQString& id) {
client->m_serverID = id;
}
void State::setServerVersion(Client * client, const TQString& ver) {
client->m_serverVer = ver;
}
void State::setSocket(Client * client, KNetwork::KStreamSocket * sock) {
client->m_sock = sock;
}
bool State::connect(Client * /* client */, const TQString& /* server */, uint /* port */) {
return false;
}
void State::disconnect(Client * /* client */) {}
TQStringList State::getInterfaceConfigurations(Client * /* client */) {
return TQStringList();
}
bool State::statusInterface(Client * /* client */, const TQString& /* ifcfg */) {
return false;
}
|