aboutsummaryrefslogtreecommitdiffstats
path: root/packet-x25.c
AgeCommit message (Collapse)AuthorFilesLines
1999-12-12Finished improving display of facilities :Olivier Abad1-136/+378
- use a subtree for each facility - decode the DTE address when appropriate Address decoding in call setup and clearing packets : - the A bit is the first bit of the general format identifier - correct use of this A bit (toa parameter) in x25_ntoa svn path=/trunk/; revision=1300
1999-12-10Use decode_numeric_bitfield for address length in call packetsOlivier Abad1-7/+5
svn path=/trunk/; revision=1277
1999-12-09Class A facilities decoding :Olivier Abad1-51/+117
- correct a problem with throughput class calculation - improved the display using decode_xxx_bitfield() svn path=/trunk/; revision=1269
1999-12-09Put X.25 Facilities in call packets in a subtreeOlivier Abad1-60/+74
Decode a new facility (0xD2 : Priority) svn path=/trunk/; revision=1260
1999-11-29Change Olivier's e-mail address.Gilbert Ramirez1-2/+2
svn path=/trunk/; revision=1158
1999-11-16Replace the ETT_ "enum" members, declared in "packet.h", withGuy Harris1-20/+26
dynamically-assigned "ett_" integer values, assigned by "proto_register_subtree_array()"; this: obviates the need to update "packet.h" whenever you add a new subtree type - you only have to add a call to "proto_register_subtree_array()" to a "register" routine and an array of pointers to "ett_", if they're not already there, and add a pointer to the new "ett_" variable to the array, if they are there; would allow run-time-loaded dissectors to allocate subtree types when they're loaded. svn path=/trunk/; revision=1043
1999-10-18Olivier Abad's patches to add:Guy Harris1-119/+234
more display filters for X.25; no LCN in X.25 RESTART / DIAGNOSTIC / REGISTRATION packets; support for nettl file format (nettl is a trace tool for HP-UX). For now, it only supports traces for X.25 interfaces (tested with HP-UX 10.20). svn path=/trunk/; revision=879
1999-10-12New proto_tree header_field_info stuff. Header_field_infos now containGilbert Ramirez1-3/+6
the base for numbers to be displayed in, bitmasks for bitfields, and blurbs (which are one or two sentences describing the field). proto_tree_add*() routines now automatically handle bitfields. You tell it which header field you are adding, and just pass it the value of the entire field, and the proto_tree routines will do the masking and shifting for you. This means that bitfields are more naturally filtered via dfilter now. Added Phil Techau's support for signed integers in dfilters/proto_tree. Added the beginning of the SNA dissector. It's not complete, but I'm committing it now because it has example after example of how to use bitfields with the new header_field_info struct and proto_tree routines. It was the impetus to change how header_field_info works. svn path=/trunk/; revision=815
1999-09-12Patch from Olivier Abad:Guy Harris1-87/+126
packet-lapb.c : check the validity of the first byte in the frame. packet-x25.c : - in get_x25_pkt_len() : check that we are not reading after the end of the captured data - in dissect_x25() : various checks to avoid reading after the end of the captured data - in dissect_x25() : use offset (and not 2) as the length of the underlying protocol header. Olivier svn path=/trunk/; revision=669
1999-08-20Add support for reading Full Frontal ATM from an ATM Sniffer captureGuy Harris1-21/+21
file, instead of throwing out all but LANE or RFC 1483 data frames and pretending that the former are just Ethernet or Token-Ring frames. Add some level of decoding for ATM LANE, but not all of it; the rest, including decoding non-LANE frames, is left as an exercise for somebody who has captures they want to decode, an interest in decoding them, ATM expertise, and time.... svn path=/trunk/; revision=523
1999-08-05Put in an RCS ID.Guy Harris1-0/+2
svn path=/trunk/; revision=442
1999-08-05"packet-udp.c" and "packet-x25.c" both have global variables namedGuy Harris1-1/+1
"hash_table", but each of them is used only in the file in question; make them static, so that they don't collide. svn path=/trunk/; revision=440
1999-08-04Patch from Olivier Abad to implement modulo 128 X.25 decoding, and toGuy Harris1-113/+535
improve X.25 decoding in other ways as well. svn path=/trunk/; revision=435
1999-08-02Olivier Abad's patch to add dissectors for LAP-B and X.25, and wiretapGuy Harris1-0/+995
support for RADCOM Ltd.'s WAN/LAN analyzers (see http://www.radcom-inc.com/ ). Note: a Make "S" a mnemonic for "Summary" in the "Tools" menu. Move the routine, used for the "Tools/Summary" display, that turns a wiretap file type into a descriptive string for it into the wiretap library itself, expand on some of its descriptions, and add an entry for files from a RADCOM analyzer. Have "Tools/Summary" display the snapshot length for the capture. svn path=/trunk/; revision=417