mirror of
https://github.com/NekoX-Dev/NekoX.git
synced 2024-11-10 23:29:00 +01:00
42 lines
761 B
C++
42 lines
761 B
C++
/*
|
|
* This is the source code of tgnet library v. 1.1
|
|
* It is licensed under GNU GPL v. 2 or later.
|
|
* You should have received a copy of the license in this archive (see LICENSE).
|
|
*
|
|
* Copyright Nikolai Kudashov, 2015-2018.
|
|
*/
|
|
|
|
#ifndef PROXYCHECKINFO_H
|
|
#define PROXYCHECKINFO_H
|
|
|
|
#include <sstream>
|
|
#include "Defines.h"
|
|
|
|
#ifdef ANDROID
|
|
#include <jni.h>
|
|
#endif
|
|
|
|
class ProxyCheckInfo {
|
|
|
|
public:
|
|
~ProxyCheckInfo();
|
|
|
|
int32_t connectionNum = 0;
|
|
int32_t requestToken = 0;
|
|
std::string address;
|
|
uint16_t port = 1080;
|
|
std::string username;
|
|
std::string password;
|
|
std::string secret;
|
|
int64_t pingId = 0;
|
|
onRequestTimeFunc onRequestTime;
|
|
int32_t instanceNum = 0;
|
|
|
|
#ifdef ANDROID
|
|
jobject ptr1 = nullptr;
|
|
#endif
|
|
};
|
|
|
|
|
|
#endif
|