File tree 3 files changed +12
-7
lines changed
3 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 2
2
3
3
4
4
1 VERSIONINFO
5
- FILEVERSION 0,9,0 ,0
6
- PRODUCTVERSION 0,9,0 ,0
5
+ FILEVERSION 0,8,4 ,0
6
+ PRODUCTVERSION 0,8,4 ,0
7
7
FILETYPE 1
8
8
FILESUBTYPE 0x0L
9
9
BEGIN
@@ -14,12 +14,12 @@ BEGIN
14
14
VALUE "Comments", "3proxy - tiny proxy server, http://3proxy.ru/\0"
15
15
VALUE "CompanyName", "Vladimir Dubrovin\0"
16
16
VALUE "FileDescription", "3proxy - tiny proxy server\0"
17
- VALUE "FileVersion", "0.9-devel-" BUILDDATE " \0"
17
+ VALUE "FileVersion", "0.8.4 \0"
18
18
VALUE "InternalName", "3proxy\0"
19
19
VALUE "LegalCopyright", "Copyright (C) 2002-2016 Vladimir Dubrovin\0"
20
20
VALUE "OriginalFilename", "3proxy.exe\0"
21
21
VALUE "ProductName", "3proxy\0"
22
- VALUE "ProductVersion", "0.9-devel-" BUILDDATE " \0"
22
+ VALUE "ProductVersion", "0.8.4 \0"
23
23
END
24
24
END
25
25
BLOCK "VarFileInfo"
Original file line number Diff line number Diff line change @@ -326,8 +326,13 @@ static struct filter ssl_filter = {
326
326
};
327
327
328
328
int mitm = 0 ;
329
+ int ssl_inited = 0 ;
329
330
330
331
static int h_mitm (int argc , unsigned char * * argv ){
332
+ if (!ssl_inited ) {
333
+ ssl_init ();
334
+ ssl_inited = 1 ;
335
+ }
331
336
if ((mitm & 1 )) return 1 ;
332
337
if (mitm ) usleep (100 * SLEEPTIME );
333
338
ssl_filter .next = pl -> conf -> filters ;
@@ -389,9 +394,9 @@ __declspec(dllexport)
389
394
}
390
395
else {
391
396
ssl_release ();
397
+ ssl_inited = 0 ;
392
398
}
393
399
394
- ssl_init ();
395
400
tcppmfunc = (PROXYFUNC )pl -> findbyname ("tcppm" );
396
401
if (!tcppmfunc ){return 13 ;}
397
402
proxyfunc = (PROXYFUNC )pl -> findbyname ("proxy" );
Original file line number Diff line number Diff line change 1
- #define VERSION "3proxy-0.9-devel "
2
- #define BUILDDATE "160128011858 "
1
+ #define VERSION "3proxy-0.8.4 "
2
+ #define BUILDDATE "160222003547 "
You can’t perform that action at this time.
0 commit comments