aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rlc.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2016-01-16 16:51:46 -0800
committerGuy Harris <guy@alum.mit.edu>2016-01-17 00:52:14 +0000
commit25699b67580eb4ef4f1dde542e860a714390a607 (patch)
tree7d62c9f0e772c243a1c67aa879dcc940e0d81c70 /epan/dissectors/packet-rlc.h
parent330162378440b44b6faeaea20c868e70c48d228a (diff)
Don't look at pinfo->pseudo_header.
On the off chance that UMTS FP traffic is being carried over a pseudowire. :-) Change-Id: I8db0fbe96545c08f4748bf9ec046e2dc4f2c2cc6 Reviewed-on: https://code.wireshark.org/review/13342 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan/dissectors/packet-rlc.h')
-rw-r--r--epan/dissectors/packet-rlc.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/epan/dissectors/packet-rlc.h b/epan/dissectors/packet-rlc.h
index f58c1ae52a..31820495a0 100644
--- a/epan/dissectors/packet-rlc.h
+++ b/epan/dissectors/packet-rlc.h
@@ -22,6 +22,8 @@
#ifndef PACKET_RLC_H
#define PACKET_RLC_H
+#include <wiretap/wtap.h>
+
/* Do not change enum order and append only to keep
backward compatibility with UDP framing format */
enum rlc_mode {
@@ -52,7 +54,7 @@ typedef struct rlc_info
/* Reset the specified channel's reassembly data, useful for when a sequence
* resets on transport channel swap. */
-void rlc_reset_channel(enum rlc_mode mode, guint8 rbid, guint8 dir, guint32 urnti);
+void rlc_reset_channel(enum rlc_mode mode, guint8 rbid, guint8 dir, guint32 urnti, struct atm_phdr *atm);
/* Tells other functions if this packet is ciphered or not */
gboolean rlc_is_ciphered(packet_info * pinfo);