aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/rrc/packet-rrc-template.h
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2012-08-08 17:24:14 +0000
committerAnders Broman <anders.broman@ericsson.com>2012-08-08 17:24:14 +0000
commita1218c94c9ece40dda22ed74c2dfc6bb0faa7991 (patch)
tree886b5b59f625fba939a2a92561328c967595c338 /asn1/rrc/packet-rrc-template.h
parente0e533d643fbac41ddea4dc7495dc4fed221aff9 (diff)
From Jacob Nordgren and Rishie Sharma:
- FP: added header CRC validation, added crc11.c and crc11.h in wsutil/ for EDCH 11 bit CRC, fixed bug in RRC, And also smaller bugfixes in umts_fp and rrc. svn path=/trunk/; revision=44349
Diffstat (limited to 'asn1/rrc/packet-rrc-template.h')
-rw-r--r--asn1/rrc/packet-rrc-template.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/asn1/rrc/packet-rrc-template.h b/asn1/rrc/packet-rrc-template.h
index 25ac34f8a2..0b4ce10059 100644
--- a/asn1/rrc/packet-rrc-template.h
+++ b/asn1/rrc/packet-rrc-template.h
@@ -46,6 +46,20 @@ typedef struct rrc_info
enum rrc_message_type msgtype[MAX_RRC_FRAMES];
} rrc_info;
+/*Struct for storing ciphering information*/
+typedef struct rrc_ciph_info_
+{
+ int seq_no[31][2]; /*Indicates for each Rbid when ciphering starts*/
+ GTree * /*guint32*/ start_cs; /*Start value for CS counter*/
+ GTree * /*guint32*/ start_ps; /*Start value for PS counter*/
+ guint32 conf_algo_indicator; /*Indicates which type of ciphering algorithm used*/
+ guint32 int_algo_indiccator; /*Indicates which type of integrity algorithm used*/
+ unsigned int setup_frame; /*Store which frame contained this information*/
+ guint32 ps_conf_counters[31][2]; /*This should also be made for CS*/
+
+} rrc_ciphering_info;
extern GTree * hsdsch_muxed_flows;
+extern GTree * rrc_ciph_inf;
+
#endif /* PACKET_RRC_H */