fix usage of "if(tree) {" to display the right things, even if no coloring rule is set
[obnox/wireshark/wip.git] / epan / range.h
1 /* range.h
2  * Range routines
3  *
4  * $Id$
5  *
6  * Dick Gooris <gooris@lucent.com>
7  * Ulf Lamping <ulf.lamping@web.de>
8  *
9  * Ethereal - Network traffic analyzer
10  * By Gerald Combs <gerald@ethereal.com>
11  * Copyright 1998 Gerald Combs
12  *
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License
15  * as published by the Free Software Foundation; either version 2
16  * of the License, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
26  */
27
28 #ifndef __RANGE_H__
29 #define __RANGE_H__
30
31 #include <glib.h>
32
33 /* XXX where's the best place for these? */
34 #define MAX_SCTP_PORT 65535
35 #define MAX_TCP_PORT 65535
36 #define MAX_UDP_PORT 65535
37
38 typedef struct range_admin_tag {
39     guint32 low;
40     guint32 high;
41 } range_admin_t;
42
43 typedef struct range {
44     /* user specified range(s) */
45     guint           nranges;   /* number of entries in ranges */
46     range_admin_t   ranges[1]; /* variable-length array */
47 } range_t;
48
49 /*
50  * Return value from range_convert_str().
51  */
52 typedef enum {
53     CVT_NO_ERROR,
54     CVT_SYNTAX_ERROR,
55     CVT_NUMBER_TOO_BIG
56 } convert_ret_t;        
57
58 extern range_t *range_empty(void);
59
60 extern convert_ret_t range_convert_str(range_t **range, const gchar *es,
61     guint32 max_value);
62
63 extern gboolean value_is_in_range(range_t *range, guint32 val);
64
65 extern gboolean ranges_are_equal(range_t *a, range_t *b);
66
67 extern void range_foreach(range_t *range, void (*callback)(guint32 val));
68
69 extern char *range_convert_range(range_t *range);
70
71 extern range_t *range_copy(range_t *src);
72
73 #endif /* __RANGE_H__ */