aboutsummaryrefslogtreecommitdiffstats
path: root/epan/ip_opts.h
diff options
context:
space:
mode:
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2011-07-24 20:50:00 +0000
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2011-07-24 20:50:00 +0000
commitff0318eca3ba9b024b3b65f38471fffc30cabce1 (patch)
treea4f824d4fef60ab85fc1ddadeba0914493af9be4 /epan/ip_opts.h
parent82cc34928b0ac8e584a88d0fcc63df7b12f18adb (diff)
(Trivial) Whitespace changes and reformatting ...
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38191 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/ip_opts.h')
-rw-r--r--epan/ip_opts.h31
1 files changed, 18 insertions, 13 deletions
diff --git a/epan/ip_opts.h b/epan/ip_opts.h
index dea1240fbe..c4c854671c 100644
--- a/epan/ip_opts.h
+++ b/epan/ip_opts.h
@@ -30,33 +30,38 @@
*/
typedef enum {
- NO_LENGTH, /**< option has no data, hence no length */
- FIXED_LENGTH, /**< option always has the same length */
- VARIABLE_LENGTH /**< option is variable-length - optlen is minimum */
+ NO_LENGTH, /**< option has no data, hence no length */
+ FIXED_LENGTH, /**< option always has the same length */
+ VARIABLE_LENGTH /**< option is variable-length - optlen is minimum */
} opt_len_type;
/** Member of table of IP or TCP options. */
typedef struct ip_tcp_opt {
- int optcode; /**< code for option */
- const char *name; /**< name of option */
- int *subtree_index; /**< pointer to subtree index for option */
- opt_len_type len_type; /**< type of option length field */
- int optlen; /**< value length should be (minimum if VARIABLE) */
- void (*dissect)(const struct ip_tcp_opt *, tvbuff_t *, int, guint,
- packet_info *, proto_tree *);
- /**< routine to dissect option */
+ int optcode; /**< code for option */
+ const char *name; /**< name of option */
+ int *subtree_index; /**< pointer to subtree index for option */
+ opt_len_type len_type; /**< type of option length field */
+ int optlen; /**< value length should be (minimum if VARIABLE) */
+ void (*dissect)(const struct ip_tcp_opt *,
+ tvbuff_t *,
+ int,
+ guint,
+ packet_info *,
+ proto_tree *); /**< routine to dissect option */
} ip_tcp_opt;
/** Routine to dissect options that work like IPv4 options, where the
length field in the option, if present, includes the type and
length bytes. */
extern void dissect_ip_tcp_options(tvbuff_t *, int, guint,
- const ip_tcp_opt *, int, int, packet_info *, proto_tree *, proto_item *);
+ const ip_tcp_opt *, int, int,
+ packet_info *, proto_tree *, proto_item *);
/** Routine to dissect options that work like IPv6 options, where the
length field in the option, if present, includes only the data, not
the type and length bytes. */
extern void dissect_ipv6_options(tvbuff_t *, int, guint,
- const ip_tcp_opt *, int, int, packet_info *, proto_tree *);
+ const ip_tcp_opt *, int, int,
+ packet_info *, proto_tree *);
#endif