aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/docsis/packet-regreq.c
AgeCommit message (Collapse)AuthorFilesLines
2005-03-05Preparations for dropping the old plugin api.Lars Roland1-2/+0
Introduce a new init routine for plugins, which does not take the plugin api table as an argument and allows etheral to distinguish between plugins using the old and the new api. Update README.plugins accordingly Change all g_warnings() in epan/plugins.c to report_failue(). On windows we do not have a log console open while loading the plugins, because a log console cannot be opened before the prefs have been read. Thus g_warnings() does not work for reporting problems with plugins. svn path=/trunk/; revision=13596
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
2003-12-13Use "int"s, not "guint16"s, as packet offsets (using values shorterGuy Harris1-6/+3
than32 bits risks overflow problems). Use "gint" for tvbuff lengths. Use -1 for uses of "tvb_length_remaining()" that mean "the rest of the tvbuff"; use "tvb_reported_length_remaining()" for "the rest of the packet. Clean up the handling of the DOCSIS payload. svn path=/trunk/; revision=9267
2003-05-28Update Anand Narwani's email address.Gerald Combs1-2/+2
svn path=/trunk/; revision=7755
2002-09-10From Anand Narwani: support for Cisco vendor-specific TLVs.Guy Harris1-0/+2
Add RCS IDs to source files. svn path=/trunk/; revision=6257
2002-08-02Replace the types from sys/types.h and netinet/in.h by their glib.hJörg Mayer1-8/+0
equivalents for the plugins/ directory. svn path=/trunk/; revision=5929
2002-07-17From Joerg Mayer:Guy Harris1-4/+0
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-07-12From Anand V. Narwani:Guy Harris1-0/+162
DOCSIS support, including support for "Ethernet" captures where the raw frame is a DOCSIS frame rather than an Ethernet frame (some Cisco cable-modem head-end gear can send out a trace of all traffic on an Ethernet, but what it sends are the raw bytes of DOCSIS frames, not Ethernet frames) Get rid of second AUTHORS entry for Devin Heitmueller, merging its item into the older entry. Clean up the order of some lists of plugin items. svn path=/trunk/; revision=5861