check-net: modified proxy result message
authorMunkyu Im <munkyu.im@samsung.com>
Tue, 23 Jun 2015 07:41:18 +0000 (16:41 +0900)
committerSeokYeon Hwang <syeon.hwang@samsung.com>
Wed, 24 Jun 2015 05:32:30 +0000 (14:32 +0900)
If host OS uses direct proxy,
information message is printed.

Change-Id: I12db8e522c38155d4207fe3d44336dd5ed455c19
Signed-off-by: Munkyu Im <munkyu.im@samsung.com>
tizen/src/util/check_net_darwin.c
tizen/src/util/check_net_linux.c
tizen/src/util/check_net_win32.c

index 6384b5c..70c1c79 100644 (file)
@@ -88,8 +88,7 @@ static int get_auto_proxy(void)
         }
 
         if (g_str_has_prefix(type, DIRECT)) {
-            fprintf(stdout, "MODE:Auto\n");
-            fprintf(stdout, "http_proxy= http_proxy= ftp_proxy= socks_proxy=");
+            fprintf(stdout, "Proxy addresses are not in use. Host OS uses direct proxy type.");
             fclose(fp_pacfile);
         } else if (g_str_has_prefix(type, PROXY)) {
             p = strtok(proxy, "\";");
index f0d8e41..9bb48a8 100644 (file)
@@ -88,7 +88,7 @@ static int get_auto_proxy(void)
         }
 
         if (g_str_has_prefix(type, DIRECT)) {
-            fprintf(stdout, "http_proxy= http_proxy= ftp_proxy= socks_proxy=");
+            fprintf(stdout, "Proxy addresses are not in use. Host OS uses direct proxy type.");
             fclose(fp_pacfile);
         } else if (g_str_has_prefix(type, PROXY)) {
             fprintf(stderr, "auto proxy is set to proxy mode\n");
index 9653832..8a702cd 100644 (file)
@@ -62,7 +62,7 @@ static int get_auto_proxy(BYTE *url)
         }
 
         if (g_str_has_prefix(type, DIRECT)) {
-            fprintf(stdout, "http_proxy= https_proxy= ftp_proxy= socks_proxy=");
+            fprintf(stdout, "Proxy addresses are not in use. Host OS uses direct proxy type.");
             fclose(fp_pacfile);
         } else if (g_str_has_prefix(type, PROXY)) {
             fprintf(stderr, "auto proxy is set to proxy mode\n");