2014-09-07 18:54:46 +00:00
|
|
|
#include "vercheckerthread.h"
|
2014-10-26 15:05:51 +00:00
|
|
|
#include "externData.h"
|
2014-11-01 18:31:40 +00:00
|
|
|
#include "resource.h"
|
2014-09-07 18:54:46 +00:00
|
|
|
|
|
|
|
void _checkVer()
|
|
|
|
{
|
|
|
|
Connector con;
|
|
|
|
conSTR CSTR;
|
|
|
|
CSTR.lowerBuff = NULL;
|
|
|
|
CSTR.size = 0;
|
|
|
|
con._EstablishConnection("nesca.d3w.org", 80, "GET /version HTTP/1.1\r\nHost: nesca.d3w.org\r\nX-Nescav3: True\r\n\r\n", &CSTR, 1);
|
|
|
|
|
|
|
|
char *ptr1 = NULL;
|
|
|
|
if(CSTR.lowerBuff != NULL)
|
|
|
|
{
|
|
|
|
if(strstr(CSTR.lowerBuff, "\r\n\r\n") != 0)
|
|
|
|
{
|
|
|
|
ptr1 = strstr(CSTR.lowerBuff, "\r\n\r\n");
|
|
|
|
if(strcmp(gVER, ptr1 + 4) != 0)
|
|
|
|
{
|
|
|
|
stt->doEmitionShowRedVersion();
|
|
|
|
};
|
|
|
|
};
|
|
|
|
delete []CSTR.lowerBuff;
|
|
|
|
CSTR.lowerBuff = NULL;
|
|
|
|
};
|
|
|
|
|
|
|
|
vct->terminate();
|
|
|
|
};
|
|
|
|
|
|
|
|
void VerCheckerThread::run()
|
|
|
|
{
|
|
|
|
_checkVer();
|
|
|
|
};
|