aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/tetra
AgeCommit message (Collapse)AuthorFilesLines
2011-11-21Get rid of Warnings.etxrab1-5/+4
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39980 f5534014-38df-0310-8fa8-9805f1628bb7
2011-11-20Remove export.etxrab3-38/+38
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39956 f5534014-38df-0310-8fa8-9805f1628bb7
2011-11-20See if this fixes it, why it worked on my system is anybodys guess.etxrab1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39955 f5534014-38df-0310-8fa8-9805f1628bb7
2011-11-20Get rid of Warnings.etxrab1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39954 f5534014-38df-0310-8fa8-9805f1628bb7
2011-11-15At least as I read the code, there can be up to 3 receive channels (theguy1-1/+9
number of channels is XXX & 0x03, hence in the range 0-3. Thanks and a tip of the hat to Clang Cat for catching this. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39839 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-10Fix unused function warningsetxrab1-1/+10
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39338 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-10Build the ASN.1 dissectors directly into epan/dissectors (rather than buildingmorriss1-4/+0
them and then copying them over). The "all" target to builds these dissectors now (instead of "generate_files" and/or "copy_files"). asn2wrs's "-O" option now means "the dissector goes in this directory" (rather than "all output goes in this directory"); it also means that the "-s" (single output file) option is now required. Fix things up so that it's possible to build all of the ASN.1 dissectors in one shot. Fix building of conformance files when doing out-of-source-tree builds. Unfortunately "make all" in the asn1 directory always builds something--I think because of circular depedencies. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39333 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-06Convert 'encoding' parameter of certain proto_tree_add_item() calls in asn1 ↵wmeier1-1/+1
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@39294 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-05Use ENC_NA as encoding for proto_tree_add_item() calls which directly ↵wmeier1-1/+1
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|1|0|ENC_LITTLE_ENDIAN|ENC_BIG_ENDIAN git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39263 f5534014-38df-0310-8fa8-9805f1628bb7
2011-09-27Get rid of check_col, while at it set ENC.etxrab2-112/+39
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39164 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-16Based on patch from Denis Ovsienko viamorriss1-1/+1
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6244 : Fix typo: s/unkown/unknown/ git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38561 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-12Removed some unused variables.stig1-3/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36602 f5534014-38df-0310-8fa8-9805f1628bb7
2011-02-12Remove an unused ett_ variable.morriss1-2/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35927 f5534014-38df-0310-8fa8-9805f1628bb7
2011-02-02Warning: packet-tetra.c does not have an SVN Id tag.etxrab1-3/+5
Error: the blurb for field "Carrier Number" ("tetra.carrier") matches the field name in packet-tetra.c Error: the blurb for field "PDU" ("tetra.pdu") matches the field name in packet-tetra.c Error: Found deprecated APIs in packet-tetra.c: dissector_add git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35769 f5534014-38df-0310-8fa8-9805f1628bb7
2011-02-02Integrate and build the tetra dissector.etxrab1-175/+170
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35766 f5534014-38df-0310-8fa8-9805f1628bb7
2011-02-02Add the local makefiles.etxrab3-0/+102
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35755 f5534014-38df-0310-8fa8-9805f1628bb7
2011-02-02From Holger Freyther:etxrab3-246/+216
- Code Cleanups and preparation to call code from gsmtap - Fix a bug in the asn1 file, Bug found with traces from OsmocomTETRA git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35754 f5534014-38df-0310-8fa8-9805f1628bb7
2011-02-02The Beijing Institute of Technology (BIT) and associate professor LI Hai has ↵etxrab4-0/+3387
created a TETRA decoder for wireshark, they made the decision to use the ASN1 infrastructure for creating the dissector and were kind enough to send the GPLed sourcecode to us(The Osmocom Group). This group is using a protocol provided by their equipment. This is an initial checkin of the code from BIT, it is not fit for inclusion in Wireshark in this state. Further patches are expected before the code can be integrated by being added to the makefiles. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35753 f5534014-38df-0310-8fa8-9805f1628bb7