aboutsummaryrefslogtreecommitdiffstats
path: root/tools/ncp2222.py
AgeCommit message (Collapse)AuthorFilesLines
2015-01-18Remove some apparently-unnecessary includes of emem.h.Guy Harris1-1/+0
Change-Id: Id50ce3e707056cca8f30052f05c451ce431b39b5 Reviewed-on: https://code.wireshark.org/review/6632 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2014-12-04Rename some filter names to fix cases of duplicate filter names.Bill Meier1-1/+1
Note: Use of most of these filter names could have caused a Wireshark crash. Change-Id: I393402a25dd26d174baff77f4706f6d5f43a94ae Reviewed-on: https://code.wireshark.org/review/5610 Reviewed-by: Bill Meier <wmeier@newsguy.com>
2014-02-14Remove $Id$ and other Subversion leftovers from the tools.Jeff Morriss1-3/+0
There are a few things in here which could still use attention. Don't regenerate anything now. Change-Id: I283c224d3523212144707fca3d6265916cb11792 Reviewed-on: https://code.wireshark.org/review/205 Reviewed-by: Jeff Morriss <jeff.morriss.ws@gmail.com>
2013-12-18Fix [-Wmissing-prototypes]Anders Broman1-0/+1
svn path=/trunk/; revision=54209
2013-12-03Dissectors should not use dfilter.h, don't include it.Jakub Zawadzki1-0/+1
XXX ncp2222 dissector is using dfilter_compile(), why? svn path=/trunk/; revision=53766
2013-12-01Use 4-space (PEP 8) indentation. Add modelines.Gerald Combs1-0/+12
svn path=/trunk/; revision=53685
2013-11-10Add missing includes in order to remove exceptions.h from proto.h (next commit).Jakub Zawadzki1-0/+1
svn path=/trunk/; revision=53230
2013-11-10Move struct _ftype_t + callback typedefs + free macro to ftypes-int.hJakub Zawadzki1-0/+1
svn path=/trunk/; revision=53223
2013-11-09Include <epan/to_str.h> only when needed.Jakub Zawadzki1-0/+1
svn path=/trunk/; revision=53189
2013-09-08Add filterable expert info to NCP dissector.Michael Mann1-0/+39
svn path=/trunk/; revision=51833
2013-08-02Make sure we're compatible with Python 2 + 3. Tested with Pythons 2.5,Gerald Combs1-13350/+13355
2.7, and 3.3. The contents of packet-ncp2222.c are different after the changes (e.g. some array contents are in a different order) but the output of running 'tshark -nVxr' on the NCP files in the menagerie are identical. svn path=/trunk/; revision=51123
2013-04-10Use consistent "generated automatically" wording which will hopefully beGerald Combs1-1/+1
picked up by licensecheck. svn path=/trunk/; revision=48812
2013-02-26it's ==> its & its ==> it's as needed.Bill Meier1-1/+1
svn path=/trunk/; revision=47898
2013-02-15Comment out a number of unused hf[] enrries found by checkhf.Bill Meier1-10/+30
svn path=/trunk/; revision=47670
2012-09-27Added additional server information in NCP 23/17 reply structure for OES Linux.Greg Morris1-1/+13
Fixed GTKHash table being overwritten when number of NCP packets exceeds 255. Sequence numbers wrap so this was causing the request value table to be overwritten and subsequent malformed NCP packets. Fixed buid_expert_data for file open reporting to correctly convert to Hex value so proper lookup in val table will succeed. Added additional OES Linux values to build_expert_data for server entries. svn path=/trunk/; revision=45177
2012-09-19We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-3/+1
svn path=/trunk/; revision=44997
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-2/+2
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2011-01-30Introduce "Fragment count" filter element for all protocols doing reassembly.Stig Bjørlykke1-0/+4
svn path=/trunk/; revision=35705
2010-11-01Compile (over 100) dfilters only if needed rather than at every Wireshark ↵Bill Meier1-31/+10
startup; Also: Minor whitespace cleanup. svn path=/trunk/; revision=34747
2010-10-10Define some fcns & vars as static...Bill Meier1-2/+2
svn path=/trunk/; revision=34459
2010-02-02Added protocol name to "Reassembled length" text.Guy Harris1-1/+1
svn path=/trunk/; revision=31775
2010-02-02Add a field for the reassembled length.Guy Harris1-0/+4
svn path=/trunk/; revision=31769
2010-02-02Clean up white space.Guy Harris1-903/+890
svn path=/trunk/; revision=31768
2009-12-19For fields of type FT_ABSOLUTE_TIME, have the "display" value be one ofGuy Harris1-6/+6
ABSOLUTE_TIME_LOCAL or ABSOLUTE_TIME_UTC, indicating whether to display the date/time in local time or UTC. (int)ABSOLUTE_TIME_LOCAL == (int)BASE_NONE, so there's no source or binary compatiblity issue, although we might want to eliminate BASE_NONE at some point and have the BASE_ values used with integral types start at 0, so that you can't specify BASE_NONE for an integral field. svn path=/trunk/; revision=31319
2009-09-12Move all of the scripts in epan/dissectors/ to tools/ .Jeff Morriss1-0/+16420
Add a target ("x11-dissector") to build the X11 dissector. Put the X11-related files (back) in the source distribution. svn path=/trunk/; revision=29871