[9594] Allow UTF8 strings via SOAP

This commit is contained in:
Alex 2010-03-16 21:58:32 +01:00 committed by arrai
parent e692862827
commit 5a33cf6700
2 changed files with 3 additions and 1 deletions

View file

@ -29,6 +29,8 @@ void MaNGOSsoapRunnable::run()
struct soap soap; struct soap soap;
int m, s; int m, s;
soap_init(&soap); soap_init(&soap);
soap_set_imode(&soap, SOAP_C_UTFSTRING);
soap_set_omode(&soap, SOAP_C_UTFSTRING);
m = soap_bind(&soap, m_host.c_str(), m_port, 100); m = soap_bind(&soap, m_host.c_str(), m_port, 100);
// check every 3 seconds if world ended // check every 3 seconds if world ended

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "9593" #define REVISION_NR "9594"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__