aboutsummaryrefslogtreecommitdiffstats
path: root/extcap.c
diff options
context:
space:
mode:
authorRoland Knall <roland.knall@br-automation.com>2016-01-12 10:47:19 +0100
committerRoland Knall <rknall@gmail.com>2016-01-12 11:07:35 +0000
commit645516b0416247e0d7ef207252ce5bef41b8f82a (patch)
treed58375ff31f07470cc9042701024a53462c2f6dc /extcap.c
parent00a710afe76ddec7295e3413a6f296d714afac8b (diff)
extcap: Sort extcap interfaces alphabetically
The interface list is not sorted at all, leading to a very chaotic list. This sorts it alphabetically, as well as correct a type in extcap_init_interfaces. Bug: 11998 Change-Id: Ib5381a1761e8f07f9ba7996b3e6276da063b3932 Reviewed-on: https://code.wireshark.org/review/13220 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Roland Knall <rknall@gmail.com>
Diffstat (limited to 'extcap.c')
-rw-r--r--extcap.c35
1 files changed, 18 insertions, 17 deletions
diff --git a/extcap.c b/extcap.c
index 6d66ad167c..4d2a14a29d 100644
--- a/extcap.c
+++ b/extcap.c
@@ -57,7 +57,7 @@ static HANDLE pipe_h = NULL;
/* internal container, for all the extcap interfaces that have been found.
* will be resetted by every call to extcap_interface_list() and is being
- * used in extcap_get_if_* as well as extcaps_init_initerfaces to ensure,
+ * used in extcap_get_if_* as well as extcap_init_interfaces to ensure,
* that only extcap interfaces are being given to underlying extcap programs
*/
static GHashTable *ifaces = NULL;
@@ -345,6 +345,19 @@ static gboolean interfaces_cb(const gchar *extcap, gchar *output, void *data,
return TRUE;
}
+static gint
+if_info_compare(gconstpointer a, gconstpointer b)
+{
+ gint comp = 0;
+ if_info_t * if_a = (if_info_t *)a;
+ if_info_t * if_b = (if_info_t *)b;
+
+ if ( (comp = g_strcmp0(if_a->name, if_b->name)) == 0 )
+ return g_strcmp0(if_a->friendly_name, if_b->friendly_name);
+
+ return comp;
+}
+
GList *
extcap_interface_list(char **err_str) {
gchar *argv;
@@ -366,12 +379,7 @@ extcap_interface_list(char **err_str) {
g_free(argv);
- return ret;
-}
-
-static void g_free_1(gpointer data, gpointer user_data _U_)
-{
- g_free(data);
+ return g_list_sort ( ret, if_info_compare );
}
static void extcap_free_if_configuration(GList *list)
@@ -380,15 +388,8 @@ static void extcap_free_if_configuration(GList *list)
for (elem = g_list_first(list); elem; elem = elem->next)
{
- GList *arg_list;
- if (elem->data == NULL)
- {
- continue;
- }
-
- arg_list = g_list_first((GList *)elem->data);
- g_list_foreach(arg_list, g_free_1, NULL);
- g_list_free(arg_list);
+ if (elem->data != NULL)
+ g_list_free_full(g_list_first((GList *)elem->data), g_free);
}
g_list_free(list);
}
@@ -568,7 +569,7 @@ static void extcap_child_watch_cb(GPid pid, gint status _U_, gpointer user_data)
/* call mkfifo for each extcap,
* returns FALSE if there's an error creating a FIFO */
gboolean
-extcaps_init_initerfaces(capture_options *capture_opts)
+extcap_init_interfaces(capture_options *capture_opts)
{
guint i;
interface_options interface_opts;