aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rx.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2014-02-16 14:41:07 +0100
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2014-02-16 13:43:21 +0000
commit4f7d3ea15fdbbf8002d364671989d87cdf1f0ff4 (patch)
treeca33116bbef8441fe326e9ee5738cf1754d47c78 /epan/dissectors/packet-rx.c
parent6010481bb9f602073cf9192330f2155f02bfd8fe (diff)
Fix indent (use tabs) and add modelines info
Change-Id: I2a25cc406a8c52b14ed5a0fb3cf906b1a8da5a18 Reviewed-on: https://code.wireshark.org/review/227 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-rx.c')
-rw-r--r--epan/dissectors/packet-rx.c17
1 files changed, 15 insertions, 2 deletions
diff --git a/epan/dissectors/packet-rx.c b/epan/dissectors/packet-rx.c
index fa5aae3a3c..ac00e92882 100644
--- a/epan/dissectors/packet-rx.c
+++ b/epan/dissectors/packet-rx.c
@@ -376,12 +376,12 @@ dissect_rx_acks(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree, int
/* Some implementations adds some extra fields.
* As far as I can see, these first add 3 padding bytes and then
- * up to 4 32-bit values. (0,3,4 have been witnessed)
+ * up to 4 32-bit values. (0,3,4 have been witnessed)
*
* RX as a protocol seems to be completely nondefined and seems to lack
* any sort of documentation other than "read the source of any of the
* (compatible?) implementations.
- */
+ */
if (tvb_length_remaining(tvb, offset)>3) {
offset += 3; /* guess. some implementations adds 3 bytes */
@@ -782,3 +782,16 @@ proto_reg_handoff_rx(void)
dissector_add_uint("udp.port", port, rx_handle);
dissector_add_uint("udp.port", UDP_PORT_RX_AFS_BACKUPS, rx_handle);
}
+
+/*
+ * Editor modelines - http://www.wireshark.org/tools/modelines.html
+ *
+ * Local variables:
+ * c-basic-offset: 8
+ * tab-width: 8
+ * indent-tabs-mode: t
+ * End:
+ *
+ * vi: set shiftwidth=8 tabstop=8 noexpandtab:
+ * :indentSize=8:tabSize=8:noTabs=yes:
+ */