aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-gsm_sim.c
AgeCommit message (Collapse)AuthorFilesLines
2013-12-19Rename a couple of to_str functions to have ep_ in the name. This makes itEvan Huus1-1/+1
obvious that the returned string is ephemeral, and opens up the original names in the API for versions that take a wmem pool (and thus can work in any scope). svn path=/trunk/; revision=54249
2013-12-15Fix [-Wmissing-prototypes]Jakub Zawadzki1-3/+3
svn path=/trunk/; revision=54135
2013-12-05Try to please OSX-10.5-x86 buildbotPascal Quantin1-1/+1
svn path=/trunk/; revision=53794
2013-12-05Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9503 :Pascal Quantin1-2/+2
Fix dissection of STK SEND SHORT MESSAGE proactive command svn path=/trunk/; revision=53793
2013-11-16Put "GSM SIM" in protocol columnPascal Quantin1-0/+3
svn path=/trunk/; revision=53367
2013-11-13Add more GSM SIM Toolkit info to info columnPascal Quantin1-0/+2
svn path=/trunk/; revision=53302
2013-10-29From didier gautheron: remove redundant or use faster col_xxx functionsBill Meier1-3/+3
- when the text parameter is constant col_add_str() and col_set_str() are equivalent but col_set_str() is faster. - same for replace col_append_fstr and col_append_str - remove col_clear() when it's redundant: + before a col_set/col_add if the dissector can't throw an exception. - replace col_append() after a col_clear() with faster col_add... or col_set https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9344 svn path=/trunk/; revision=52948
2013-09-29Add a MBIM (Mobile Broadband Interface Model) dissectorPascal Quantin1-0/+1
Still to be done: - fragmentation support - plug the MBIM dissector on USB dissector svn path=/trunk/; revision=52279
2013-06-11Add PDC and TETRAPascal Quantin1-0/+2
svn path=/trunk/; revision=49889
2013-06-11From Tyson Key via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8788 :Jeff Morriss1-0/+1
ETSI TS 102 221 V8.2.0 (2009-06) (http://www.etsi.org/deliver/etsi_ts/102200_102299/102221/08.02.00_60/ts_102221v080200p.pdf) says that file ID 0x7F31 is reserved for use by iDEN network operators (e.g. Nextel in the USA). The attached patch updates the GSM SIM dissector's table of recognised FIDs accordingly. svn path=/trunk/; revision=49888
2013-03-28Add dissection of Terminal Profile byte 32Pascal Quantin1-0/+64
svn path=/trunk/; revision=48611
2013-03-27Fix the incorrectly duplicated display filters for hf_tp_bip_tcp_local and ↵Chris Maynard1-2/+2
hf_tp_bip_udp_local. svn path=/trunk/; revision=48596
2012-10-24Add dissection of ENVELOPE 3GPP SMS-PP DownloadPascal Quantin1-0/+1
svn path=/trunk/; revision=45768
2012-10-18Add a few EUTRAN related elementary files and reorder some value_string arraysPascal Quantin1-26/+34
svn path=/trunk/; revision=45629
2012-10-16Add dissection of ENVELOPE event download and timer expirationPascal Quantin1-1/+8
svn path=/trunk/; revision=45600
2012-10-16Fix dissection of BER-TLV and COMPREHENSION-TLV length and COMPREHENSION-TLV tagPascal Quantin1-1/+17
svn path=/trunk/; revision=45595
2012-10-11Enhance dissection of Terminal ProfilePascal Quantin1-89/+1043
svn path=/trunk/; revision=45490
2012-10-09Add another check for command APDU dissectionPascal Quantin1-1/+3
svn path=/trunk/; revision=45435
2012-10-09Fix dissection of more instructions when having only the command APDUPascal Quantin1-10/+29
svn path=/trunk/; revision=45433
2012-10-09Fix dissection of Get Response when not in SIMtrace modePascal Quantin1-4/+16
svn path=/trunk/; revision=45425
2012-10-08Add "gsm_sim.command" and "gsm_sim.response" dissectors and call them in ↵Pascal Quantin1-27/+66
btsap dissector https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7715 svn path=/trunk/; revision=45411
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-08-01Follow-up of r44162: clean more filtersPascal Quantin1-1/+1
svn path=/trunk/; revision=44187
2012-07-31Updated GSM dissectors display filters per checkfiltername.plMichael Mann1-114/+114
Tried to provide consistency with GSM dissector (protocol) names, even if the filenames now don't match the dissector name. svn path=/trunk/; revision=44162
2012-06-28Update FSF address - part II.Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=43538
2012-03-21From Martin Kaiser via ↵Jeff Morriss1-0/+1
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6977 : The attached (trivial) patch adds some missing breaks in switch-case blocks. This fixes coverity defects #445, #446, #1316 and #1380. svn path=/trunk/; revision=41727
2012-03-18From Harald Welte: patch adding the missing hf[] entries ...Bill Meier1-0/+12
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6355#c11 svn path=/trunk/; revision=41651
2012-02-08From Harald Welte:Anders Broman1-0/+4
GSMTAP dissector: introduce a dissector table. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6810 svn path=/trunk/; revision=40934
2012-02-08Small whitespace fix.Jörg Mayer1-3/+3
svn path=/trunk/; revision=40926
2012-02-07packet-gsm_sim.c was the wrong file to check in.Jörg Mayer1-5/+4
I meant ui/gtk/voip_calls_dlg.c. svn path=/trunk/; revision=40915
2012-02-07Fix "variable set but not used" warnings turned error. In at leastJörg Mayer1-4/+5
one case this looks like a logic bug and should be investigated. svn path=/trunk/; revision=40914
2012-02-06Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-3/+3
svn path=/trunk/; revision=40899
2012-02-05Checked in, with the following changes:Jörg Mayer1-0/+1675
- Adapted packet-gsm_sim.c and CmakeLists.txt to match current content (trivial) - Fixed warnings about //-style comments that were found running ../../tools/checkAPIs.pl -g deprecated -g prohibited -g abort -g termoutput packet-gsm_sim.c packet-etsi_card_app_toolkit.c Error: Found C++ style comments in packet-gsm_sim.c - Not fixed (will lead to dissector abort if in a packet): ../../tools/checkhf.pl packet-gsm_sim.c packet-etsi_card_app_toolkit.c ERROR: NO ARRAY: packet-gsm_sim.c, hf_tprof_b19 ERROR: NO ARRAY: packet-gsm_sim.c, hf_tprof_b18 ERROR: NO ARRAY: packet-etsi_card_app_toolkit.c, hf_ctlv_bearer_descr Please provide the necessary element entries for the hf[] array in a followup patch. svn path=/trunk/; revision=40854