aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ansi_map.c
AgeCommit message (Collapse)AuthorFilesLines
2003-11-16Export "protocol_t" as an opaque type.Guy Harris1-7/+1
Make "proto_is_protocol_enabled()" and "proto_get_protocol_short_name()" take a "protocol_t *" as an argument, so they don't have to look up the "protocol_t" - this will probably speed them up considerably, and they're called on almost every dissector handoff. Get rid of a number of "proto_is_protocol_enabled()" calls that aren't necessary (dissectors called through handles, including those called through dissector tables, or called as heuristic dissectors, aren't even called if their protocol isn't enabled). Change some direct dissector calls to go through handles. svn path=/trunk/; revision=8979
2003-11-11From Michael Lum:Guy Harris1-27/+195
Minor improvements. Added IEI level decoding of cdma2000 Handoff * IOS data parameters. svn path=/trunk/; revision=8935
2003-11-09From Michael Lum: add the ability to put parameter data at the end ofGuy Harris1-676/+884
the parameter name so that the user doesn't have to open the parameter subtree to see the most important data. Use "%u", not "%d", to print unsigned quantities. Get rid of includes of <gmodule.h> (we're not loading any code at run-time in the dissector itself), and <sys/types.h> and <netinet/in.h> (we shouldn't need either of those). svn path=/trunk/; revision=8922
2003-10-30From Michael Lum: step over unknown parameters.Guy Harris1-5/+6
svn path=/trunk/; revision=8834
2003-10-30From Michael Lum:Guy Harris1-4/+37
GSM BSSMAP (GSM 08.08) support GSM DTAP (3GPP TS 24.008) support GSM SMS (3GPP TS 24.011) support GSM SS (3GPP TS 24.080) support GSM SMS TPDU (3GPP TS 23.040) support svn path=/trunk/; revision=8826
2003-10-28From Michael Lum: fixed BCD decoding of filler nibble and fixed someGuy Harris1-6/+4
minor bugs. svn path=/trunk/; revision=8803
2003-10-16From Michael Lum: add missing g_free() calls.Guy Harris1-1/+6
svn path=/trunk/; revision=8716
2003-10-06From Michael Lum:Guy Harris1-7/+35
IS-637-A (SMS) support IS-683-A (OTA) support ANSI MAP updates Fix a typo in the previous checkin. svn path=/trunk/; revision=8628
2003-10-06From Lars Roland: not all compilers like static const arrays withGuy Harris1-334/+338
unknown size, so don't use them. svn path=/trunk/; revision=8623
2003-10-03From Michael Lum: ANSI MAP support.Guy Harris1-0/+12894
svn path=/trunk/; revision=8606