aboutsummaryrefslogtreecommitdiffstats
path: root/asn1
AgeCommit message (Collapse)AuthorFilesLines
2012-09-11Add data parameter to dissector_try_uint_newJakub Zawadzki4-22/+22
svn path=/trunk/; revision=44874
2012-09-11Add data parameter to call_dissector_only.Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=44872
2012-09-11Add data parameter to dissector_try_heuristicJakub Zawadzki3-4/+4
svn path=/trunk/; revision=44871
2012-09-10Initial commit to support yet another method of passing data between dissectors.Jakub Zawadzki46-260/+259
Add new parameter 'data' to heur_dissector_t and new_dissector_t, for now it's always NULL svn path=/trunk/; revision=44860
2012-09-10Propage changes done in generated dissectors to asn1/Jakub Zawadzki6-39/+43
svn path=/trunk/; revision=44845
2012-09-03MT: move global frame_end_routines to packet_info.Jakub Zawadzki2-6/+6
svn path=/trunk/; revision=44748
2012-08-24match display filter prefix for all filtersMichael Mann1-3/+3
svn path=/trunk/; revision=44653
2012-08-22Add French National parameter ↵Anders Broman1-1/+5
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7656 svn path=/trunk/; revision=44612
2012-08-21Add dissection of locationInformation IE in Ericsson proprietary extensionPascal Quantin3-3/+57
svn path=/trunk/; revision=44605
2012-08-21Fix filter names for Ericsson proprietary extensionsPascal Quantin2-2/+3
svn path=/trunk/; revision=44604
2012-08-21Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7648 :Pascal Quantin4-5/+68
Add support for Ericsson proprietary extensions to GSM MAP dissector svn path=/trunk/; revision=44603
2012-08-20Remove unused hf_gsm_map_imsi_digits entry and fix filter name for ↵Pascal Quantin1-6/+1
hf_gsm_map_TBCD_digits (which is also used for IMEI, ASCI call reference, MS Group ID and MS Long Group ID on top of IMSI) svn path=/trunk/; revision=44596
2012-08-20Avoid defining 2 entries with incompatible types (FT_BYTES vs FT_NONE) and ↵Pascal Quantin1-0/+5
same filter svn path=/trunk/; revision=44595
2012-08-19use session allocated memory for rtp_add_address/srtp_add_address hash tablesMichael Mann1-13/+4
svn path=/trunk/; revision=44571
2012-08-18make hash key session scopedMichael Mann2-33/+9
cleanup g_snprintf svn path=/trunk/; revision=44565
2012-08-18Mark a parameter as unused.Guy Harris2-13/+6
Clean up indentation and get rid of trailing white space. svn path=/trunk/; revision=44562
2012-08-18epan/dissectors/packet-ansi_map.c shouldn't be edited - it's generatedGuy Harris1-3/+1
from the files in asn1/ansi_map. Update packet-ansi_map-template.c to reflect the use of session-scope-allocated data for the saved invoke data, and regenerate the dissector - which means that TransactionId_table_cleanup() still exists, and is still used, it just frees only the hash table key, which is g_strdup()ed, not the value, which is automatically freed when the session-scope-allocated data is all freed. svn path=/trunk/; revision=44561
2012-08-18epan/dissectors/packet-ansi_tcap.c shouldn't be edited - it's generatedGuy Harris1-4/+1
from the files in asn1/ansi_tcap. Update packet-ansi_tcap-template.c to reflect the use of session-scope-allocated data for the saved invoke data, and regenerate the dissector - which means that TransactionId_table_cleanup() still exists, and is still used, it just frees only the hash table key, which is g_strdup()ed, not the value, which is automatically freed when the session-scope-allocated data is all freed. svn path=/trunk/; revision=44560
2012-08-15Remove non ASCCI charactersPascal Quantin1-4/+4
svn path=/trunk/; revision=44534
2012-08-15Fix some headers fields that were wrongly marked as 64 bits instead of 32 bitsPascal Quantin1-29/+1
svn path=/trunk/; revision=44533
2012-08-15Fix field type for some 64 bits header fieldsPascal Quantin5-5/+45
svn path=/trunk/; revision=44513
2012-08-10Fix missing dissection of HSDSCH-Paging-System-InformationFDD (bug ↵Pascal Quantin2-18/+20
introduced in r44037) and HSDSCH-MACdPDUSizeFormat (bug introduced in r44423). While we are at it, fix a few typo errors. svn path=/trunk/; revision=44434
2012-08-10Try to make the buildbot happy.Anders Broman1-10/+2
svn path=/trunk/; revision=44425
2012-08-10From Jacob Nordgren and Rishie Sharma:Anders Broman2-1683/+2049
RLC: changed so reassembly fail flag is set per channel instead of globally. RLC: added reset channel function Added support for reconfigurin HSDSCH flows, and E-DCH flows (just needs to figure out when it should become active for 'overloaded' ports), also changed slightly how ehs headers are configured in nbap. Removed extra (debugging) port in nbap This is the last patch set for a while. svn path=/trunk/; revision=44423
2012-08-09Fix a comment.Anders Broman1-3/+4
svn path=/trunk/; revision=44386
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 Broman4-53/+250
- 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-08-02From Jacob Nordgren and Rishie Sharma:Anders Broman1-3/+3
NBAP: fixed segfault, FP: aesthetic fix, RLC: added channel info to GUI, MAC-is: fixed case with reassembly when a middle segment arrives MAC, RLC, added preferences for LI-size and TSN-size svn path=/trunk/; revision=44205
2012-08-01Follow-up of r44162: gsm_a_gm dissector is used for both GPRS Mobility ↵Pascal Quantin1-6/+6
Management and Session Management protocols. Update filter names accordingly. svn path=/trunk/; revision=44183
2012-08-01Fix Coverity CID 280019 (formerly 19): "Logically dead code" that abroman ↵Chris Maynard1-1/+1
previously commited a fix for in r17532, but forgot to also commit a change to asn1/snmp/packet-snmp-template.c as well, so the change was apparently inadvertently reverted the next time that packet-snmp.c was regenerated. svn path=/trunk/; revision=44179
2012-07-31- Put back not used constants to fill value_strings_ext.Anders Broman3-2/+11
- Don't dissect RRC container, it seems to only cause grief. svn path=/trunk/; revision=44156
2012-07-31Restore includes from r44107 to fix abi check.Jakub Zawadzki1-0/+3
Reverted (by mistake?) in r44129 svn path=/trunk/; revision=44154
2012-07-31From Jacob Nordgren and Rishie Sharma:Anders Broman2-139/+144
NBAP: added preferences to change logical channel id to mac content type mapping. svn path=/trunk/; revision=44151
2012-07-30Fix Coverity CID 712343: Wrong sizeof argument.Chris Maynard1-1/+1
svn path=/trunk/; revision=44136
2012-07-30From Jacob Nordgren and Rishie Sharma:Anders Broman1-3/+0
-MAC-is update svn path=/trunk/; revision=44129
2012-07-29Try to fix ABI check.Jakub Zawadzki1-0/+3
svn path=/trunk/; revision=44107
2012-07-27From Jacob Nordgren and Rishie Sharma:Anders Broman4-20/+89
- 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 Broman6-3/+191
- 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-21Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7508 :Pascal Quantin1-0/+1
Display snmp.contextName as FT_STRING svn path=/trunk/; revision=43883
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 Broman4-19/+149
Updateing conversation handling to dissect FP/MAC/RLC (Work in progress). svn path=/trunk/; revision=43781
2012-07-17Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7470 :Pascal Quantin3-9/+22
Add support for OID 1.3.6.1.5.2.2 svn path=/trunk/; revision=43771
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-17Remove extra space after message namePascal Quantin1-40/+40
svn path=/trunk/; revision=43760
2012-07-16Comment a few unused variables / functionsPascal Quantin1-7/+7
svn path=/trunk/; revision=43754
2012-07-16From Jacob Nordgren and Rishie Sharma:Anders Broman4-11/+356
Updated conversation handling to dissect FP/MAC/RLC svn path=/trunk/; revision=43749
2012-07-16From Jacob Nordgren and Rishie Sharma:Anders Broman2-1/+8
Handle RRC_MESSAGE_TYPE_BCCH_FACH. svn path=/trunk/; revision=43741