aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-catapult-dct2000.c
AgeCommit message (Collapse)AuthorFilesLines
2011-11-25Add the reason for a UL ReTx (PDCCH retx grant or PHICH NACK).martinm1-1/+7
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40001 f5534014-38df-0310-8fa8-9805f1628bb7
2011-11-21Add the system frame number (SFN) to the context fields logged along with ↵martinm1-3/+8
LTE MAC frames. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39971 f5534014-38df-0310-8fa8-9805f1628bb7
2011-11-15UMTS RLC:martinm1-7/+8
- add lookup for "unknown" channel type dissector (mode is known) - set length extent for SUFI root item - show data frames in the info column (at least for AM...) DCT: - call RLCDCH with "unknown" channel type (as don't know whether IP or RRC) - support R9 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39846 f5534014-38df-0310-8fa8-9805f1628bb7
2011-11-14Add remaining UMTS RLC primitive parameters preceding RLC payload.martinm1-1/+113
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39826 f5534014-38df-0310-8fa8-9805f1628bb7
2011-11-04Terminate a value_string.morriss1-1/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39731 f5534014-38df-0310-8fa8-9805f1628bb7
2011-11-03Add (most) primitive header items to the tree before calling UMTS RLC dissector.martinm1-3/+82
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39724 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-28Fix the width of a type (and hopefully please the buildbots).martinm1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39657 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-28First go at calling UMTS RLC dissector from IxCatapult logs.martinm1-1/+226
Had to change some #defines in the header file (for UDP-framed/heuristic dissector) - will need to update example sending program later on tonight. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39656 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-26Fix some proto_tree_add_item() encoding args;wmeier1-13/+16
Remove some unneeded #includes. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39612 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-21For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.wmeier1-1/+1
Also: remove trailing whitespace for a number of files. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39503 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-15Convert proto_tree_add_item() 'encoding' arg for field types FT_STRING, ↵wmeier1-5/+5
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). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39426 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-06Convert 'encoding' parameter of certain proto_tree_add_item() calls in ↵wmeier1-25/+25
non-autogenerated epan/dissectors: Specifically: Replace FALSE|0 and TRUE|1 by ENC_BIG_ENDIAN|ENC_LITTLE_ENDIAN as the encoding parameter for proto_tree_add_item() calls which directly reference an item in hf[] which has a type of: FT_UINT8 FT_UINT16 FT_UINT24 FT_UINT32 FT_UINT64 FT_INT8 FT_INT16 FT_INT24 FT_INT32 FT_INT64 FT_FLOAT FT_DOUBLE git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39288 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-04Use ENC_NA as encoding for proto_tree_add_item() calls which directly ↵wmeier1-3/+3
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 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39260 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-08Remove unneeded #includes: proto.h,tvbuff.h,value_string.h,stdlib.h,...wmeier1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38413 f5534014-38df-0310-8fa8-9805f1628bb7
2011-05-11Support multiple Scheduling Requests in one PDU.martinm1-16/+49
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37060 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-22Remove enum cast that doesn't do anything and causes a warning aboutsfisher1-1/+1
converting between enum types in clang 3.0 (trunk). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36815 f5534014-38df-0310-8fa8-9805f1628bb7
2011-03-22Don't assign top_ti - delete it for now.martinm1-13/+1
Coverity CID 862 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36254 f5534014-38df-0310-8fa8-9805f1628bb7
2011-03-16Don't increment after reading last outheader value (as reported by clang).martinm1-5/+5
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36203 f5534014-38df-0310-8fa8-9805f1628bb7
2011-03-15Try to fix checkApi script.martinm1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36197 f5534014-38df-0310-8fa8-9805f1628bb7
2011-03-15Fix calling of LTE dissectors for R9 DCT protocols.martinm1-6/+18
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36196 f5534014-38df-0310-8fa8-9805f1628bb7
2011-03-01Tweak the way we setup FP R8 info.martinm1-2/+9
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36107 f5534014-38df-0310-8fa8-9805f1628bb7
2011-02-02Add and use accessors to get/set per-packet data for LTE MAC.martinm1-5/+5
This will allow plugins to use the dissector. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35774 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-13Getting ready for R9 versions of some LTE protocols.martinm1-3/+6
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35518 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-12Introduce, and start using, tvb_get_const_stringz(). This function returns amorriss1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35493 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-06(After discussion on -dev) revert 35393: the old code is faster (and it is ↵morriss1-24/+30
safe). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35400 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-06Use tvb_get_ephemeral_stringz() instead of tvb_get_strsize() plus (sometimes ↵morriss1-30/+24
multiple) calls to tvb_get_ptr(). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35393 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-05Remove a stray debug printf().martinm1-3/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35374 f5534014-38df-0310-8fa8-9805f1628bb7
2010-12-23Properly read UL grant subframe number.martinm1-6/+9
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35251 f5534014-38df-0310-8fa8-9805f1628bb7
2010-12-23Skip an outheader field.martinm1-0/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35250 f5534014-38df-0310-8fa8-9805f1628bb7
2010-12-21Be more consistent about how offset is updated while dissecting lte_rrc fields.martinm1-2/+9
Show cell-id in info column (if don't manage to call RRC). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35237 f5534014-38df-0310-8fa8-9805f1628bb7
2010-12-20From Papan Kumar Singh (bug 5504 & 5505):martinm1-0/+1
Add missing break so that PDCP-LTE direction is set properly. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35228 f5534014-38df-0310-8fa8-9805f1628bb7
2010-12-20Rename the routines that handle dissector tables with unsigned integerguy1-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.) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35224 f5534014-38df-0310-8fa8-9805f1628bb7
2010-12-15Add support for FP E-DCH T2 frames.martinm1-0/+18
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35188 f5534014-38df-0310-8fa8-9805f1628bb7
2010-12-05Add more PHY attributes to MAC frames.martinm1-0/+7
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35125 f5534014-38df-0310-8fa8-9805f1628bb7
2010-11-28Fix calling of LTE RRC dissector for "rrc_lte_r8" frames.martinm1-5/+6
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35050 f5534014-38df-0310-8fa8-9805f1628bb7
2010-11-05Pass ueid + channel-info into PDCP dissector.martinm1-3/+10
This will allow me soon to track per-channel sequence numbers... git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34793 f5534014-38df-0310-8fa8-9805f1628bb7
2010-11-02Add 'ndi' and 'harq-id' as new MAC-PHY DL attributes.martinm1-0/+8
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34753 f5534014-38df-0310-8fa8-9805f1628bb7
2010-09-23Replace blurbs that match the name (case insensitive) with NULL.morriss1-8/+8
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34227 f5534014-38df-0310-8fa8-9805f1628bb7
2010-08-25Let DCT2000 tree extend to end of ipprim or sctpprim bytes.martinm1-3/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33919 f5534014-38df-0310-8fa8-9805f1628bb7
2010-08-18Fix ipprim IPv6 port number offsets.martinm1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33840 f5534014-38df-0310-8fa8-9805f1628bb7
2010-08-18Show IPv6 addresses in ipprim summary line.martinm1-2/+12
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33839 f5534014-38df-0310-8fa8-9805f1628bb7
2010-08-12Improve the way the encoded FP variant is interpreted.martinm1-1/+9
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33785 f5534014-38df-0310-8fa8-9805f1628bb7
2010-07-29Don't use sprintf().martinm1-4/+5
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33668 f5534014-38df-0310-8fa8-9805f1628bb7
2010-07-29Improve display of tty lines.martinm1-5/+25
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33667 f5534014-38df-0310-8fa8-9805f1628bb7
2010-07-05Show grant-subframe from context info.martinm1-0/+5
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33437 f5534014-38df-0310-8fa8-9805f1628bb7
2010-07-05For DL HARQ retx, support knowing result or not.martinm1-1/+8
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33431 f5534014-38df-0310-8fa8-9805f1628bb7
2010-05-25Add a filter for DCT2000 error strings, and allow it be included in ↵martinm1-0/+10
generated filters from RLC status window. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32946 f5534014-38df-0310-8fa8-9805f1628bb7
2010-04-30Trivial: Update AUTHORS entry, remove out-of-date comments, minor formattingmartinm1-4/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32611 f5534014-38df-0310-8fa8-9805f1628bb7
2010-03-15Declare sip_uri_offset_init() as returning void and remove a couple unused ↵morriss1-7/+38
variables git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32195 f5534014-38df-0310-8fa8-9805f1628bb7
2010-02-28Added svn:ignore targets.stig1-7/+7
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32055 f5534014-38df-0310-8fa8-9805f1628bb7