4 * Extension command line options
6 * (c) 2006, Luis E. Garcia Ontanon <luis@ontanon.org>
10 * Wireshark - Network traffic analyzer
11 * By Gerald Combs <gerald@wireshark.org>
12 * Copyright 1998 Gerald Combs
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
34 static GHashTable
* ex_opts
= NULL
;
36 gboolean
ex_opt_add(const gchar
* optarg
) {
40 ex_opts
= g_hash_table_new(g_str_hash
,g_str_equal
);
42 splitted
= g_strsplit(optarg
,":",2);
44 if (splitted
[0] && splitted
[1]) {
45 GPtrArray
* this_opts
= (GPtrArray
*)g_hash_table_lookup(ex_opts
,splitted
[0]);
48 g_ptr_array_add(this_opts
,splitted
[1]);
51 this_opts
= g_ptr_array_new();
52 g_ptr_array_add(this_opts
,splitted
[1]);
53 g_hash_table_insert(ex_opts
,splitted
[0],this_opts
);
65 gint
ex_opt_count(const gchar
* key
) {
71 this_opts
= (GPtrArray
*)g_hash_table_lookup(ex_opts
,key
);
74 return this_opts
->len
;
80 const gchar
* ex_opt_get_nth(const gchar
* key
, guint index
) {
86 this_opts
= (GPtrArray
*)g_hash_table_lookup(ex_opts
,key
);
89 if (this_opts
->len
> index
) {
90 return (const gchar
*)g_ptr_array_index(this_opts
,index
);
101 extern const gchar
* ex_opt_get_next(const gchar
* key
) {
102 GPtrArray
* this_opts
;
107 this_opts
= (GPtrArray
*)g_hash_table_lookup(ex_opts
,key
);
111 return (const gchar
*)g_ptr_array_remove_index(this_opts
,0);