From 74fe548296278a7e64b0d6cec7cd72f387a33016 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Wed, 30 Jul 2008 23:35:21 +0000 Subject: [PATCH] - client: show message if no proxy fixes #704 svn path=/trunk/boinc/; revision=15717 --- checkin_notes | 7 +++++++ client/client_state.C | 3 +++ 2 files changed, 10 insertions(+) diff --git a/checkin_notes b/checkin_notes index 97f0674edf..7ad1c21067 100644 --- a/checkin_notes +++ b/checkin_notes @@ -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 diff --git a/client/client_state.C b/client/client_state.C index 8ca330c254..e7416d5e97 100644 --- a/client/client_state.C +++ b/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() {