aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-3g-a11.c
AgeCommit message (Collapse)AuthorFilesLines
2014-04-06Apply found fix-encoding-args.pl errors in the dissector directory.Michael Mann1-24/+24
I coincidentally found a few files with errors, so I thought it might be time to run it on the whole directory again. Change-Id: Ia32e54b3b1b94e5a418ed758ea79807c8bc7e798 Reviewed-on: https://code.wireshark.org/review/978 Reviewed-by: Michael Mann <mmann78@netscape.net>
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
(Using sed : sed -i '/^ \* \$Id\$/,+1 d') Fix manually some typo (in export_object_dicom.c and crc16-plain.c) Change-Id: I4c1ae68d1c4afeace8cb195b53c715cf9e1227a8 Reviewed-on: https://code.wireshark.org/review/497 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2013-11-09Include <epan/to_str.h> only when needed.Jakub Zawadzki1-0/+1
svn path=/trunk/; revision=53189
2013-10-23#if 0 numerous "unused const variables" (mostly value-string-arrays);Bill Meier1-0/+2
Also; fix a few "set but not used" warnings. svn path=/trunk/; revision=52780
2013-10-13Minor whitespace, formatting & etc changes.Bill Meier1-208/+177
svn path=/trunk/; revision=52588
2013-10-06Improve "eHRPD Indicator" NVSE dissection in 3GPP2 A11 Registration Request. ↵Michael Mann1-1/+34
Bug 9206 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9206) From Masayuki Takemura svn path=/trunk/; revision=52403
2013-09-12Convert a few dissectors from emem to wmem APIPascal Quantin1-1/+2
svn path=/trunk/; revision=51983
2013-05-25Batch of filterable expert_infos.Michael Mann1-3/+13
svn path=/trunk/; revision=49581
2013-04-09Coverity CID 281193: Dead codeMartin Kaiser1-12/+3
svn path=/trunk/; revision=48801
2013-04-05Fix some bugs that showed up as format warnings.Guy Harris1-7/+8
Use "offset +" in the calls to fill in the Info column, as presumably the values being put into that column are the same as the values being put into the protocol tree, and those have offsets based on the offset variable. svn path=/trunk/; revision=48755
2013-04-05Add dissection from BCMCS spec.Anders Broman1-31/+338
svn path=/trunk/; revision=48754
2013-04-03Get rid of non-ASCII characters.Jeff Morriss1-7/+7
svn path=/trunk/; revision=48722
2013-04-03- Extend and correct value strings.Anders Broman1-32/+82
- Fix tree handling for QoS. - Add references. svn path=/trunk/; revision=48718
2013-03-29Rename value string (and similar) functions to use a consistent pattern. ThisEvan Huus1-1/+1
was done using textual search+replace, not anything syntax-aware, so presumably it got most comments as well (except where there were typos). Use a consistent coding style, and make proper use of the WS_DLL_* defines. Group the functions appropriately in the header. I ended up getting rid of most of the explanatory comments since many of them duplicated what was in the value_string.c file (and were out of sync with the recent updates I made to those in r48633). Presumably most of the comments should be in the .h file not the .c file, but there's enough churn ahead that it's not worth fixing yet. Part of https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8467 svn path=/trunk/; revision=48634
2013-03-13- [-Wmissing-prototypes]Anders Broman1-1/+1
- explicit casts. svn path=/trunk/; revision=48282
2013-03-12- [-Wmissing-prototypes]Anders Broman1-0/+4
- explicit casts. svn path=/trunk/; revision=48265
2013-01-31Comment out unused hf[] entries & etc.Bill Meier1-5/+15
(found by checkhf) svn path=/trunk/; revision=47389
2012-10-06pinfo is now usedPascal Quantin1-1/+1
svn path=/trunk/; revision=45338
2012-10-06Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7801 :Pascal Quantin1-3/+13
Ensure that the sub-type length is at least 2 (for sub-type and length fields). Prevents an infinite loop when the length equals 0. svn path=/trunk/; revision=45337
2012-09-23replaced decode_boolean_bitfield calls with itemized filtersMichael Mann1-44/+51
svn path=/trunk/; revision=45059
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=45017
2012-09-10Initial commit to support yet another method of passing data between dissectors.Jakub Zawadzki1-1/+1
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-10Use val_to_str_const() where appropriate;Bill Meier1-1/+1
Also (for a few files): - create/use some extended value strings; - remove unneeded #include files; - remove unneeded variable initialization; - re-order fcns slightly so prefs_reg_handoff...() at end, etc svn path=/trunk/; revision=44438
2012-06-28Update FSF address - part II.Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=43538
2012-06-04Get rid of a couple of warnings.Anders Broman1-1/+1
svn path=/trunk/; revision=43066
2012-04-23the blurb for field /"PCF IP Address/" (/"a11.ext.ase.pcfip/") matches the ↵Anders Broman1-1/+1
field name in packet-3g-a11.c svn path=/trunk/; revision=42215
2012-04-23Replace hf[] "duplicate blurbs" by NULL;Bill Meier1-449/+455
Use consistent indentation (replace 4-space tabs by spaces); Use consistent formatting style. svn path=/trunk/; revision=42211
2012-03-02Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-2/+0
svn path=/trunk/; revision=41313
2011-12-28Fix Coverity CID 1342: UNUSED_VALUEChris Maynard1-4/+4
svn path=/trunk/; revision=40315
2011-12-27Dissect Service Option Profile.Anders Broman1-1/+66
svn path=/trunk/; revision=40297
2011-12-25Revisit the spec, value is 16 bits.Anders Broman1-22/+4
svn path=/trunk/; revision=40289
2011-12-25Use packet-radius.c to dissect embedded AVP:s.Anders Broman1-237/+90
svn path=/trunk/; revision=40288
2011-12-22Use item lenght when dissecting Additional Session Info.Anders Broman1-63/+91
svn path=/trunk/; revision=40283
2011-12-20Add some additional links to more up to date specfications.Chris Maynard1-0/+2
svn path=/trunk/; revision=40254
2011-11-03Fix GRE Key entryAnders Broman1-14/+2
svn path=/trunk/; revision=39729
2011-10-21For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.Bill Meier1-8/+8
Also: remove trailing whitespace for a number of files. svn path=/trunk/; revision=39503
2011-10-15Convert proto_tree_add_item() 'encoding' arg for field types FT_STRING, ↵Bill Meier1-1/+1
FT_STRINGZ, FT_UINT_STRING as follows: 1. If there's no character encoding (ENC_ASCII, ...) specified then use ENC_ASCII. 2. For all but FT_UINT_STRING, always use ENC_NA (replacing any existing True/1/FALSE/0 /ENC_BIG_ENDIAN/ENC_LITTLE_ENDIAN). svn path=/trunk/; revision=39426
2011-10-11Fix benign bugs wherein proto_tree_add_uint() was intended instead of ↵Bill Meier1-1/+1
proto_tree_add_item(); (Replaces changes made in SVN #39351). svn path=/trunk/; revision=39361
2011-10-10 Fix benign bugs in some proto_tree_add_item() 'encoding' args;Bill Meier1-3/+3
svn path=/trunk/; revision=39351
2011-09-19RFC 4282 says the NAI is UTF-8.Guy Harris1-7/+2
svn path=/trunk/; revision=39042
2011-09-19Some probably-erroneous TRUEs as the last argument toGuy Harris1-2/+2
proto_tree_add_item(); the items were one byte long, so the byte order is irrelevant. svn path=/trunk/; revision=39040
2011-09-19Use ENC_BIG_ENDIAN instead of FALSE in proto_tree_add_item() calls forGuy Harris1-25/+34
integral values. For the Network Access Identifier, use ENC_UTF_8. svn path=/trunk/; revision=39039
2011-07-05Add ett_a11_rqi_grantedqos to the list of ett_ values to be allocated.Guy Harris1-6/+7
Clean up indentation. svn path=/trunk/; revision=37906
2011-06-06Fix Unix compilation error...Stephen Fisher1-1/+0
packet-3g-a11.c:135: warning: 'hf_a11_fqi_granted_qos' defined but not used ... by removing definition svn path=/trunk/; revision=37575
2011-06-06On behalf of Ericsson - enhance A11 dissection.Anders Broman1-69/+229
svn path=/trunk/; revision=37573
2011-05-11Eliminate redundant blurbsJeff Morriss1-15/+15
svn path=/trunk/; revision=37055
2011-05-10Make sure we set a variable.Gerald Combs1-19/+21
svn path=/trunk/; revision=37044
2011-05-10On behalf of Ericsson update the A11 dissector.Anders Broman1-38/+253
svn path=/trunk/; revision=37041
2011-04-14Revert r24047. Fixes bug 5822.Chris Maynard1-27/+1
svn path=/trunk/; revision=36642
2011-02-17Fix various Visual C++ analysis warnings.Gerald Combs1-2/+2
svn path=/trunk/; revision=35985