aboutsummaryrefslogtreecommitdiffstats
path: root/ncp2222.py
AgeCommit message (Collapse)AuthorFilesLines
2001-06-28Handle a few of the NCP types from the traces sent in by Pete,Gilbert Ramirez1-473/+636
<psailor@uswest.net> svn path=/trunk/; revision=3617
2001-06-18From Joerg Mayer: explicitly fill in all members of aGuy Harris1-7/+7
"header_field_info" structure, including the ones that are later set by the routines to register fields. svn path=/trunk/; revision=3561
2001-06-02Changes to structure initializations not to initialize some but not allGuy Harris1-2/+2
members, from Joerg Mayer. svn path=/trunk/; revision=3501
2000-09-22Move #included C code from an *.h file to an *.inc file.Gilbert Ramirez1-2/+2
svn path=/trunk/; revision=2456
2000-09-06Fix offset bug in func 0x1737, and added code to automatically checkGilbert Ramirez1-11/+45
offsets. Bug found by Marcel Cox <marcel.cox@myrealbox.com> svn path=/trunk/; revision=2389
2000-08-30Add FT_STRINGZ type. NCP dissector is only one that uses it right now.Gilbert Ramirez1-7/+17
Remove tvb_get_stringz from quake dissector and add tvb_get_nstringz, tvb_get_nstringz0, and tvb_strnlen to tvbuff.c. Remove multiple definitions of pntohl and friends from various places (except for wiretap) and put into pint.h Consolidate duplicate code for turning FT_* enums into strings (ala the glossary). svn path=/trunk/; revision=2382
2000-08-22Change FT_NSTRING_UINT8 to FT_UINT_STRING. The length parameter passedGilbert Ramirez1-7/+19
to proto_tree_add_item() will indicate if the length of the string is indicated by an UINT8, UINT16, UINT24, or UINT32. Change NCP dissector-maker to produce FT_UINT_STRING. Fix off-by-one in dissection of some NCP reply packets. svn path=/trunk/; revision=2334
2000-08-09- make-reg-dotLaurent Deniel1-46/+46
Do not assume that all dissectors are in the source directory. This is the case for instance for packet-ncp2222.c which is generated in the production directory (current). This is particularly important when the generation is not made in the source directory. - ncp2222.py Remove tabs in generated source to make the generated code nicer and to make work the make-reg-dotc. Without that fix, all NCP packet dissections dump core ... svn path=/trunk/; revision=2241
2000-08-08Convert comments to docstrings.Gilbert Ramirez1-319/+329
svn path=/trunk/; revision=2229
2000-07-28Add the re-write of the NetWare Core Protocol dissector. It's mostlyGilbert Ramirez1-0/+1406
a framework for the dissector; of the more than 400 NCP packet types, only a handful are defined. But this dissector framework is much better than the previous one. svn path=/trunk/; revision=2173