forked from serafim/dos
msg2
This commit is contained in:
parent
54da7e13b9
commit
070d2d19c3
17
my_msg.cpp
17
my_msg.cpp
|
@ -11,10 +11,6 @@ string bot_token;
|
||||||
int my_msg(const string& msg) {
|
int my_msg(const string& msg) {
|
||||||
cout << msg << endl;
|
cout << msg << endl;
|
||||||
|
|
||||||
if (bot_token.empty() || telegram_id.empty()) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
CURL* curl = curl_easy_init();
|
CURL* curl = curl_easy_init();
|
||||||
if (!curl) return 6;
|
if (!curl) return 6;
|
||||||
|
|
||||||
|
@ -52,12 +48,11 @@ int my_msg(const string& msg) {
|
||||||
if (res != CURLE_OK) return 5;
|
if (res != CURLE_OK) return 5;
|
||||||
|
|
||||||
switch (http_code) {
|
switch (http_code) {
|
||||||
case 200: return 0;
|
case 200: return 0; // Успех
|
||||||
case 401: return 1;
|
case 401: return 1; // Неверный токен
|
||||||
case 400: return 2;
|
case 400: return 2; // Неверный chat_id
|
||||||
case 404: return 3;
|
case 404: return 3; // Неверный URL (бот не найден)
|
||||||
default:
|
default:
|
||||||
if (http_code >= 500) return 4;
|
return 4; // Ошибка сервера (500)
|
||||||
return 4;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue