From 789622e88d27addb092f4eff29e77121158f9ff1 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sat, 14 Jan 2012 05:56:32 +0000 Subject: [PATCH] - GUI RPC: add tag to the start of HTTP replies. svn path=/trunk/boinc/; revision=25059 --- checkin_notes | 5 +++++ client/gui_rpc_server_ops.cpp | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/checkin_notes b/checkin_notes index e78f2e2955..cbcdb122ec 100644 --- a/checkin_notes +++ b/checkin_notes @@ -536,3 +536,8 @@ David 13 Jan 2012 Makefile.am zip/* +David 13 Jan 2012 + - GUI RPC: add tag to the start of HTTP replies. + + client/ + gui_rpc_server_ops.cpp diff --git a/client/gui_rpc_server_ops.cpp b/client/gui_rpc_server_ops.cpp index 0bcb38618b..2f316f49a9 100644 --- a/client/gui_rpc_server_ops.cpp +++ b/client/gui_rpc_server_ops.cpp @@ -1369,7 +1369,8 @@ int GUI_RPC_CONN::handle_rpc() { "Server: BOINC client\n" "Connection: close\n" "Content-Type: text/xml; charset=utf-8\n" - "Content-Length: %d\n\n", + "Content-Length: %d\n\n" + "\n", n ); send(sock, buf, strlen(buf), 0);