blob: 8f1ac32e07f6390cba3ede467be67f8e6028657f (
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
|
/*
smpppdstate.h
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. *
* *
*************************************************************************
*/
#ifndef SMPPPDSTATE_H
#define SMPPPDSTATE_H
#include <tqstringlist.h>
namespace SMPPPD {
class Client;
/**
@author Heiko Schaefer <heiko@rangun.de>
*/
class State {
State(const State&);
State& operator=(const State&);
public:
State();
virtual ~State();
virtual bool connect(Client * client, const TQString& server, uint port = 3185);
virtual void disconnect(Client * client);
virtual TQStringList getInterfaceConfigurations(Client * client);
virtual bool statusInterface(Client * client, const TQString& ifcfg);
protected:
TQStringList read(Client * client) const;
void write(Client * client, const char * cmd);
void changeState(Client * client, State * state);
KNetwork::KStreamSocket * socket(Client * client) const;
void setSocket(Client * client, KNetwork::KStreamSocket * sock);
TQString password(Client * client) const;
void setPassword(Client * client, const TQString& pass);
void setServerID(Client * client, const TQString& id);
void setServerVersion(Client * client, const TQString& ver);
};
};
#endif
|