- client: show message if no proxy

fixes #704

svn path=/trunk/boinc/; revision=15717
This commit is contained in:
David Anderson 2008-07-30 23:35:21 +00:00
parent 884bad0975
commit 74fe548296
2 changed files with 10 additions and 0 deletions

View File

@ -6036,3 +6036,10 @@ David 30 July 2008
gui_rpc_server_ops.C
html/user/
am_set_info.php
David 30 July 2008
- client: show message if no proxy
fixes #704
client/
client_state.C

View File

@ -139,6 +139,9 @@ void CLIENT_STATE::show_proxy_info() {
proxy_info.socks_server_name, proxy_info.socks_server_port
);
}
if (!proxy_info.use_http_proxy && !proxy_info.use_socks_proxy) {
msg_printf(NULL, MSG_INFO, "Not using a proxy");
}
}
void CLIENT_STATE::show_host_info() {