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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
/* Copyright (C) 2002-2003 RealVNC Ltd. All Rights Reserved.
*
* This 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.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
* USA.
*/
#ifndef __RFB_LISTCONNINFO_INCLUDED__
#define __RFB_LISTCONNINFO_INCLUDED__
#include <list>
#include <rfb/util.h>
namespace winvnc {
struct ListConnInfo {
ListConnInfo() : disableClients(false) {}
void Clear() {
conn.clear();
IP_address.clear();
status.clear();
}
bool Empty() { return conn.empty();}
void iBegin() {
ci = conn.begin();
Ii = IP_address.begin();
si = status.begin();
}
bool iEnd() { return ci == conn.end();}
void iNext() {
ci++;
Ii++;
si++;
}
void addInfo(void* Conn, char* IP, int Status) {
conn.push_back(Conn);
IP_address.push_back(rfb::strDup(IP));
status.push_back(Status);
}
void iGetCharInfo(char* buf[2]) {
buf[0] = *Ii;
switch (*si) {
case 0:
buf[1] = rfb::strDup("Full control");
break;
case 1:
buf[1] = rfb::strDup("View only");
break;
case 2:
buf[1] = rfb::strDup("Stop updating");
break;
default:
buf[1] = rfb::strDup("Unknown");
}
}
void* iGetConn() { return *ci;}
int iGetStatus() { return *si;}
void iSetStatus(int istatus) { *si = istatus;}
void Copy(ListConnInfo* InputList) {
Clear();
if (InputList->Empty()) return;
for (InputList->iBegin(); !InputList->iEnd(); InputList->iNext()) {
iAdd(InputList);
}
setDisable(InputList->getDisable());
}
void iAdd (ListConnInfo* InputList) {
char* buf[2];
InputList->iGetCharInfo(buf);
addInfo(InputList->iGetConn(), buf[0], InputList->iGetStatus());
}
void setDisable(bool disable) {disableClients = disable;}
bool getDisable() {return disableClients;}
void setAllStatus(int stat) {
std::list<int>::iterator st;
for (st = status.begin(); st != status.end(); st++)
*st = stat;
}
private:
std::list<void*> conn;
std::list<char*> IP_address;
std::list<int> status;
std::list<void*>::iterator ci;
std::list<char*>::iterator Ii;
std::list<int>::iterator si;
bool disableClients;
};
};
#endif
|