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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
|
/*
Miranda IM: the free IM client for Microsoft* Windows*
Copyright 2000-2006 Miranda ICQ/IM project,
all portions of this codebase are copyrighted to the people
listed in contributors.txt.
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.
This program 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 program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "globals.h"
long *reconnectOptsPerm=0;
long *reconnectOpts=0;
unsigned int *protoOfflineTimes=0;
int *protoStatus=0; //0:OK; :1:couning; 2:fatalError; 4:reconnectForced
void LoginAck(int protoIndex, ACKDATA * ack)
{
#ifdef AALOG
char log[1024];
sprintf(log,"LoginAck: %s: result: %d; hProcess: %d; lParam: %d;" ,
accounts[protoIndex]->szModuleName,
ack->result,ack->hProcess,ack->lParam
// CallService(MS_CLIST_GETSTATUSMODEDESCRIPTION, (WPARAM)ack->hProcess, 0),
// CallService(MS_CLIST_GETSTATUSMODEDESCRIPTION, (WPARAM)ack->lParam, 0)
);
CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)log);
#endif
if (ack->result == ACKRESULT_FAILED) switch (ack->lParam){
case LOGINERR_WRONGPASSWORD:
case LOGINERR_BADUSERID:
case LOGINERR_WRONGPROTOCOL:
case LOGINERR_OTHERLOCATION:
{
#ifdef AALOG
CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)"LoginAck: FatalError occured");
#endif
protoStatus[protoIndex]|=2;
protoOfflineTimes[protoIndex]=0;
return;
break;
}
}
}
void ProtocolsProc(int protoIndex, ACKDATA * ack)
//ProtoProc: ICQ-AUX: result: 0; hProcess: Online; lParam: Offline;
{
#ifdef AALOG
char log[1024];
sprintf(log,"ProtoProc: %s: result: %d; hProcess: %s; lParam: %s; RequestedStatus: %s; AutoAwayStatus: %s" ,
accounts[protoIndex]->szModuleName,
ack->result,
CallService(MS_CLIST_GETSTATUSMODEDESCRIPTION, (WPARAM)ack->hProcess, 0),
CallService(MS_CLIST_GETSTATUSMODEDESCRIPTION, (WPARAM)ack->lParam, 0),
CallService(MS_CLIST_GETSTATUSMODEDESCRIPTION, (WPARAM)reqStatus[protoIndex], 0),
CallService(MS_CLIST_GETSTATUSMODEDESCRIPTION, (WPARAM)courAwayStatus[protoIndex], 0)
);
CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)log);
#endif
protoOfflineTimes[protoIndex]=0;
if (ack->lParam==ID_STATUS_OFFLINE) protoStatus[protoIndex]|=1; //will be counting, keeping eventual "FatalError" Flag
else protoStatus[protoIndex] = 0; //We are not offline or are connecting -> clear counting and "FatalError"
#ifdef AALOG
sprintf(log,"ProtoProc: %s: Result: ProtoStatus: %d",
accounts[protoIndex]->szModuleName,protoStatus[protoIndex]);
CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)log);
#endif
}
#ifdef AALOG
#define AALOG2
#endif
int IsReconnectForbidden(int protoIndex){ //0 if it permitted
#ifdef AALOG2
char str[256];
#endif
if (!(protoStatus[protoIndex]&1)) return 1; //Proto is not counting or is not offline
protoOfflineTimes[protoIndex] += 2; //the timer ticks every 2 seconds
if (protoStatus[protoIndex]&4) { // Reconnect is forced
#ifdef AALOG2
sprintf(str,"ReconnForbiddden: %s reconnection is forced.",accounts[protoIndex]->szModuleName);
CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)str);
#endif
return 0;
}
#ifdef AALOG2
sprintf(str,"ReconnForbiddden: %s is Offline and counting: %d to %d",accounts[protoIndex]->szModuleName,protoOfflineTimes[protoIndex],HIWORD(reconnectOptsPerm[protoIndex]));
CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)str);
#endif
if (protoOfflineTimes[protoIndex] <= HIWORD(reconnectOptsPerm[protoIndex])) return 2; // not yet
if (!(reconnectOptsPerm[protoIndex]&aa_ReconnectBitsEnabled)) return 3; //reconnect is disabled
#ifdef AALOG2
sprintf(str,"ReconnForbiddden: %s has ReconnectEnabled",accounts[protoIndex]->szModuleName);
CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)str);
#endif
if (protoStatus[protoIndex]&2) { //FatalError?
#ifdef AALOG2
sprintf(str,"ReconnForbiddden: %s has FatalError; ProtoStatus: %d",accounts[protoIndex]->szModuleName,protoStatus[protoIndex]);
CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)str);
#endif
if (reconnectOptsPerm[protoIndex]&aa_ReconnectNotFatalError) {
#ifdef AALOG2
sprintf(str,"ReconnForbiddden: %s has DontReconnectOnFatalError",accounts[protoIndex]->szModuleName);
CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)str);
#endif
return 4; //exit if "dontReconnectOnFatalError" enabled
#ifdef AALOG2
} else {
sprintf(str,"ReconnForbiddden: %s has FatalError but DontReconnectOnFatalError disabled",accounts[protoIndex]->szModuleName);
CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)str);
#endif
}
} //if FatalError
if (IsStatusBitSet(courAwayStatus[protoIndex],LOWORD(reconnectOptsPerm[protoIndex]))){ //is reconnect permited on this lastonline status?
//reconnecting...
#ifdef AALOG2
sprintf(str,"ReconnForbiddden: %s Reconnect permitted",accounts[protoIndex]->szModuleName);
CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)str);
#endif
return 0; // reconnect is permitted
#ifdef AALOG2
} else {
sprintf(str,"ReconnForbiddden: %s Reconnecting to %s(%d) was not permited by %d",
accounts[protoIndex]->szModuleName,
CallService(MS_CLIST_GETSTATUSMODEDESCRIPTION, (WPARAM)courAwayStatus[protoIndex], 0),
courAwayStatus[protoIndex],
reconnectOptsPerm[protoIndex]);
CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)str);
#endif
}
return 5; // forbidden because current status is disabled
}
#undef AALOG2
void TimerProc()
{
#ifdef AALOG
char str[256];
#endif
int i;
for (i=0;i<protoCount;i++){
if (isInterestingProto(i)){
#ifdef AALOG1
sprintf(str,"TimerProc: %s is a proto",accounts[i]->szModuleName);
CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)str);
#endif
if (protoStatus[i]&1) {
#ifdef AALOG1
sprintf(str,"TimerProc: %s is Counting: AwayStatus: %s; reqStatus: %s;",
accounts[i]->szModuleName,
CallService(MS_CLIST_GETSTATUSMODEDESCRIPTION, (WPARAM)courAwayStatus[i], 0),
CallService(MS_CLIST_GETSTATUSMODEDESCRIPTION, (WPARAM)reqStatus[i], 0)
);
CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)str);
#endif
if ((courAwayStatus[i]==ID_STATUS_OFFLINE)||(reqStatus[i]==ID_STATUS_OFFLINE)){
protoStatus[i]&=2; //keeping fatalerror if any
#ifdef AALOG
sprintf(str,"TimerProc: %s Counting Cancelled: AwayStatus: %s; reqStatus: %s;",
accounts[i]->szModuleName,
CallService(MS_CLIST_GETSTATUSMODEDESCRIPTION, (WPARAM)courAwayStatus[i], 0),
CallService(MS_CLIST_GETSTATUSMODEDESCRIPTION, (WPARAM)reqStatus[i], 0)
);
CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)str);
#endif
}
}
switch (IsReconnectForbidden(i)) {
#ifdef AALOG1
case 1 : sprintf(str,"IsReconnectForbidden: %s is not counting or is not offline",accounts[i]->szModuleName); break;
case 2 : sprintf(str,"IsReconnectForbidden: %s it is too early to reconnect",accounts[i]->szModuleName); break;
case 3 : sprintf(str,"IsReconnectForbidden: %s has reconnect disabled",accounts[i]->szModuleName); break;
case 4 : sprintf(str,"IsReconnectForbidden: %s fatal error and DontReconnect enabled",accounts[i]->szModuleName); break;
case 5 : sprintf(str,"IsReconnectForbidden: %s current AAStatus should not be reconnected",accounts[i]->szModuleName); break;
#endif
case 0 :
#ifdef AALOG
sprintf(str,"IsReconnectForbidden: %s is permited to reconnect",accounts[i]->szModuleName);
#endif
CallProtoService(accounts[i]->szModuleName, PS_SETSTATUS, courAwayStatus[i], 0);
break;
default :
#ifdef AALOG
sprintf(str,"IsReconnectForbidden: %s Surprising answer",accounts[i]->szModuleName);
#endif
break;
}
#ifdef AALOG1
CallService("Netlib/Log" ,(WPARAM)hNetlib ,(LPARAM)str);
#endif
}//protoType protocol
}//for
}
void moveScrollBarEvent(HWND hwndDlg){
TCHAR str[256];
int slide = SendDlgItemMessage(hwndDlg,IDC_RECONNECTSLIDER,TBM_GETPOS,0,0);
int delay = GetReconnectDelayFromSlider(slide);
ShowWindow(GetDlgItem(hwndDlg, IDC_RECONNECTWARNING),GetStringFromDelay(str, delay)?SW_SHOW:SW_HIDE);
SetDlgItemText(hwndDlg,IDC_ENABLERECONNECT,str);
reconnectOpts[courProtocolSelection] = SetBits(reconnectOpts[courProtocolSelection],aa_ReconnectBitsDelay,delay);
}
LRESULT SetDlgItemsReconnect(HWND hwndDlg, int coursel){
BOOL enabledReconnect = GetBits(reconnectOpts[coursel],aa_ReconnectBitsEnabled);
BOOL dontReconnectOnFatalError = GetBits(reconnectOpts[coursel],aa_ReconnectNotFatalError);
int i =0;
for (i=0;i<numStatuses;i++){
BOOL bita = IsStatusBitSet(aa_Status[i],protoModes[coursel])==0;
BOOL bitr = IsStatusBitSet(aa_Status[i],reconnectOpts[coursel])>0;
EnableWindow(GetDlgItem(hwndDlg, aa_Status[i]+0x20), enabledReconnect);
StrikeOut(hwndDlg,aa_Status[i]+0x20,bita);
CheckDlgButton(hwndDlg, aa_Status[i]+0x20, bitr?BST_CHECKED:BST_UNCHECKED );
}
SendDlgItemMessage(hwndDlg,IDC_RECONNECTSLIDER,TBM_SETPOS,TRUE,GetSliderFromReconnectDelay(GetBits(reconnectOpts[coursel],aa_ReconnectBitsDelay)));
moveScrollBarEvent(hwndDlg);
CheckDlgButton(hwndDlg, IDC_ENABLERECONNECT, enabledReconnect?BST_CHECKED:BST_UNCHECKED );
CheckDlgButton(hwndDlg, IDC_NOTFATALERROR, dontReconnectOnFatalError?BST_CHECKED:BST_UNCHECKED );
EnableWindow(GetDlgItem(hwndDlg, IDC_RECONNECTSLIDER), enabledReconnect);
EnableWindow(GetDlgItem(hwndDlg, IDC_NOTFATALERROR), enabledReconnect);
CheckDlgButton(hwndDlg, IDC_KEEPMAINSTATUSOFFLINE, (idleOpts&KeepMainStatusOffline)? BST_CHECKED : BST_UNCHECKED);
return TRUE;
}
INT_PTR CALLBACK DlgProcOptsReconnect(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam)
{
switch (msg) {
case WM_INITDIALOG:
TranslateDialogDefault(hwndDlg);
SetDlgItemsReconnect(hwndDlg, courProtocolSelection);
return TRUE;
case WM_USER+5:
{
int thebit = numStatuses-StatusToProtoIndex(LOWORD(lParam),allprotomodes);
int value = IsDlgButtonChecked(hwndDlg, LOWORD(lParam)+32)==BST_CHECKED;
thebit = 1<<thebit;
reconnectOpts[courProtocolSelection] =
SetBits(reconnectOpts[courProtocolSelection],
thebit,
value);
break;
}
case WM_USER+6:
{
reconnectOpts[courProtocolSelection] = SetBits(reconnectOpts[courProtocolSelection],aa_ReconnectBitsEnabled,wParam);
SetDlgItemsReconnect(hwndDlg,courProtocolSelection);
break;
}
case WM_USER+7:
{
reconnectOpts[courProtocolSelection] = SetBits(reconnectOpts[courProtocolSelection],aa_ReconnectNotFatalError,wParam);
SetDlgItemsReconnect(hwndDlg,courProtocolSelection);
break;
}
case WM_USER+8:
{
idleOpts = SetBits(idleOpts,KeepMainStatusOffline,wParam);
break;
}
case WM_COMMAND:
switch (LOWORD(wParam)) {
case ID_STATUS_AWAY+32:
case ID_STATUS_DND+32:
case ID_STATUS_NA+32:
case ID_STATUS_OCCUPIED+32:
case ID_STATUS_INVISIBLE+32:
case ID_STATUS_ONTHEPHONE+32:
case ID_STATUS_OUTTOLUNCH+32:
case ID_STATUS_ONLINE+32:
case ID_STATUS_FREECHAT+32:
case ID_STATUS_OFFLINE+32:
SendMessage(hwndDlg, WM_USER+5,0,(wParam-32)|0x00100000);
break;
case IDC_ENABLERECONNECT:
SendMessage(hwndDlg, WM_USER+6, (WPARAM)IsDlgButtonChecked(hwndDlg, IDC_ENABLERECONNECT) == BST_CHECKED, 0);
break;
case IDC_NOTFATALERROR:
SendMessage(hwndDlg, WM_USER+7, (WPARAM)IsDlgButtonChecked(hwndDlg, IDC_NOTFATALERROR) == BST_CHECKED, 0);
break;
case IDC_KEEPMAINSTATUSOFFLINE:
SendMessage(hwndDlg, WM_USER+8, (WPARAM)IsDlgButtonChecked(hwndDlg, IDC_KEEPMAINSTATUSOFFLINE) == BST_CHECKED, 0);
break;
}
if (HIWORD(wParam)==BN_CLICKED)
{
SendMessage(GetParent(hwndDlg), PSM_CHANGED, (unsigned int)hwndDlg, 0);
}
break;
case WM_NOTIFY:
switch (((LPNMHDR) lParam)->idFrom) {
case 0:
switch (((LPNMHDR) lParam)->code) {
case PSN_APPLY: {
return TRUE;
}
}
break;
}
break;
case WM_HSCROLL:
if((HWND)lParam == GetDlgItem(hwndDlg, IDC_RECONNECTSLIDER)) {
moveScrollBarEvent(hwndDlg);
if (LOWORD(wParam) == SB_ENDSCROLL) SendMessage(GetParent(hwndDlg), PSM_CHANGED, (unsigned int)hwndDlg, 0);
}
break;
case WM_DESTROY:
break;
}
return FALSE;
}
|