diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-04-13 11:24:22 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-04-13 11:24:22 +0000 |
commit | 6647f383bff7d38db530c623caae63d1f50cbc71 (patch) | |
tree | 8c18f355e4567e28054187b83d4d789db71a4e35 /protocols/Tox/src/common.h | |
parent | 1ab25705c372fc7436a49723b8db0e59fc0de6c0 (diff) |
Tox:
- fixed incoming message encoding
- added support "force ANSI" flag (please, don't use it)
git-svn-id: http://svn.miranda-ng.org/main/trunk@12782 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/common.h')
-rw-r--r-- | protocols/Tox/src/common.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/Tox/src/common.h b/protocols/Tox/src/common.h index d5450728cc..ae093169bf 100644 --- a/protocols/Tox/src/common.h +++ b/protocols/Tox/src/common.h @@ -61,8 +61,8 @@ extern HINSTANCE g_hInstance; #define TOX_ERROR -1
-#define TOX_MAX_CONNECT_RETRIES 200
-#define TOX_MAX_DISCONNECT_RETRIES 200
+#define TOX_MAX_CONNECT_RETRIES 300
+#define TOX_MAX_DISCONNECT_RETRIES 300
#define TOX_INI_PATH "%miranda_path%\\Plugins\\tox.ini"
@@ -81,7 +81,7 @@ extern HINSTANCE g_hInstance; #define TOX_DB_EVENT_TYPE_ACTION 10001
-#define TOX_FILE_BLOCK_SIZE 1024 * 1024
+#define TOX_MAX_AVATAR_SIZE 1024 * 1024
extern HMODULE g_hToxLibrary;
|