This commit is contained in:
cora32 2015-04-04 09:24:28 +03:00
parent a055872166
commit 82111701a7
4 changed files with 8 additions and 5 deletions

View File

@ -185,7 +185,6 @@ int Connector::nConnect(const char* ip, const int port, std::string *buffer,
Activity += buffer->size();
return buffer->size();
} else {
if (gMode == 1 && res == 6) return - 2;
if (res != 28 &&
res != 6 &&
res != 7 &&
@ -219,6 +218,9 @@ int Connector::nConnect(const char* ip, const int port, std::string *buffer,
else stt->doEmitionRedFoundData("CURL error: (" + QString::number(res) + ") " +
QString(ip) + ":" + QString::number(port));
}
else if (gMode == 1 && res == 6) {
return -2;
}
if(res == 23 && buffer->size() > 0) {
if (MapWidgetOpened) stt->doEmitionAddIncData(QString(ip), QString("[OVERFLOW]"));

View File

@ -804,11 +804,12 @@ page does not exist
дешёв
pm2-web
доставка
заказать доставку
заказ
цена
заработок в сети
знакомства
истек срок
карикатуры
карикатур
конкурс
контакты
кухни

View File

@ -1625,7 +1625,7 @@ void _connect() {
std::unique_lock<std::mutex> lk(Threader::m);
Threader::cv.wait(lk, []{return Threader::ready; });
if (Threader::threadId > gThreads || !globalScanFlag) {
if (!globalScanFlag || Threader::threadId > gThreads) {
--Threader::threadId;
Threader::ready = false;
lk.unlock();

View File

@ -1 +1 @@
24B83-8A5
24B84-386