diff options
author | Alexander Gluzsky <sss123next@list.ru> | 2016-03-28 21:44:31 +0000 |
---|---|---|
committer | Alexander Gluzsky <sss123next@list.ru> | 2016-03-28 21:44:31 +0000 |
commit | 701eda4d1a36ea2cf9fc870695ce794ebaf3107d (patch) | |
tree | 369855d5a61458ed2cdce42f6c39ebfef4e4bcf2 /protocols/AimOscar/src/stdafx.h | |
parent | 6544ee462b4d22f1734f5a3f67fd3c56f67e050d (diff) |
aim:
fixed version constant's to allow to connect
changed login host to correct one
todo: find out which encryption is used now (old ssl does not work anymore, i suppouse it's tls, but need to be checked)
git-svn-id: http://svn.miranda-ng.org/main/trunk@16557 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/AimOscar/src/stdafx.h')
-rwxr-xr-x[-rw-r--r--] | protocols/AimOscar/src/stdafx.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/protocols/AimOscar/src/stdafx.h b/protocols/AimOscar/src/stdafx.h index dfb105bd1c..8441113ea4 100644..100755 --- a/protocols/AimOscar/src/stdafx.h +++ b/protocols/AimOscar/src/stdafx.h @@ -162,10 +162,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #define AIM_KEY_NIL "IsNotInList"
#define AIM_DEFAULT_SERVER "slogin.oscar.aol.com"
-#define AIM_DEFAULT_SERVER_NS "login.oscar.aol.com"
+#define AIM_DEFAULT_SERVER_NS "slogin.oscar.aol.com"
#define AIM_PROXY_SERVER "ars.oscar.aol.com"
#define AIM_DEFAULT_PORT 5190
-#define AIM_DEFAULT_SSL_PORT 443
+#define AIM_DEFAULT_SSL_PORT 5190
//Some Defaults for various things
#define DEFAULT_KEEPALIVE_TIMER 39 // secs
@@ -178,12 +178,12 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #define MD5_HASH_LENGTH 16
//Aim Version Stuff
-#define AIM_CLIENT_MAJOR_VERSION 5
-#define AIM_CLIENT_MINOR_VERSION 9
-#define AIM_CLIENT_LESSER_VERSION 0
-#define AIM_CLIENT_BUILD_NUMBER 0x1772
+#define AIM_CLIENT_MAJOR_VERSION 0x0005
+#define AIM_CLIENT_MINOR_VERSION 0x0001
+#define AIM_CLIENT_LESSER_VERSION 0x0000
+#define AIM_CLIENT_BUILD_NUMBER 0x0bdc
#define AIM_CLIENT_ID_NUMBER 0x0109
-#define AIM_CLIENT_DISTRIBUTION_NUMBER 0x0150
+#define AIM_CLIENT_DISTRIBUTION_NUMBER 0x0611
#define AIM_LANGUAGE "en"
#define AIM_COUNTRY "us"
|