- GUI RPC client library: increase request buffer size

from 4KB to 100B


svn path=/trunk/boinc/; revision=23484
This commit is contained in:
David Anderson 2011-04-29 23:47:41 +00:00
parent f8c1049335
commit 4a5c418b43
2 changed files with 8 additions and 1 deletions

View File

@ -2698,3 +2698,10 @@ Rom 29 Apr 2011
samples/vboxwrapper/
vbox.cpp, .h
David 29 Apr 2011
- GUI RPC client library: increase request buffer size
from 4KB to 100B
lib/
gui_rpc_client.cpp

View File

@ -269,7 +269,7 @@ int RPC_CLIENT::authorize(const char* passwd) {
}
int RPC_CLIENT::send_request(const char* p) {
char buf[4096];
char buf[100000];
sprintf(buf,
"<boinc_gui_rpc_request>\n"
"%s"