aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/rrc
AgeCommit message (Collapse)AuthorFilesLines
2013-01-11Upgrade RRC dissector to v11.4.0Pascal Quantin7-133/+2834
svn path=/trunk/; revision=47041
2012-11-26Add missing OPTIONAL keyword in RRCConnectionRequest messagePascal Quantin1-1/+1
svn path=/trunk/; revision=46202
2012-11-13Pacify OSX-10.5 buildbotsPascal Quantin1-4/+4
svn path=/trunk/; revision=46017
2012-11-12Fix detection of H-RNTI when it is given after the DL-TransportChannelType ↵Pascal Quantin3-27/+29
configuration (typically in case of handoverToUTRANCommand) svn path=/trunk/; revision=46012
2012-11-07Avoid accessing a no more valid tvbuffPascal Quantin2-2/+10
svn path=/trunk/; revision=45957
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-3/+1
svn path=/trunk/; revision=45015
2012-09-10Initial commit to support yet another method of passing data between dissectors.Jakub Zawadzki2-7/+7
Add new parameter 'data' to heur_dissector_t and new_dissector_t, for now it's always NULL svn path=/trunk/; revision=44860
2012-08-15Fix field type for some 64 bits header fieldsPascal Quantin1-1/+0
svn path=/trunk/; revision=44513
2012-08-09From Jacob Nordgren and Rishie Sharma:Anders Broman2-25/+17
FP: fixed exotic bug where fakes counter was sometimes not reset, RRC: fixed bug where num_chans_per_flow was not properly cleared svn path=/trunk/; revision=44375
2012-08-08Various small changes:Pascal Quantin3-247/+235
- add a missing test on null pointer - always initialize rrc_nas_sys_info_gsm_map_type with a value from its associated enum - fix some typo errors - remove some useless directives from conformance file - detabify files (ASN.1 generated dissectors are indented with spaces) svn path=/trunk/; revision=44358
2012-08-08From Jacob Nordgren and Rishie Sharma:Anders Broman3-52/+248
- 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
2012-07-30Fix Coverity CID 712343: Wrong sizeof argument.Chris Maynard1-1/+1
svn path=/trunk/; revision=44136
2012-07-27From Jacob Nordgren and Rishie Sharma:Anders Broman2-2/+4
- Added basic support for tracking flows over reconfigured transport channels + mindor bugfixes - small fix in rrc, and some small cleanups svn path=/trunk/; revision=44062
2012-07-26Changes corresping toMichael Tüxen2-1/+2
http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=rev&revision=44040 svn path=/trunk/; revision=44041
2012-07-26From Jacob Nordgren and Rishie Sharma:Anders Broman2-3/+4
- FP and RLC fixed spelling - Fixed variable declaration in RRC - removed extra ppi in nbap svn path=/trunk/; revision=44035
2012-07-26From Jacob Nordgren and Rishie Sharma:Anders Broman3-0/+109
- RRC now configures logical channels in HS-DSCH hs, and some HSDSCH common support added - RLC: modifed memory management, MAC: dch would set the incorrect logical channel for RLC svn path=/trunk/; revision=44027
2012-07-18Put back r43768 that got removed by error in r43781Pascal Quantin2-2/+2
svn path=/trunk/; revision=43783
2012-07-18Merge the rest of Jacob Nordgren and Rishie Sharmas work onAnders Broman2-2/+2
Updateing conversation handling to dissect FP/MAC/RLC (Work in progress). svn path=/trunk/; revision=43781
2012-07-17Fix 'dereferencing type-punned pointer will break strict-aliasing rules' ↵Pascal Quantin2-2/+2
warning when compiling with gcc 4.1.3 svn path=/trunk/; revision=43768
2012-07-16From Jacob Nordgren and Rishie Sharma:Anders Broman2-1/+8
Handle RRC_MESSAGE_TYPE_BCCH_FACH. svn path=/trunk/; revision=43741
2012-06-28Update Free Software Foundation address.Jakub Zawadzki5-5/+5
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2012-06-19Use tvb_get_ephemeral_string_enc() in combination with ↵Pascal Quantin1-1/+1
proto_tree_add_unicode_string() (as recommended by Jakub on the mailing list) svn path=/trunk/; revision=43385
2012-06-19Use newly introduced proto_tree_add_unicode_string() to add UTF-8 stringsPascal Quantin1-0/+7
svn path=/trunk/; revision=43379
2012-06-13Use value_string_ext for arrays with more than 15 entriesPascal Quantin1-0/+31
svn path=/trunk/; revision=43243
2012-06-01Fix a couple of warningsAnders Broman1-5/+0
svn path=/trunk/; revision=42957
2012-05-30Dissect non segmented MiB and SiB:sAnders Broman1-0/+6
svn path=/trunk/; revision=42914
2012-05-28Use ett instead of hf variableAnders Broman2-3/+5
svn path=/trunk/; revision=42887
2012-04-15Fix compilation error under Windowspascal1-1/+1
svn path=/trunk/; revision=42082
2012-04-15Update RRC to V10.7.0 and add dissection of Core Network System Information IEspascal7-92/+2421
svn path=/trunk/; revision=42081
2012-04-11Display Home NodeB name.pascal1-0/+3
svn path=/trunk/; revision=42022
2011-12-22Add two missing calls to add_new_data_source().Bill Meier1-4/+6
svn path=/trunk/; revision=40277
2011-10-31Try to fix warnings.Anders Broman1-0/+1
svn path=/trunk/; revision=39690
2011-10-21For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.Bill Meier1-1/+1
Also: remove trailing whitespace for a number of files. svn path=/trunk/; revision=39503
2011-10-10Build the ASN.1 dissectors directly into epan/dissectors (rather than buildingJeff Morriss1-5/+0
them and then copying them over). The "all" target to builds these dissectors now (instead of "generate_files" and/or "copy_files"). asn2wrs's "-O" option now means "the dissector goes in this directory" (rather than "all output goes in this directory"); it also means that the "-s" (single output file) option is now required. Fix things up so that it's possible to build all of the ASN.1 dissectors in one shot. Fix building of conformance files when doing out-of-source-tree builds. Unfortunately "make all" in the asn1 directory always builds something--I think because of circular depedencies. svn path=/trunk/; revision=39333
2011-09-26Move tvb_new_octet_aligned() to tvbuff.c and use it.Anders Broman1-2/+2
svn path=/trunk/; revision=39150
2011-09-11From Pascal Quantin:Anders Broman7-81/+434
Update of 3GPP RRC and LTE RRC dissectors. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6333 svn path=/trunk/; revision=38964
2011-04-04Change the signature of elem_fcn():ns to include pinfo.Anders Broman1-2/+2
svn path=/trunk/; revision=36443
2010-05-13Update to V9.2.1 (2010-04)Anders Broman7-342/+1099
svn path=/trunk/; revision=32784
2010-04-29From Mike Morrin:Anders Broman1-0/+1
Dissection of BSSMAP IEs: Old BSS to New BSS Info and New BSS to Old BSS Info https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4712 svn path=/trunk/; revision=32606
2010-04-07#include <string.h> and/or #include <stdio.h> not needed.Bill Meier1-2/+0
svn path=/trunk/; revision=32417
2010-04-06#include <stdio.h> not needed.Bill Meier1-1/+0
svn path=/trunk/; revision=32405
2010-03-01Try to get rid of unused code warnings.Anders Broman1-0/+1
svn path=/trunk/; revision=32064
2010-03-01Try to get rid of unused code warnings.Anders Broman1-0/+3
svn path=/trunk/; revision=32063
2010-02-23Squelch a bunch of compiler warnings.Guy Harris1-1/+1
svn path=/trunk/; revision=31961
2010-02-02Try to get rid of unused code warnings.Anders Broman1-0/+1
svn path=/trunk/; revision=31773
2010-02-02Try to get rid of unused code warnings.Anders Broman1-0/+5
svn path=/trunk/; revision=31772
2010-01-19Update to V9.1.0 (2009-12)Anders Broman5-106/+1901
svn path=/trunk/; revision=31573
2010-01-05From Pascal Quantin:Anders Broman2-30/+4
[RRC] Update SIB PDU decoding. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4371 I also removed dummy code. svn path=/trunk/; revision=31451
2009-11-26Dissect RRC-container in RelocationResourceAllocation successful outcome.Anders Broman1-2/+0
svn path=/trunk/; revision=31082
2009-11-25Dissect more containers etc.Anders Broman2-1/+36
svn path=/trunk/; revision=31076