mirror of https://github.com/BOINC/boinc.git
- client: include the configured download url in the
get_newer_version RPC. client/ gui_rpc_server_ops.cpp svn path=/trunk/boinc/; revision=21385
This commit is contained in:
parent
abeb8038e3
commit
6e382c2818
|
@ -3326,3 +3326,10 @@ Rom 3 May 2010
|
|||
|
||||
client/
|
||||
net_stats.cpp
|
||||
|
||||
Rom 5 May 2010
|
||||
- client: include the configured download url in the
|
||||
get_newer_version RPC.
|
||||
|
||||
client/
|
||||
gui_rpc_server_ops.cpp
|
||||
|
|
|
@ -848,8 +848,11 @@ static void handle_acct_mgr_rpc_poll(char*, MIOFILE& fout) {
|
|||
}
|
||||
|
||||
static void handle_get_newer_version(MIOFILE& fout) {
|
||||
fout.printf("<newer_version>%s</newer_version>\n",
|
||||
gstate.newer_version.c_str()
|
||||
fout.printf(
|
||||
"<newer_version>%s</newer_version>\n"
|
||||
"<download_url>%s</download_url>\n",
|
||||
gstate.newer_version.c_str(),
|
||||
config.client_download_url.c_str()
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue