mirror of https://github.com/BOINC/boinc.git
- client: show message if no proxy
fixes #704 svn path=/trunk/boinc/; revision=15717
This commit is contained in:
parent
884bad0975
commit
74fe548296
|
@ -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
|
||||
|
|
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue