"Host: " + gs_serverHost + "\r\n"
"\r\n";
- sock->Write(httpGetRoot, httpGetRoot.length());
+ sock->Write(httpGetRoot.ToAscii(), httpGetRoot.length());
ptr.reset(sock);
return ptr;
CPPUNIT_ASSERT_EQUAL( WXSIZEOF(bufSmall), sock->LastCount() );
- char bufBig[1024*1024];
+ char bufBig[102400];
sock->Read(bufBig, WXSIZEOF(bufBig));
CPPUNIT_ASSERT_EQUAL( wxSOCKET_NOERROR, sock->LastError() );