Instead of requiring slab-allocated structures to have a "next" pointer,
[obnox/wireshark/wip.git] / epan / proto.h
1 /* proto.h
2  * Definitions for protocol display
3  *
4  * $Id: proto.h,v 1.50 2003/12/03 08:53:36 guy Exp $
5  *
6  * Ethereal - Network traffic analyzer
7  * By Gerald Combs <gerald@ethereal.com>
8  * Copyright 1998 Gerald Combs
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23  */
24
25 #ifndef __PROTO_H__
26 #define __PROTO_H__
27
28 #ifdef HAVE_STDARG_H
29 # include <stdarg.h>
30 #else
31 # include <varargs.h>
32 #endif
33
34 #include <glib.h>
35
36 #include "ipv4.h"
37 #include "nstime.h"
38 #include "tvbuff.h"
39 #include "ftypes/ftypes.h"
40
41 struct _value_string;
42
43 #define ITEM_LABEL_LENGTH       240
44
45 /* In order to make a const value_string[] look like a value_string*, I
46  * need this macro */
47 #define VALS(x) (const struct _value_string*)(x)
48
49 /* ... and similarly, */
50 #define TFS(x)  (const struct true_false_string*)(x)
51
52 struct _protocol;
53
54 typedef struct _protocol protocol_t;
55  
56 /* check protocol activation */
57 #define CHECK_DISPLAY_AS_X(x_handle,index, tvb, pinfo, tree) {  \
58         if (!proto_is_protocol_enabled(find_protocol_by_id(index))) {   \
59                 call_dissector(x_handle,tvb, pinfo, tree);              \
60                 return;                                                 \
61         }                                                               \
62   }
63
64 enum {
65         BASE_NONE,
66         BASE_DEC,
67         BASE_HEX,
68         BASE_OCT
69 };
70
71 typedef struct _header_field_info header_field_info;
72
73 /* information describing a header field */
74 struct _header_field_info {
75         /* ---------- set by dissector --------- */
76         char                            *name;
77         char                            *abbrev;
78         enum ftenum                     type;
79         int                             display;        /* for integers only, so far. Base */
80         const void                      *strings;       /* val_string or true_false_string */
81         guint32                         bitmask;
82         char                            *blurb;         /* Brief description of field. */
83
84         /* ---------- set by proto routines --------- */
85         int                             id;             /* Field ID */
86         int                             parent;         /* parent protocol */
87         int                             bitshift;       /* bits to shift */
88         header_field_info               *same_name_next; /* Link to next hfinfo with same abbrev*/
89         header_field_info               *same_name_prev; /* Link to previous hfinfo with same abbrev*/
90 };
91
92 /*
93  * HFILL initializes all the "set by proto routines" fields in a
94  * "header_field_info"; if new fields are added or removed, it should
95  * be changed as necessary.
96  */
97 #define HFILL 0, 0, 0, NULL, NULL
98
99 /* Used when registering many fields at once */
100 typedef struct hf_register_info {
101         int                     *p_id;  /* pointer to int; written to by register() function */
102         header_field_info       hfinfo;
103 } hf_register_info;
104
105
106 typedef struct _item_label_t {
107         char representation[ITEM_LABEL_LENGTH];
108 } item_label_t;
109
110 /* Contains the field information for the proto_item. */
111 typedef struct field_info {
112         union {
113                 /* the next pointer is only used when keeping track of 
114                  * free (unallocated) field_infos. Such field_info's
115                  * are never associated with a header_field_info.
116                  */
117                 struct field_info               *next;
118                 header_field_info               *hfinfo;
119         } ptr_u;
120         gint                            start;
121         gint                            length;
122         gint                            tree_type; /* ETT_* */
123         item_label_t                    *rep; /* string for GUI tree */
124         int                             visible;
125         tvbuff_t                        *ds_tvb;  /* data source tvbuff */
126         fvalue_t                        value;
127 } field_info;
128
129 /* One of these exists for the entire protocol tree. Each proto_node
130  * in the protocol tree points to the same copy. */
131 typedef struct {
132     GHashTable  *interesting_hfids;
133     gboolean    visible;
134 } tree_data_t;
135
136 /* Each GNode (proto_tree, proto_item) points to one of
137  * these. */
138 typedef struct _proto_node {
139         field_info  *finfo;
140         tree_data_t *tree_data;
141 } proto_node;
142
143 typedef GNode proto_tree;
144 typedef GNode proto_item;
145
146 /* Retrieve the proto_node from a GNode. */
147 #define GNODE_PNODE(t)  ((proto_node*)((GNode*)(t))->data)
148
149 /* Retrieve the field_info from a proto_item */
150 #define PITEM_FINFO(t)  (GNODE_PNODE(t)->finfo)
151
152 /* Retrieve the tree_data_t from a proto_tree */
153 #define PTREE_DATA(t)   (GNODE_PNODE(t)->tree_data)
154
155 /* Sets up memory used by proto routines. Called at program startup */
156 extern void proto_init(const char *plugin_dir,
157     void (register_all_protocols)(void), void (register_all_handoffs)(void));
158
159 /* Frees memory used by proto routines. Called at program shutdown */
160 extern void proto_cleanup(void);
161
162 /* Set text of proto_item after having already been created. */
163 #if __GNUC__ >= 2
164 extern void proto_item_set_text(proto_item *ti, const char *format, ...)
165         __attribute__((format (printf, 2, 3)));
166 #else
167 extern void proto_item_set_text(proto_item *ti, const char *format, ...);
168 #endif
169
170 /* Append to text of proto_item after having already been created. */
171 #if __GNUC__ >= 2
172 extern void proto_item_append_text(proto_item *ti, const char *format, ...)
173         __attribute__((format (printf, 2, 3)));
174 #else
175 extern void proto_item_append_text(proto_item *ti, const char *format, ...);
176 #endif
177
178 /* Set length of proto_item after having already been created. */
179 extern void proto_item_set_len(proto_item *ti, gint length);
180
181 /*
182  * Sets the length of the item based on its start and on the specified
183  * offset, which is the offset past the end of the item; as the start
184  * in the item is relative to the beginning of the data source tvbuff,
185  * we need to pass in a tvbuff - the end offset is relative to the beginning
186  * of that tvbuff.
187  */
188 extern void proto_item_set_end(proto_item *pi, tvbuff_t *tvb, gint end);
189
190 /* Get length of proto_item. Useful after using proto_tree_add_item()
191  * to add a variable-length field (e.g., FT_NSTRING_UINT8) */
192 extern int proto_item_get_len(proto_item *ti);
193
194 /* Creates new proto_tree root */
195 extern proto_tree* proto_tree_create_root(void);
196
197 /* Mark a field/protocol ID as "interesting". */
198 extern void
199 proto_tree_prime_hfid(proto_tree *tree, int hfid);
200
201 /* Clear memory for entry proto_tree. Clears proto_tree struct also. */
202 extern void proto_tree_free(proto_tree *tree);
203
204 /* Create a subtree under an existing item; returns tree pointer */
205 extern proto_tree* proto_item_add_subtree(proto_item *ti, gint idx);
206
207 extern int
208 proto_register_field(char *name, char *abbrev, enum ftenum type, int parent,
209         struct _value_string* vals);
210
211 extern int
212 proto_register_protocol(char *name, char *short_name, char *filter_name);
213
214 extern void
215 proto_register_field_array(int parent, hf_register_info *hf, int num_records);
216
217 extern void
218 proto_register_subtree_array(gint **indices, int num_indices);
219
220 /* Add an item to a proto_tree, using the text label registered to that item;
221    the item is extracted from the tvbuff handed to it. */
222 extern proto_item *
223 proto_tree_add_item(proto_tree *tree, int hfindex, tvbuff_t *tvb,
224     gint start, gint length, gboolean little_endian);
225
226 extern proto_item *
227 proto_tree_add_item_hidden(proto_tree *tree, int hfindex, tvbuff_t *tvb,
228     gint start, gint length, gboolean little_endian);
229
230 /* Add a FT_NONE to a proto_tree */
231 #if __GNUC__ >= 2
232 extern proto_item *
233 proto_tree_add_none_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
234         gint length, const char *format, ...)
235         __attribute__((format (printf, 6, 7)));
236 #else
237 extern proto_item *
238 proto_tree_add_none_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
239         gint length, const char *format, ...);
240 #endif
241
242 /* Add a FT_PROTOCOL to a proto_tree */
243 #if __GNUC__ >= 2
244 extern proto_item *
245 proto_tree_add_protocol_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
246         gint length, const char *format, ...)
247         __attribute__((format (printf, 6, 7)));
248 #else
249 extern proto_item *
250 proto_tree_add_protocol_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
251         gint length, const char *format, ...);
252 #endif
253
254 /* Add a FT_BYTES to a proto_tree */
255 extern proto_item *
256 proto_tree_add_bytes(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
257         gint length, const guint8* start_ptr);
258
259 extern proto_item *
260 proto_tree_add_bytes_hidden(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
261         gint length, const guint8* start_ptr);
262
263 #if __GNUC__ >= 2
264 extern proto_item *
265 proto_tree_add_bytes_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
266         gint length, const guint8* start_ptr, const char *format, ...)
267         __attribute__((format (printf, 7, 8)));
268 #else
269 extern proto_item *
270 proto_tree_add_bytes_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
271         gint length, const guint8* start_ptr, const char *format, ...);
272 #endif
273
274 /* Add a FT_*TIME to a proto_tree */
275 extern proto_item *
276 proto_tree_add_time(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
277         gint length, nstime_t* value_ptr);
278
279 extern proto_item *
280 proto_tree_add_time_hidden(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
281         gint length, nstime_t* value_ptr);
282
283 #if __GNUC__ >= 2
284 extern proto_item *
285 proto_tree_add_time_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
286         gint length, nstime_t* value_ptr, const char *format, ...)
287         __attribute__((format (printf, 7, 8)));
288 #else
289 extern proto_item *
290 proto_tree_add_time_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
291         gint length, nstime_t* value_ptr, const char *format, ...);
292 #endif
293
294 /* Add a FT_IPXNET to a proto_tree */
295 extern proto_item *
296 proto_tree_add_ipxnet(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
297         gint length, guint32 value);
298
299 extern proto_item *
300 proto_tree_add_ipxnet_hidden(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
301         gint length, guint32 value);
302
303 #if __GNUC__ >= 2
304 extern proto_item *
305 proto_tree_add_ipxnet_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
306         gint length, guint32 value, const char *format, ...)
307         __attribute__((format (printf, 7, 8)));
308 #else
309 extern proto_item *
310 proto_tree_add_ipxnet_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
311         gint length, guint32 value, const char *format, ...);
312 #endif
313
314 /* Add a FT_IPv4 to a proto_tree */
315 extern proto_item *
316 proto_tree_add_ipv4(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
317         gint length, guint32 value);
318
319 extern proto_item *
320 proto_tree_add_ipv4_hidden(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
321         gint length, guint32 value);
322
323 #if __GNUC__ >= 2
324 extern proto_item *
325 proto_tree_add_ipv4_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
326         gint length, guint32 value, const char *format, ...)
327         __attribute__((format (printf, 7, 8)));
328 #else
329 extern proto_item *
330 proto_tree_add_ipv4_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
331         gint length, guint32 value, const char *format, ...);
332 #endif
333
334 /* Add a FT_IPv6 to a proto_tree */
335 extern proto_item *
336 proto_tree_add_ipv6(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
337         gint length, const guint8* value_ptr);
338
339 extern proto_item *
340 proto_tree_add_ipv6_hidden(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
341         gint length, const guint8* value_ptr);
342
343 #if __GNUC__ >= 2
344 extern proto_item *
345 proto_tree_add_ipv6_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
346         gint length, const guint8* value_ptr, const char *format, ...)
347         __attribute__((format (printf, 7, 8)));
348 #else
349 extern proto_item *
350 proto_tree_add_ipv6_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
351         gint length, const guint8* value_ptr, const char *format, ...);
352 #endif
353
354 /* Add a FT_ETHER to a proto_tree */
355 extern proto_item *
356 proto_tree_add_ether(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
357         gint length, const guint8* value);
358
359 extern proto_item *
360 proto_tree_add_ether_hidden(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
361         gint length, const guint8* value);
362
363 #if __GNUC__ >= 2
364 extern proto_item *
365 proto_tree_add_ether_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
366         gint length, const guint8* value, const char *format, ...)
367         __attribute__((format (printf, 7, 8)));
368 #else
369 extern proto_item *
370 proto_tree_add_ether_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
371         gint length, const guint8* value, const char *format, ...);
372 #endif
373
374 /* Add a FT_STRING to a proto_tree */
375 extern proto_item *
376 proto_tree_add_string(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
377         gint length, const char* value);
378
379 extern proto_item *
380 proto_tree_add_string_hidden(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
381         gint length, const char* value);
382
383 #if __GNUC__ >= 2
384 extern proto_item *
385 proto_tree_add_string_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
386         gint length, const char* value, const char *format, ...)
387         __attribute__((format (printf, 7, 8)));
388 #else
389 extern proto_item *
390 proto_tree_add_string_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
391         gint length, const char* value, const char *format, ...);
392 #endif
393
394 extern void
395 proto_item_append_string(proto_item *pi, const char *str);
396
397 /* Add a FT_BOOLEAN to a proto_tree */
398 extern proto_item *
399 proto_tree_add_boolean(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
400         gint length, guint32 value);
401
402 extern proto_item *
403 proto_tree_add_boolean_hidden(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
404         gint length, guint32 value);
405
406 #if __GNUC__ >= 2
407 extern proto_item *
408 proto_tree_add_boolean_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
409         gint length, guint32 value, const char *format, ...)
410         __attribute__((format (printf, 7, 8)));
411 #else
412 extern proto_item *
413 proto_tree_add_boolean_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
414         gint length, guint32 value, const char *format, ...);
415 #endif
416
417 /* Add a FT_FLOAT to a proto_tree */
418 extern proto_item *
419 proto_tree_add_float(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
420         gint length, float value);
421
422 extern proto_item *
423 proto_tree_add_float_hidden(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
424         gint length, float value);
425
426 #if __GNUC__ >= 2
427 extern proto_item *
428 proto_tree_add_float_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
429         gint length, float value, const char *format, ...)
430         __attribute__((format (printf, 7, 8)));
431 #else
432 extern proto_item *
433 proto_tree_add_float_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
434         gint length, float value, const char *format, ...);
435 #endif
436
437 /* Add a FT_DOUBLE to a proto_tree */
438 extern proto_item *
439 proto_tree_add_double(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
440         gint length, double value);
441
442 extern proto_item *
443 proto_tree_add_double_hidden(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
444         gint length, double value);
445
446 #if __GNUC__ >= 2
447 extern proto_item *
448 proto_tree_add_double_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
449         gint length, double value, const char *format, ...)
450         __attribute__((format (printf, 7, 8)));
451 #else
452 extern proto_item *
453 proto_tree_add_double_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
454         gint length, double value, const char *format, ...);
455 #endif
456
457 /* Add any FT_UINT* to a proto_tree */
458 extern proto_item *
459 proto_tree_add_uint(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
460         gint length, guint32 value);
461
462 extern proto_item *
463 proto_tree_add_uint_hidden(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
464         gint length, guint32 value);
465
466 #if __GNUC__ >= 2
467 extern proto_item *
468 proto_tree_add_uint_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
469         gint length, guint32 value, const char *format, ...)
470         __attribute__((format (printf, 7, 8)));
471 #else
472 extern proto_item *
473 proto_tree_add_uint_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
474         gint length, guint32 value, const char *format, ...);
475 #endif
476
477 /* Add any FT_INT* to a proto_tree */
478 extern proto_item *
479 proto_tree_add_int(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
480         gint length, gint32 value);
481
482 extern proto_item *
483 proto_tree_add_int_hidden(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
484         gint length, gint32 value);
485
486 #if __GNUC__ >= 2
487 extern proto_item *
488 proto_tree_add_int_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
489         gint length, gint32 value, const char *format, ...)
490         __attribute__((format (printf, 7, 8)));
491 #else
492 extern proto_item *
493 proto_tree_add_int_format(proto_tree *tree, int hfindex, tvbuff_t *tvb, gint start,
494         gint length, gint32 value, const char *format, ...);
495 #endif
496
497
498 /* Add a text-only node to the proto_tree */
499 #if __GNUC__ >= 2
500 extern proto_item *
501 proto_tree_add_text(proto_tree *tree, tvbuff_t *tvb, gint start, gint length, const char *,
502         ...) __attribute__((format (printf, 5, 6)));
503 #else
504 extern proto_item *
505 proto_tree_add_text(proto_tree *tree, tvbuff_t *tvb, gint start, gint length, const char *,
506         ...);
507 #endif
508
509 extern proto_item *
510 proto_tree_add_text_valist(proto_tree *tree, tvbuff_t *tvb, gint start,
511         gint length, const char *format, va_list ap);
512
513
514 /* Useful for quick debugging. Also sends string to STDOUT, so don't
515  * leave call to this function in production code. */
516 #if __GNUC__ >= 2
517 extern proto_item *
518 proto_tree_add_debug_text(proto_tree *tree, const char *format, ...)
519         __attribute__((format (printf, 2, 3)));
520 #else
521 extern proto_item *
522 proto_tree_add_debug_text(proto_tree *tree, const char *format, ...);
523 #endif
524
525 extern void
526 proto_item_fill_label(field_info *fi, gchar *label_str);
527
528 extern void
529 proto_tree_set_visible(proto_tree *tree, gboolean visible);
530
531 /* Returns number of items (protocols or header fields) registered. */
532 extern int proto_registrar_n(void);
533
534 /* Returns char* to name for item # n (0-indexed) */
535 extern char* proto_registrar_get_name(int n);
536
537 /* Returns char* to abbrev for item # n (0-indexed) */
538 extern char* proto_registrar_get_abbrev(int n);
539
540 /* get the header field information based upon a field or protocol id */
541 extern header_field_info* proto_registrar_get_nth(guint hfindex);
542
543 /* get the header field information based upon a field name */
544 extern header_field_info* proto_registrar_get_byname(char *field_name);
545
546 /* Returns enum ftenum for item # n */
547 extern int proto_registrar_get_ftype(int n);
548
549 /* Returns parent protocol for item # n.
550  * Returns -1 if item _is_ a protocol */
551 extern int proto_registrar_get_parent(int n);
552
553 /* Is item #n a protocol? */
554 extern gboolean proto_registrar_is_protocol(int n);
555
556 /* Is protocol's decoding enabled ? */
557 extern gboolean proto_is_protocol_enabled(protocol_t *protocol);
558
559 /* Can item #n decoding be disabled? */
560 extern gboolean proto_can_disable_protocol(int proto_id);
561
562 /* Routines to use to iterate over the protocols and their fields;
563  * they return the item number of the protocol in question or the
564  * appropriate hfinfo pointer, and keep state in "*cookie". */
565 extern int proto_get_first_protocol(void **cookie);
566 extern int proto_get_next_protocol(void **cookie);
567 extern header_field_info *proto_get_first_protocol_field(int proto_id, void **cookle);
568 extern header_field_info *proto_get_next_protocol_field(void **cookle);
569
570 /* Given a protocol's "protocol_t", return its proto_id */
571 extern int proto_get_id(protocol_t *protocol);
572
573 /* Given a protocol's filter_name, return its proto_id */
574 extern int proto_get_id_by_filter_name(gchar* filter_name);
575
576 /* Given a protocol's item number, find the "protocol_t" structure for it */
577 extern protocol_t *find_protocol_by_id(int proto_id);
578
579 /* Given a protocol's item number, return its name. */
580 extern char *proto_get_protocol_name(int n);
581
582 /* Given a protocol's "protocol_t", return its short name. */
583 extern char *proto_get_protocol_short_name(protocol_t *protocol);
584
585 /* Given a protocol's item number, return its filter name. */
586 extern char *proto_get_protocol_filter_name(int proto_id);
587
588 /* Enable / Disable protocol */
589 extern void proto_set_decoding(int proto_id, gboolean enabled);
590
591 /* Disable disabling of protocol */
592 extern void proto_set_cant_disable(int proto_id);
593
594 /* Get length of registered field according to field type.
595  * 0 means undeterminable at registration time.
596  * -1 means unknown field */
597 extern gint proto_registrar_get_length(int n);
598
599 /* Checks for existence any protocol or field within a tree.
600  * "Protocols" are assumed to be a child of the [empty] root node.
601  * TRUE = found, FALSE = not found */
602 extern gboolean proto_check_for_protocol_or_field(proto_tree* tree, int id);
603
604 /* Return GPtrArray* of field_info pointers for all hfindex that appear in
605  * tree. */
606 extern GPtrArray* proto_get_finfo_ptr_array(proto_tree *tree, int hfindex);
607
608 /* Dumps a glossary of the protocol registrations to STDOUT */
609 extern void proto_registrar_dump_protocols(void);
610
611 /* Dumps a glossary of the protocol and field registrations to STDOUT */
612 extern void proto_registrar_dump_fields(void);
613
614 /* Points to the first element of an array of Booleans, indexed by
615    a subtree item type; that array element is TRUE if subtrees of
616    an item of that type are to be expanded. */
617 extern gboolean      *tree_is_expanded;
618
619 /* Number of elements in that array. */
620 extern int           num_tree_types;
621
622 /* glib doesn't have g_ptr_array_len of all things!*/
623 #ifndef g_ptr_array_len
624 #define g_ptr_array_len(a)      ((a)->len)
625 #endif
626
627 extern int
628 hfinfo_bitwidth(header_field_info *hfinfo);
629
630 #include "epan.h"
631
632 /*
633  * Returns TRUE if we can do a "match selected" on the field, FALSE
634  * otherwise.
635  */
636 extern gboolean
637 proto_can_match_selected(field_info *finfo, epan_dissect_t *edt);
638
639 extern char*
640 proto_construct_dfilter_string(field_info *finfo, epan_dissect_t *edt);
641
642 extern field_info*
643 proto_find_field_from_offset(proto_tree *tree, guint offset, tvbuff_t *tvb);
644
645 #endif /* proto.h */