aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rlc.h
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2012-08-15 21:45:32 +0000
committerPascal Quantin <pascal.quantin@gmail.com>2012-08-15 21:45:32 +0000
commit12a705af47fcfe8c5b397759d62559f17a494fc1 (patch)
tree957f0c454c664276a5208e2c47ef6fc3aeec213f /epan/dissectors/packet-rlc.h
parent983d7a543f255347e864716e33df80fd1c872b19 (diff)
Miscellaneous changes:
- move channel information before header dissection - add channel information to TM and RLC Control PDUs - take into account rlc information in rlc_is_ciphered function - update function prototypes according to the coding rules used in packet-rlc.c svn path=/trunk/; revision=44535
Diffstat (limited to 'epan/dissectors/packet-rlc.h')
-rw-r--r--epan/dissectors/packet-rlc.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/epan/dissectors/packet-rlc.h b/epan/dissectors/packet-rlc.h
index a3940f8632..a18020b28f 100644
--- a/epan/dissectors/packet-rlc.h
+++ b/epan/dissectors/packet-rlc.h
@@ -56,6 +56,9 @@ typedef struct rlc_info
* resets on transport channel swap. */
void rlc_reset_channel(enum rlc_mode mode, guint8 rbid, guint8 dir, guint32 urnti);
+/* Tells other functions if this packet is ciphered or not */
+gboolean rlc_is_ciphered(packet_info * pinfo);
+
/*****************************************************************/
/* UDP framing format */
/* ----------------------- */
@@ -122,8 +125,4 @@ void rlc_reset_channel(enum rlc_mode mode, guint8 rbid, guint8 dir, guint32 urnt
continues until the end of the frame) */
#define RLC_PAYLOAD_TAG 0x01
-
-/*Tells other functions if this packet is ciphered or not*/
-gboolean rlc_is_ciphered(packet_info * pinfo);
-
#endif /* PACKET_RLC_H */