- client: the get_all_projects_list() RPC doesn't require auth

svn path=/trunk/boinc/; revision=19289
This commit is contained in:
David Anderson 2009-10-12 18:01:11 +00:00
parent d5a41cba9c
commit 626d24f5a5
2 changed files with 8 additions and 2 deletions

View File

@ -8554,3 +8554,9 @@ David 12 Oct 2009
sched/
file_upload_handler.cpp
sched_main.cpp
David 12 Oct 2009
- client: the get_all_projects_list() RPC doesn't require auth
client/
gui_rpc_server_ops.cpp

View File

@ -1147,6 +1147,8 @@ int GUI_RPC_CONN::handle_rpc() {
handle_get_newer_version(mf);
} else if (match_tag(request_msg, "<get_cc_status")) {
handle_get_cc_status(this, mf);
} else if (match_tag(request_msg, "<get_all_projects_list/>")) {
read_all_projects_list_file(mf);
// Operations that require authentication start here
@ -1222,8 +1224,6 @@ int GUI_RPC_CONN::handle_rpc() {
gstate.set_ncpus();
gstate.request_schedule_cpus("Core client configuration");
gstate.request_work_fetch("Core client configuration");
} else if (match_tag(request_msg, "<get_all_projects_list/>")) {
read_all_projects_list_file(mf);
} else if (match_tag(request_msg, "<set_debts")) {
handle_set_debts(request_msg, mf);
} else {