aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/ansi_map
AgeCommit message (Collapse)AuthorFilesLines
2012-01-18Fix some duplicate display filter names.Chris Maynard1-6/+6
svn path=/trunk/; revision=40568
2011-11-19Get rid of Warnings.Anders Broman1-8/+8
svn path=/trunk/; revision=39951
2011-11-18Use tvb_bcd_dig_to_ep_str().Anders Broman1-41/+3
svn path=/trunk/; revision=39929
2011-10-21For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.Bill Meier1-1/+1
Also: remove trailing whitespace for a number of files. svn path=/trunk/; revision=39503
2011-10-18Do some more conversions of proto_tree_add_item() 'encoding' argBill Meier1-9/+9
(previously missed). svn path=/trunk/; revision=39451
2011-10-15Convert asn1 template files proto_tree_add_item() 'encoding' arg for field ↵Bill Meier1-2/+2
types FT_STRING as follows: 1. If there's no character encoding (ENC_ASCII, ...) specified then use ENC_ASCII. 2. Always use ENC_NA (replacing any existing True/1/FALSE/0 /ENC_BIG_ENDIAN/ENC_LITTLE_ENDIAN). svn path=/trunk/; revision=39428
2011-10-10Build the ASN.1 dissectors directly into epan/dissectors (rather than buildingJeff Morriss1-7/+3
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. svn path=/trunk/; revision=39333
2011-10-10Convert 'encoding' parameter of certain proto_tree_add_item() calls in asn1/*:Bill Meier1-105/+105
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_BOOLEAN FT_IPv4 FT_EUI64 FT_GUID FT_UINT_STRING Also: For type FT_IPv6 use ENC_NA. (This was missed in SVN #39260) svn path=/trunk/; revision=39332
2011-10-06Convert 'encoding' parameter of certain proto_tree_add_item() calls in asn1 ↵Bill Meier1-97/+97
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 svn path=/trunk/; revision=39294
2011-07-21Try to do a more syntactically correct import.Anders Broman1-2/+4
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6150 svn path=/trunk/; revision=38159
2011-05-18Fix a couple (value) mistakes in value_strings. Found by Martin's patch on ↵Jeff Morriss1-5/+5
the -dev list. svn path=/trunk/; revision=37259
2011-02-07Add a missing IE found in trace from ↵Anders Broman1-1/+4
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5637 svn path=/trunk/; revision=35842
2011-02-05Remove debug printouts.Anders Broman1-3/+4
svn path=/trunk/; revision=35834
2011-02-04Introduce preferences to set the strictness of Invoke/responseAnders Broman1-12/+44
tracking. svn path=/trunk/; revision=35822
2011-01-16From Porus Mehta:Anders Broman1-7/+7
Corrections to ANSI MAP ASN.1 specifications. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5584 svn path=/trunk/; revision=35556
2010-12-28Add tvb_bcd_dig_to_ep_str()Anders Broman1-1/+5
/* * Given a tvbuff, an offset into the tvbuff, and a length that starts * at that offset (which may be -1 for "all the way to the end of the * tvbuff"), fetch BCD encoded digits from a tvbuff starting from either * the low or high half byte, formating the digits according to an input digit set, * if NUll a default digit set of 0-9 returning "?" for overdecadic digits will be used. * A pointer to the EP allocated string will be returned. * Note a tvbuff content of 0xf is considered a 'filler' and will end the conversion. */ svn path=/trunk/; revision=35286
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-6/+6
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-11-16Use value_string_ext fcns to access several value_string arrays;Bill Meier3-17/+39
Minor whitespace cleanup. svn path=/trunk/; revision=34900
2010-04-07#include <string.h> and/or #include <stdio.h> not needed.Bill Meier1-2/+0
svn path=/trunk/; revision=32417
2010-04-06#include <stdio.h> not needed.Bill Meier1-1/+0
svn path=/trunk/; revision=32405
2010-04-01Fix Tag value wrong in ansi_map.asn file for ServiceId in ServiceRequest ↵Anders Broman1-1/+1
message. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4637 svn path=/trunk/; revision=32354
2010-02-23Squelch a bunch of compiler warnings.Guy Harris1-4/+4
svn path=/trunk/; revision=31961
2010-01-13From Didier Gautheron:Anders Broman1-4/+0
col_clear.diff Remove calls to col_clear : - called twice. - before functions which also clear the column - by replacing col_clear + col_append_xxx with col_add_xxx https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4394 svn path=/trunk/; revision=31517
2010-01-07From Michael Lum:Anders Broman1-1/+11
Fixes for E911 mobile positioning capability and Handoff Back2. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4373 svn path=/trunk/; revision=31462
2009-12-18Dissect NumberPortabilityRequest return result.Anders Broman2-1/+16
svn path=/trunk/; revision=31306
2009-11-19From Michael Lum:Anders Broman1-2/+45
The attached patch calls the tap to allow the number of each type of message to be counted. The patch does not fix the "size"/number of octets column that is all zeroes. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4253 svn path=/trunk/; revision=31027
2009-11-19From Michael Lum:Anders Broman1-16/+52
MEID missing from some messages. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4252 svn path=/trunk/; revision=31025
2009-11-17Mobile On Channel carries no data.Anders Broman1-1/+1
svn path=/trunk/; revision=30998
2009-10-10gsmmap -> gsm_map to make directory name consistent with filenamesKovarththanan Rajaratnam2-4/+4
svn path=/trunk/; revision=30470
2009-10-08Remove unused NEED_PACKET_PROTO_H variableKovarththanan Rajaratnam1-1/+0
svn path=/trunk/; revision=30409
2009-09-15Don't call check_col(). Add a space at the end of each COL_INFO entry to ↵Jeff Morriss1-16/+8
make the column more readable when SCTP bundles multiple messages together. svn path=/trunk/; revision=29922
2009-09-06Rename address_to_str() to ep_address_to_str() because:Kovarththanan Rajaratnam1-112/+112
1) This indicates that the string has ephemeral lifetime 2) More consistent with its existing seasonal counterpart, se_address_to_str(). svn path=/trunk/; revision=29747
2009-08-09Don't guard col_set_str (COL_INFO/COL_PROTOCOL) with col_checkKovarththanan Rajaratnam1-4/+1
svn path=/trunk/; revision=29345
2009-06-24From Kovarththanan Rajaratnam:Stig Bjørlykke2-197/+197
More asn1/* header field info cleanup svn path=/trunk/; revision=28826
2009-06-20From Kovarththanan Rajaratnam via bug 3548:Stig Bjørlykke1-18/+18
More header_field_info cleanup in the asn1 cnf files. Dissectors will be regenerated later. svn path=/trunk/; revision=28782
2009-06-19From Anders: Fix wrong tag numbers.Stig Bjørlykke1-13/+13
Dissector will be generated when we fix some "empty blurb issues". svn path=/trunk/; revision=28774
2009-04-08Add dissection of:Anders Broman2-17/+262
- SMSDeliveryPointToPointAck - InterSystemSMSDeliveryPointToPoint - QualificationRequest2 svn path=/trunk/; revision=27991
2009-04-01According to the section 2.4 of the spec.Anders Broman1-5/+4
http://www.3gpp2.org/Public_html/specs/X.S0004-540-E_v2.0_070723.pdf mandatory parameters for the message Authentication Failure Report. 1. Electronic serial number 2. MSID(i.e MIN/IMSI) 3.Report Type 4.System Access Type 5.System Capabilities(Serving) svn path=/trunk/; revision=27923
2009-03-27In informationDirective use MSID instead of mobileIdentificationNumber.Anders Broman1-2/+3
svn path=/trunk/; revision=27858
2009-03-23From Michael Lum:Anders Broman1-55/+9
ANSI MAP FeatureRequest update https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3349 svn path=/trunk/; revision=27836
2009-03-23Fix: The AuthDir invoke is missing optional tags for a couple of parameters.Anders Broman1-19/+47
and FeatReq invoke fixes. svn path=/trunk/; revision=27831
2009-03-15As suggested by Jakub Zawadzki: g_free() is NULL safe, so we don't need ↵Bill Meier1-3340/+3335
check against it. Also (from me): Clean up spacing svn path=/trunk/; revision=27727
2009-03-11From Michael Lum:Anders Broman1-0/+2
More dissection of IOS parameters in ANSI MAP IOS Invoke/Response Data https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3323 svn path=/trunk/; revision=27695
2009-02-17From Michael Lum:Anders Broman1-0/+4
ANSI MAP fix for missing MEID/MSC ID number in RegNot https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3255 svn path=/trunk/; revision=27469
2009-02-07#include <epan/conversation.h> and/or #include <epan/emem.h> not req'd ...Bill Meier1-2/+0
svn path=/trunk/; revision=27390
2009-02-05From Michael Lum:Anders Broman1-2/+12
ANSI MAP digits type decode and bitmask corrections https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3233 svn path=/trunk/; revision=27379
2009-01-20From Michael Lum:Anders Broman2-12/+11
ANSI MAP fix for TRN digits/SMS and OTA subdissection https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3214 svn path=/trunk/; revision=27276
2008-12-18Fix various typos and spelling errors (mostly in text strings)Bill Meier2-13/+13
svn path=/trunk/; revision=27050
2008-12-17Fix some typos and spelling (mostly in text strings)Bill Meier1-1/+1
svn path=/trunk/; revision=27037
2008-12-03From Michael Lum:Anders Broman2-4/+70
- new service options - one comment was incorrect - Expanded a profile in one of the messages svn path=/trunk/; revision=26905