aboutsummaryrefslogtreecommitdiffstats
path: root/packet-gsm_sms.c
AgeCommit message (Collapse)AuthorFilesLines
2004-07-18Move dissectors to epan/dissectors directory.Gilbert Ramirez1-2628/+0
Also move ncp222.py, x11-fields, process-x11-fields.pl, make-reg-dotc, and make-reg-dotc.py. Adjust #include lines in files that include packet-*.h files. svn path=/trunk/; revision=11410
2004-07-18Set the svn:eol-style property on all text files to "native", so thatGuy Harris1-1/+1
they have LF at the end of the line on UN*X and CR/LF on Windows; hopefully this means that if a CR/LF version is checked in on Windows, the CRs will be stripped so that they show up only when checked out on Windows, not on UN*X. svn path=/trunk/; revision=11400
2004-04-21From Michael Lum:Guy Harris1-3/+3
ANSI and GSM MAP stats enhancements and cleanups; enhanced parameter dissection related to SS for GSM A-interface and MAP; minor GSM SMS fix; GSM SS enhancements for parameter dissection; MTP3 statistics tap. svn path=/trunk/; revision=10655
2004-03-27From Michael Lum:Guy Harris1-8/+11
ANSI IS-801 support; dissect more GSM supplementary services messages and fields. svn path=/trunk/; revision=10503
2004-03-05From Michael Lum: fix the TP header dissection, for some messages theGuy Harris1-50/+67
wrong bits were used to identify the message content. svn path=/trunk/; revision=10312
2004-02-20Changed to allow GSM MAP to push up TPDUs.Guy Harris1-42/+33
svn path=/trunk/; revision=10127
2003-12-14Use "tvb_format_text()" to format 8-bit strings, so we don't haveGuy Harris1-6/+6
problems with non-printable characters. Don't un-constify "tvb_get_ptr()". svn path=/trunk/; revision=9281
2003-12-13"wctomb()" doesn't necessarily accept Unicode as input, and may produceGuy Harris1-47/+8
more than one character as output. Use "tvb_fake_unicode()" to handle Unicode strings, instead. Don't hand strings to "proto_tree_add_text()" - it expects a printf-style formatting operator, which means it'd treat "%" specially. Use "%s", or "%.*s", instead; use "%.*s" when we don't know that the string is null-terminated. svn path=/trunk/; revision=9280
2003-12-11prevent MSVC warning:Ulf Lamping1-2/+2
"warning C4761: Gr��enkonflikt im Argument. Konvertierung vorgenommen" -> size conflict in argument, conversion done svn path=/trunk/; revision=9244
2003-12-08Get rid of the private "my_decode_bitfield_value()" a number ofGuy Harris1-94/+53
dissectors had. Instead, rename it "other_decode_bitfield_value()", put it in "epan/to_str.c", and make "decode_bitfield_value()" use it. svn path=/trunk/; revision=9213
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-10-30No zero-length arrays, please.Guy Harris1-1/+5
svn path=/trunk/; revision=8832
2003-10-30From Michael Lum: squelch a couple of compiler warnings.Guy Harris1-5/+3
svn path=/trunk/; revision=8827
2003-10-30From Michael Lum:Guy Harris1-0/+2701
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