aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-nas_eps.c
AgeCommit message (Collapse)AuthorFilesLines
2012-07-17Use same capitalization for Service request message as for other messagesPascal Quantin1-2/+2
svn path=/trunk/; revision=43761
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2012-06-25Fix dissection of NAS EPS Service Request message (broken in r42200)Pascal Quantin1-8/+21
svn path=/trunk/; revision=43474
2012-06-25Fix typo errorsPascal Quantin1-5/+5
svn path=/trunk/; revision=43473
2012-06-14Fix function name (it is an Authentication failure, not an Attach failure)Pascal Quantin1-2/+2
svn path=/trunk/; revision=43255
2012-06-14Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7368 :Pascal Quantin1-1/+1
Identity request, Identity response and Authentication failure message dissection are swapped svn path=/trunk/; revision=43253
2012-05-21Display Element ID in hexadecimal (like in 3GPP specs)pascal1-4/+4
Display EPS bearer ID in decimal svn path=/trunk/; revision=42755
2012-05-20Upgrade NAS EPS dissector to Release 10 (10.6.1)pascal1-55/+192
svn path=/trunk/; revision=42722
2012-05-07General minor cleanup including:Bill Meier1-216/+216
- remove unneeded #includes; - use val_to_str_const() as appropriate; - reformat hf[] entries; - reformat long lines; - use #if 0/#endif to coment out code instead of /* ... */; - remove boilerplate comments; - whitespace & indentation svn path=/trunk/; revision=42487
2012-05-04value_string_ext: Reorder entries in value_string arrays to get Binary ↵Jakub Zawadzki1-1/+1
Search instead of Linear Search. svn path=/trunk/; revision=42418
2012-04-24From David Wei:Anders Broman1-53/+74
Bug fixes and improvements to Sm (GTPv2) and SGmb (DIAMETER) dissectors. svn path=/trunk/; revision=42220
2012-03-13Use tvb_new_subset_remaining(...) in place of tvb_new_subset(..., -1, -1);Bill Meier1-66/+76
Use value_string_ext to reference a few value_strings; Use val_to_str_const() in place of val_to_str() in a few cases; Use BASE_NONE for a few hf[] FT_BOOLEAN entries with 0x0 bitmask. svn path=/trunk/; revision=41539
2012-03-02Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-22/+20
svn path=/trunk/; revision=41305
2012-02-29From Pascal Quantin:Anders Broman1-1/+1
[NAS EPS] Fix description of EPS Attach information element. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6886 svn path=/trunk/; revision=41245
2012-02-15From Pascal Quantin:Anders Broman1-2/+3
[NAS EPS] PDN Connectivity Request message dissection fixes. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6845 svn path=/trunk/; revision=41033
2012-01-24From Pascal Quantin:Anders Broman1-13/+16
Dissect operator-specific QCI values in EPS quality of service IE https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6760 svn path=/trunk/; revision=40699
2012-01-23Fix some duplicate display filter names.Chris Maynard1-2/+2
svn path=/trunk/; revision=40664
2011-12-19Updates from David Wei.Anders Broman1-2/+25
svn path=/trunk/; revision=40244
2011-11-22Fix bugs related to Nounce IE dissection.Anders Broman1-4/+4
svn path=/trunk/; revision=39987
2011-11-17Fix "With the current changes NAS messages with the "null ciphering ↵Anders Broman1-13/+2
algorithm" EEA0 are not handled." https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6348 svn path=/trunk/; revision=39911
2011-10-30From Pascal Quantin:Anders Broman1-2/+2
Fix dissection of PLMN List IE. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6513 svn path=/trunk/; revision=39674
2011-10-25From Pascal Quantin.Anders Broman1-1/+1
wrong decoding of Activate default EPS bearer context request message containing a IPv6 interface id. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6484 svn path=/trunk/; revision=39575
2011-10-21For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.Bill Meier1-4/+4
Also: remove trailing whitespace for a number of files. svn path=/trunk/; revision=39503
2011-10-16From Pascal Quantin.Anders Broman1-10/+33
LTE Positioning Protocol dissector https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6460 svn path=/trunk/; revision=39436
2011-10-13From Pascal Quantin.Anders Broman1-9/+21
a follow-up patch that fixes the dissection of the Generic NAS transport messages. svn path=/trunk/; revision=39405
2011-10-12From Pascal Quantin.Anders Broman1-6/+59
Add dissection of Location services messages https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6454 svn path=/trunk/; revision=39395
2011-10-04Use ENC_NA as encoding for proto_tree_add_item() calls which directly ↵Bill Meier1-4/+4
reference an hf item (in hf[] with types: FT_NONE FT_BYTES FT_IPV6 FT_IPXNET FT_OID Note: Encoding field set to ENC_NA only if the field was previously TRUE|FALSE|ENC_LITTLE_ENDIAN|ENC_BIG_ENDIAN svn path=/trunk/; revision=39260
2011-09-23Tighten the check on wheter a message really is chipered or not.Anders Broman1-0/+12
svn path=/trunk/; revision=39096
2011-09-11From Pascal Quantin:Anders Broman1-6/+6
Update of 3GPP RRC and LTE RRC dissectors. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6333 svn path=/trunk/; revision=38964
2011-08-16Use col_append_sep_str() to comma-separate info column text. Fixes bug 6186.Chris Maynard1-3/+3
Reference: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6186 svn path=/trunk/; revision=38564
2011-07-15Fix gcc 4.6 "set but not used [-Wunused-but-set-variable]" warnings;Bill Meier1-3288/+3286
Whitespace changes: "4 space tabs" --> spaces. svn path=/trunk/; revision=38047
2011-05-17All ELEM_MAND_* macros ensure curr_len > 0; no need to check again afterwards.Chris Maynard1-11/+5
Resolves Coverity CIDs 381-382. svn path=/trunk/; revision=37200
2011-04-27From Pascal Quantin:Anders Broman1-81/+194
Enhance the dissection of MM, GMM, SM, EPS EMM and EPS ESM protocols according to 3GPP 24.008 V9.6.0 and 24.301 V9.6.0. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5866 svn path=/trunk/; revision=36918
2011-04-04Get rid of gsm_a_dtap_pinfo.Anders Broman1-48/+42
svn path=/trunk/; revision=36444
2011-04-04Change the signature of elem_fcn():ns to include pinfo.Anders Broman1-39/+39
svn path=/trunk/; revision=36443
2011-04-04Change the msg_fcn() signature to include pinfo.Anders Broman1-67/+67
svn path=/trunk/; revision=36441
2011-02-22From Pascal Quantin:Anders Broman1-24/+24
[3GPP protocols] Prettify the display of Mandatory Value information elements https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5711 svn path=/trunk/; revision=36026
2011-02-10- Add message name to info col in case of SERVICE REQUEST.Anders Broman1-210/+209
- Get rid of check_col - proto_tree_add_item -> ENC_BIG_ENDIAN svn path=/trunk/; revision=35893
2011-01-25Export de_emm_trac_area_id.Anders Broman1-1/+1
svn path=/trunk/; revision=35646
2011-01-12Set gsm_a_dtap_pinfo->link_dir to get proper dissection of PCO.Anders Broman1-92/+152
svn path=/trunk/; revision=35510
2011-01-12Update a value_string.Anders Broman1-3/+5
svn path=/trunk/; revision=35502
2011-01-07Add dissection of more IE:sAnders Broman1-1/+1
svn path=/trunk/; revision=35417
2010-12-27Try to apiece the Ubuntu buildbot.Anders Broman1-1/+1
svn path=/trunk/; revision=35270
2010-12-27move the enum to packet-gsm_a_common toAnders Broman1-50/+59
make it possible to use element dissecton from this dissector in other dissectors. It is left in packet-nas_EPS.c as a comment for easier reference. svn path=/trunk/; revision=35269
2010-11-29From Vincent Helfre:Anders Broman1-0/+53
Make it possible to dissect NAS EPS messages without security header. svn path=/trunk/; revision=35062
2010-11-16The IPv6 "element" in PDN address information element is a 8 byte Anders Broman1-20/+20
IPv6 interface identifier. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5408 svn path=/trunk/; revision=34914
2010-10-17From Pascal Quantin:Anders Broman1-6/+48
[NAS EPS] Enhance dissection of APN-AMBR IE https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5304 svn path=/trunk/; revision=34535
2010-10-10Define some fcns & vars as static ...Bill Meier1-95/+97
svn path=/trunk/; revision=34458
2010-10-06From Pascal Quantin:Anders Broman1-1/+11
[NAS EPS] Add dissection of special conformance testing functions https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5278 svn path=/trunk/; revision=34394
2010-09-29From Pascal Quantin:Anders Broman1-2/+57
[NAS EPS] Add dissection of EPS network feature support IE https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5264 svn path=/trunk/; revision=34279