summaryrefslogtreecommitdiff
path: root/ui/util.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2015-07-16 09:14:07 -0700
committerGerald Combs <gerald@wireshark.org>2015-07-16 16:17:33 +0000
commit6d33c124d55c1fdbe8225e82256b77e8f0a13e3c (patch)
treea9d579439c752f04154b1394b948c72e4d3938c0 /ui/util.c
parent78bc3dd93a562ca1b1c5dbc8f71d2967008be7ed (diff)
downloadwireshark-6d33c124d55c1fdbe8225e82256b77e8f0a13e3c.tar.gz
Add display_is_remote.
Add a display_is_remote function and use it instead of get_conn_cfilter to check for remoteness. Change-Id: Ia93d113afec36ede55daf7dc8394b2dc0d8c9abf Reviewed-on: https://code.wireshark.org/review/9659 Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'ui/util.c')
-rw-r--r--ui/util.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/ui/util.c b/ui/util.c
index 75dd273f72..29a6811321 100644
--- a/ui/util.c
+++ b/ui/util.c
@@ -336,6 +336,17 @@ const gchar *get_conn_cfilter(void) {
return filter_str->str;
}
+gboolean display_is_remote(void)
+{
+ static gboolean remote_display_checked;
+ static gboolean is_remote;
+
+ if (!remote_display_checked) {
+ is_remote = (strlen(get_conn_cfilter()) > 0);
+ }
+ return is_remote;
+}
+
/*
* Editor modelines
*