aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-catapult-dct2000.c
AgeCommit message (Collapse)AuthorFilesLines
2011-01-13Getting ready for R9 versions of some LTE protocols.Martin Mathieson1-3/+6
svn path=/trunk/; revision=35518
2011-01-12Introduce, and start using, tvb_get_const_stringz(). This function returns aJeff Morriss1-33/+27
pointer to a NULL-terminated string in the TVB. It is no safer than dissectors which call tvb_get_strsize() and then tvb_get_ptr() but it makes it clear that this usage of tvb_get_ptr() is safe. This function is slightly more efficient than tvb_get_ephemeral_stringz()--but only as long as we're not using composite TVBs. svn path=/trunk/; revision=35493
2011-01-06(After discussion on -dev) revert 35393: the old code is faster (and it is ↵Jeff Morriss1-24/+30
safe). svn path=/trunk/; revision=35400
2011-01-06Use tvb_get_ephemeral_stringz() instead of tvb_get_strsize() plus (sometimes ↵Jeff Morriss1-30/+24
multiple) calls to tvb_get_ptr(). svn path=/trunk/; revision=35393
2011-01-05Remove a stray debug printf().Martin Mathieson1-3/+3
svn path=/trunk/; revision=35374
2010-12-23Properly read UL grant subframe number.Martin Mathieson1-6/+9
svn path=/trunk/; revision=35251
2010-12-23Skip an outheader field.Martin Mathieson1-0/+2
svn path=/trunk/; revision=35250
2010-12-21Be more consistent about how offset is updated while dissecting lte_rrc fields.Martin Mathieson1-2/+9
Show cell-id in info column (if don't manage to call RRC). svn path=/trunk/; revision=35237
2010-12-20From Papan Kumar Singh (bug 5504 & 5505):Martin Mathieson1-0/+1
Add missing break so that PDCP-LTE direction is set properly. svn path=/trunk/; revision=35228
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-1/+1
keys to have _uint in their names, to match the routines that handle dissector tables with string keys. (Using _port can confuse people into thinking they're intended solely for use with TCP/UDP/etc. ports when, in fact, they work better for things such as Ethernet types, where the binding of particular values to particular protocols are a lot stronger.) svn path=/trunk/; revision=35224
2010-12-15Add support for FP E-DCH T2 frames.Martin Mathieson1-0/+18
svn path=/trunk/; revision=35188
2010-12-05Add more PHY attributes to MAC frames.Martin Mathieson1-0/+7
svn path=/trunk/; revision=35125
2010-11-28Fix calling of LTE RRC dissector for "rrc_lte_r8" frames.Martin Mathieson1-5/+6
svn path=/trunk/; revision=35050
2010-11-05Pass ueid + channel-info into PDCP dissector.Martin Mathieson1-3/+10
This will allow me soon to track per-channel sequence numbers... svn path=/trunk/; revision=34793
2010-11-02Add 'ndi' and 'harq-id' as new MAC-PHY DL attributes.Martin Mathieson1-0/+8
svn path=/trunk/; revision=34753
2010-09-23Replace blurbs that match the name (case insensitive) with NULL.Jeff Morriss1-8/+8
svn path=/trunk/; revision=34227
2010-08-25Let DCT2000 tree extend to end of ipprim or sctpprim bytes.Martin Mathieson1-3/+2
svn path=/trunk/; revision=33919
2010-08-18Fix ipprim IPv6 port number offsets.Martin Mathieson1-2/+2
svn path=/trunk/; revision=33840
2010-08-18Show IPv6 addresses in ipprim summary line.Martin Mathieson1-2/+12
svn path=/trunk/; revision=33839
2010-08-12Improve the way the encoded FP variant is interpreted.Martin Mathieson1-1/+9
svn path=/trunk/; revision=33785
2010-07-29Don't use sprintf().Martin Mathieson1-4/+5
svn path=/trunk/; revision=33668
2010-07-29Improve display of tty lines.Martin Mathieson1-5/+25
svn path=/trunk/; revision=33667
2010-07-05Show grant-subframe from context info.Martin Mathieson1-0/+5
svn path=/trunk/; revision=33437
2010-07-05For DL HARQ retx, support knowing result or not.Martin Mathieson1-1/+8
svn path=/trunk/; revision=33431
2010-05-25Add a filter for DCT2000 error strings, and allow it be included in ↵Martin Mathieson1-0/+10
generated filters from RLC status window. svn path=/trunk/; revision=32946
2010-04-30Trivial: Update AUTHORS entry, remove out-of-date comments, minor formattingMartin Mathieson1-4/+3
svn path=/trunk/; revision=32611
2010-03-14Add some extra (optional) physical layer attributes to logged MAC frames.Martin Mathieson1-7/+38
svn path=/trunk/; revision=32190
2010-02-27Get rid of unnecessary casting away of const.Guy Harris1-7/+7
svn path=/trunk/; revision=32024
2010-02-18Recognise update string for SR failure, and show ueid in MAC if set.Martin Mathieson1-2/+5
svn path=/trunk/; revision=31916
2010-01-25From Didier Gautheron via bug 4419:Stig Bjørlykke1-15/+0
se_alloc and ep_alloc never return NULL and se_alloc0 already initialized data with 0. svn path=/trunk/; revision=31654
2010-01-08Add needed offset to 'radio-type' attached to MAC frame.Martin Mathieson1-1/+1
svn path=/trunk/; revision=31469
2009-12-29Getting ready to dissect CPRI C&M commands.Martin Mathieson1-0/+125
svn path=/trunk/; revision=31391
2009-10-28Flag errors with expert info.Martin Mathieson1-2/+12
svn path=/trunk/; revision=30748
2009-10-26Add a preference to control whether or not comment strings are scanned for ↵Martin Mathieson1-2/+13
oob LTE MAC messages. Scanning them is probably quite slow. svn path=/trunk/; revision=30713
2009-10-26Add support for displaying/filtering some LTE MAC out-of-band events.Martin Mathieson1-1/+78
svn path=/trunk/; revision=30711
2009-10-26Add support for showing/filtering/resaving logged LTE strings.Martin Mathieson1-18/+38
svn path=/trunk/; revision=30700
2009-09-14Show UEId in info column for CCCH frames.Martin Mathieson1-1/+5
svn path=/trunk/; revision=29892
2009-09-06Don't pass ep_alloc()'ed strings to col_set_str().Kovarththanan Rajaratnam1-1/+1
Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3984 svn path=/trunk/; revision=29726
2009-08-26(FWIW) One step towards including stdio.h & stdlib.h only when req'd.Bill Meier1-0/+1
svn path=/trunk/; revision=29568
2009-08-25Show CRC errors for RARs.Martin Mathieson1-6/+2
svn path=/trunk/; revision=29548
2009-08-15Allow s1ap not to be dissected (to avoid seeing errors, possibly due to ↵Martin Mathieson1-1/+13
proprietary variants). svn path=/trunk/; revision=29420
2009-07-13Remove calls to check_col(), and stop giving '{' a line of its own.Martin Mathieson1-302/+160
svn path=/trunk/; revision=29078
2009-07-07Add preference for turning off LTE RRC.Martin Mathieson1-3/+13
svn path=/trunk/; revision=28988
2009-07-07From Kovarththanan Rajaratnam:Stig Bjørlykke1-1/+1
More FT_XXX cleanup. svn path=/trunk/; revision=28971
2009-06-18From Kovarththanan Rajaratnam via bug 3548:Stig Bjørlykke1-3/+3
(1) Trailing/leading spaces are removed from 'name's/'blurb's (2) Duplicate 'blurb's are replaced with NULL (3) Empty ("") 'blurb's are replaced with NULL (4) BASE_NONE, NULL, 0x0 are used for 'display', 'strings' and 'bitmask' fields for FT_NONE, FT_BYTES, FT_IPv4, FT_IPv6, FT_ABSOLUTE_TIME, FT_RELATIVE_TIME, FT_PROTOCOL, FT_STRING and FT_STRINGZ field types (5) Only allow non-zero value for 'display' if 'bitmask' is non-zero svn path=/trunk/; revision=28770
2009-05-26Misc dissector cleanup:Bill Meier1-18/+12
- Make some fcns & vars static - hf[] blurbs: "" and repeated text --> NULL - Move proto_register & proto_reg_handoff to end of source - packet-catapult-dct2000: simplify proto_reg_handoff - Use consistent indentation svn path=/trunk/; revision=28488
2009-05-13- add direction filter to PDCPMartin Mathieson1-14/+42
- fix PDCP fields ("pdcp.*" -> "pdcp-lte.*") - improve PDCP info column output (to be more like RLC) svn path=/trunk/; revision=28342
2009-05-11Enable preference to call LTE RRC for data inside PDCP frames.Martin Mathieson1-36/+38
svn path=/trunk/; revision=28329
2009-04-28Try to cast away win64 buildbot problem.Martin Mathieson1-1/+1
svn path=/trunk/; revision=28191
2009-04-28Avoid calling strlen() lots of unnecessary times when parsing outhdr values.Martin Mathieson1-3/+5
svn path=/trunk/; revision=28190