Whitespace change.
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>
Tue, 28 Jul 2009 09:26:18 +0000 (09:26 +0000)
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>
Tue, 28 Jul 2009 09:26:18 +0000 (09:26 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29211 f5534014-38df-0310-8fa8-9805f1628bb7

epan/proto.h

index 9b7cd29826c727a56049e7483e25774b871fd0be..4f9921a7e4a14889cc7280bb940ef77379f94a43 100644 (file)
@@ -173,24 +173,24 @@ typedef struct _header_field_info header_field_info;
 /** information describing a header field */
 struct _header_field_info {
        /* ---------- set by dissector --------- */
-       const char                      *name;      /**< full name of this field */
-       const char                      *abbrev;    /**< abbreviated name of this field */
-       enum ftenum                     type;       /**< field type, one of FT_ (from ftypes.h) */
-       int                             display;    /**< one of BASE_, or number of field bits for FT_BOOLEAN */
-       const void                      *strings;   /**< value_string, range_string or true_false_string,
-                                                        typically converted by VALS(), RVALS() or TFS().
-                                                        If this is an FT_PROTOCOL then it points to the
-                                                        associated protocol_t structure */
-       guint32                         bitmask;    /**< bitmask of interesting bits */
-       const char                      *blurb;     /**< Brief description of field */
+       const char                      *name;           /**< full name of this field */
+       const char                      *abbrev;         /**< abbreviated name of this field */
+       enum ftenum                     type;            /**< field type, one of FT_ (from ftypes.h) */
+       int                                     display;         /**< one of BASE_, or number of field bits for FT_BOOLEAN */
+       const void                      *strings;        /**< value_string, range_string or true_false_string,
+                                                             typically converted by VALS(), RVALS() or TFS().
+                                                             If this is an FT_PROTOCOL then it points to the
+                                                             associated protocol_t structure */
+       guint32                         bitmask;         /**< bitmask of interesting bits */
+       const char                      *blurb;          /**< Brief description of field */
 
        /* ------- set by proto routines (prefilled by HFILL macro, see below) ------ */
-       int                             id;         /**< Field ID */
-       int                             parent;     /**< parent protocol tree */
-       hf_ref_type                     ref_count;  /**< is this field referenced by a filter */
-       int                             bitshift;   /**< bits to shift */
-       header_field_info               *same_name_next; /**< Link to next hfinfo with same abbrev */
-       header_field_info               *same_name_prev; /**< Link to previous hfinfo with same abbrev */
+       int                                     id;              /**< Field ID */
+       int                                     parent;          /**< parent protocol tree */
+       hf_ref_type                     ref_count;       /**< is this field referenced by a filter */
+       int                                     bitshift;        /**< bits to shift */
+       header_field_info       *same_name_next; /**< Link to next hfinfo with same abbrev */
+       header_field_info       *same_name_prev; /**< Link to previous hfinfo with same abbrev */
 };
 
 /**
@@ -202,7 +202,7 @@ struct _header_field_info {
 
 /** Used when registering many fields at once, using proto_register_field_array() */
 typedef struct hf_register_info {
-       int                     *p_id;  /**< written to by register() function */
+       int                     *p_id;                  /**< written to by register() function */
        header_field_info       hfinfo; /**< the field info to be registered */
 } hf_register_info;
 
@@ -218,15 +218,15 @@ typedef struct _item_label_t {
 /** Contains the field information for the proto_item. */
 typedef struct field_info {
        header_field_info       *hfinfo;    /**< pointer to registered field information */
-       gint                    start;      /**< current start of data in field_info.ds_tvb */
-       gint                    length;     /**< current data length of item in field_info.ds_tvb */
-       gint                    appendix_start;  /**< start of appendix data */
-       gint                    appendix_length; /**< length of appendix data */
-       gint                    tree_type;  /**< one of ETT_ or -1 */
+       gint                            start;      /**< current start of data in field_info.ds_tvb */
+       gint                            length;     /**< current data length of item in field_info.ds_tvb */
+       gint                            appendix_start;  /**< start of appendix data */
+       gint                            appendix_length; /**< length of appendix data */
+       gint                            tree_type;  /**< one of ETT_ or -1 */
        item_label_t            *rep;       /**< string for GUI tree */
-       guint32                 flags;      /**< bitfield like FI_GENERATED, ... */
-       tvbuff_t                *ds_tvb;    /**< data source tvbuff */
-       fvalue_t                value;
+       guint32                         flags;      /**< bitfield like FI_GENERATED, ... */
+       tvbuff_t                        *ds_tvb;    /**< data source tvbuff */
+       fvalue_t                        value;
 } field_info;