diff options
author | George Hazan <george.hazan@gmail.com> | 2015-01-30 08:46:22 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-01-30 08:46:22 +0000 |
commit | eaa183e14a412210dac9320cdaa2114c555a24ac (patch) | |
tree | c69e683797fa80443a2c82b6df6335f452caa5b9 /protocols/Gadu-Gadu | |
parent | bd33df2d4b9534d2241283f2b20d83f5b1811ebc (diff) |
Miranda HTTP user agent unification (not to have problems with sites)
git-svn-id: http://svn.miranda-ng.org/main/trunk@11955 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Gadu-Gadu')
-rw-r--r-- | protocols/Gadu-Gadu/src/avatar.cpp | 2 | ||||
-rw-r--r-- | protocols/Gadu-Gadu/src/libgadu/libgadu.h | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/protocols/Gadu-Gadu/src/avatar.cpp b/protocols/Gadu-Gadu/src/avatar.cpp index c43f9e0dfa..a28c471e2a 100644 --- a/protocols/Gadu-Gadu/src/avatar.cpp +++ b/protocols/Gadu-Gadu/src/avatar.cpp @@ -424,7 +424,7 @@ void __cdecl GGPROTO::setavatarthread(void *param) httpHeaders[5].szName = "User-Agent";
httpHeaders[5].szValue = "avatars to avatars";
httpHeaders[6].szName = "From";
- httpHeaders[6].szValue = "Mozilla/5.0 (Windows; U; Windows NT 5.1; pl-PL) AppleWebKit/533.3 (KHTML, like Gecko) Qt/4.7.1 Safari/533.3";
+ httpHeaders[6].szValue = NETLIB_USER_AGENT;
httpHeaders[7].szName = "Content-type";
httpHeaders[7].szValue = "application/x-www-form-urlencoded; charset=utf-8";
httpHeaders[8].szName = "Accept";
diff --git a/protocols/Gadu-Gadu/src/libgadu/libgadu.h b/protocols/Gadu-Gadu/src/libgadu/libgadu.h index 6d2db69f96..33224836c3 100644 --- a/protocols/Gadu-Gadu/src/libgadu/libgadu.h +++ b/protocols/Gadu-Gadu/src/libgadu/libgadu.h @@ -39,6 +39,7 @@ #ifdef GG_CONFIG_MIRANDA #include <m_ssl.h> +#include <m_netlib.h> #endif #if defined(__cplusplus) || defined(_WIN32) @@ -1542,7 +1543,7 @@ int gg_dcc7_handle_abort(struct gg_session *sess, struct gg_event *e, void *payl #define GG_DEFAULT_PORT 8074 #define GG_HTTPS_PORT 443 -#define GG_HTTP_USERAGENT "Mozilla/4.7 [en] (Win98; I)" +#define GG_HTTP_USERAGENT NETLIB_USER_AGENT #define GG_DEFAULT_CLIENT_VERSION "10.1.0.11070" #define GG_DEFAULT_PROTOCOL_VERSION 0x2e |