aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ranap.c
AgeCommit message (Collapse)AuthorFilesLines
2003-12-21warning: ISO C does not allow extra ; outside of a functionJörg Mayer1-2/+2
svn path=/trunk/; revision=9387
2003-12-01From Michael Lum: add a heuristic RANAP dissector, for use atop SCCP, asGuy Harris1-1/+40
the SCCP dissector currently doesn't support conversations to be given dissectors. svn path=/trunk/; revision=9131
2003-10-06From packet steve: get rid of some duplicate field definitions (someGuy Harris1-7/+1
aren't exactly duplicates, but they both set the same hf_ variable). svn path=/trunk/; revision=8621
2003-10-03From Michael Lum:Guy Harris1-22/+59
support for Global RNC ID; fixed some typos added push of 'NAS PDU' so that a GSM 24.008 (DTAP) dissector can be added. svn path=/trunk/; revision=8608
2003-04-22- get rid of col_set_fence: it will be called in packet-sctp.c only.Michael Tüxen1-2/+1
- replace DATA1 by DATA in packet-m3ua.c (typo) svn path=/trunk/; revision=7529
2003-04-19- add better INFO column handling using col_set_fence.Michael Tüxen1-3/+3
- change my e-mail. svn path=/trunk/; revision=7502
2002-12-10- get rid of registering as SUA light upper layer (support for SUA lightMichael Tüxen1-6/+5
will be dropped), RANAP will be an upper layer of SUA. - register as upper layer of SCCP with the ITU assigned subsystem number svn path=/trunk/; revision=6776
2002-08-28Removed trailing whitespaces from .h and .c files using theJörg Mayer1-1418/+1418
winapi_cleanup tool written by Patrik Stridvall for the wine project. svn path=/trunk/; revision=6117
2002-08-02Replace the types from sys/types.h and netinet/in.h by their glib.hJörg Mayer1-9/+1
equivalents for the toplevel directory. The removal of winsock2.h will hopefully not cause any problems under MSVC++, as those files using struct timeval still include wtap.h, which still includes winsock2.h. svn path=/trunk/; revision=5932
2002-07-17From Joerg Mayer:Guy Harris1-5/+1
dftest.c: Remove #if-0-ed includes packet-ieee80211.c, packet-wtls.c, packet-afp.c, packet-wsp.c, packet-wtp.c, ethereal_gen.py: Remove redundant include varargs (already in snprintf.h, and required only for snprintf.h) Remove unused include of snprintf.h from files not using "snprintf()". svn path=/trunk/; revision=5889
2002-04-14From Joerg Mayer: get rid of some unused variables and arguments.Guy Harris1-3/+3
Use "tvb_get_ntohs()" to fetch the checksum from a VJ compressed packet, rather than doing the ntoh by hand. svn path=/trunk/; revision=5163
2002-01-24Replace a bunch of "tvb_length()" and "tvb_length_remaining()" calls inGuy Harris1-10/+4
arguments to "proto_tree_add_text()", and to "proto_tree_add_XXX()" calls that add FT_NONE or FT_PROTO items to the protocol tree, with -1. Replace some calls to "tvb_length()" or "tvb_length_remaining()" with calls to "tvb_reported_length()" and "tvb_reported_length_remaining()", as those give the actual length of the data in the packet, not just the data that happened to be captured. svn path=/trunk/; revision=4605
2002-01-21Include files from the "epan" directory and subdirectories thereof withGuy Harris1-2/+2
"epan/..." pathnames, so as to avoid collisions with header files in any of the directories in which we look (e.g., "proto.h", as some other package has its own "proto.h" file which it installs in the top-level include directory). Don't add "-I" flags to search "epan", as that's no longer necessary (and we want includes of "epan" headers to fail if the "epan/" is left out, so that we don't re-introduce includes lacking "epan/"). svn path=/trunk/; revision=4586
2001-12-10Move the pointer to the "column_info" structure in the "frame_data"Guy Harris1-7/+7
structure to the "packet_info" structure; only stuff that's permanently stored with each frame should be in the "frame_data" structure, and the "column_info" structure is not guaranteed to hold the column values for that frame at all times - it was only in the "frame_data" structure so that it could be passed to dissectors, and, as all dissectors are now passed a pointer to a "packet_info" structure, it could just as well be put in the "packet_info" structure. That saves memory, by shrinking the "frame_data" structure (there's one of those per frame), and also lets us clean up the code a bit. svn path=/trunk/; revision=4370
2001-12-03Make "dissector_add()", "dissector_delete()", and "dissector_change()"Guy Harris1-5/+7
take a dissector handle as an argument, rather than a pointer to a dissector function and a protocol ID. Associate dissector handles with dissector table entries. svn path=/trunk/; revision=4308
2001-09-13Squelch a "signed vs. unsigned comparison" warning (which warned of aGuy Harris1-2/+2
real problem, if "byte_span" were 0 - that would only happen if "bitoffset" and "bitlength" were both 0, and "bitlength" should never be 0). svn path=/trunk/; revision=3929
2001-06-18From Joerg Mayer: explicitly fill in all members of aGuy Harris1-112/+112
"header_field_info" structure, including the ones that are later set by the routines to register fields. svn path=/trunk/; revision=3561
2001-06-06Updates from Martin Held.Guy Harris1-1/+3
svn path=/trunk/; revision=3521
2001-06-01Updates from Martin Held.Guy Harris1-15/+53
svn path=/trunk/; revision=3495
2001-05-25Fix Gerald's e-mail address.Guy Harris1-2/+2
svn path=/trunk/; revision=3451
2001-04-25Wrap "VALS()" around pointers to "value_string" arrays, to suppress GCCGuy Harris1-66/+66
complaints. svn path=/trunk/; revision=3379
2001-04-24RANAP support, from Martin Held.Guy Harris1-0/+4772
svn path=/trunk/; revision=3375