diff --git a/checkin_notes b/checkin_notes index 52d464833f..7efe747d01 100755 --- a/checkin_notes +++ b/checkin_notes @@ -25428,3 +25428,9 @@ David 1 Mar 2005 tools/ update_versions + +David 1 Mar 2005 + - added host_venue to get_state GUI RPC reply + + client/ + cs_statefile.C diff --git a/client/cs_statefile.C b/client/cs_statefile.C index 125dc94808..f215130b29 100644 --- a/client/cs_statefile.C +++ b/client/cs_statefile.C @@ -524,9 +524,12 @@ int CLIENT_STATE::write_state_gui(MIOFILE& f) { cpu_sched_work_done_this_period ); - // save proxy info - // proxy_info.write(f); + + if (strlen(main_host_venue)) { + f.printf("%s\n", main_host_venue); + } + f.printf("\n"); return 0; } diff --git a/doc/contact.php b/doc/contact.php index 2e4f0235b6..07bdd06414 100644 --- a/doc/contact.php +++ b/doc/contact.php @@ -50,6 +50,7 @@ show_name("Pietro Cicotti"); show_name("Seth Cooper"); show_name("Markku Degerholm"); show_name("James Drews"); +show_name("John Flynn III"); show_name("Michael Gary"); show_name("Gary Gibson"); show_name("Volker Hatzenberger"); diff --git a/doc/gui_rpc_control.php b/doc/gui_rpc_control.php index e7ce354d49..f86b2cf354 100644 --- a/doc/gui_rpc_control.php +++ b/doc/gui_rpc_control.php @@ -1,18 +1,30 @@ + +NOTE: this means that any user on the same machine +can control the core client. +This is undesirable; we are planning to add +a password-based protection mechanism to GUI RPC. + + +

+You can allow remote hosts to control a core client in two ways: