aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/artnet
Commit message (Collapse)AuthorAgeFilesLines
* After doing "make maintainer-clean", "svn status --no-ignore | grep ^I"Jörg Mayer2005-07-101-0/+3
| | | | | | | | | | returned quite a list of files. Add them to MAINTAINERCLEANFILES. Whitespace changes (replace multiple spaces by TABs, in a few cases this needed to be done at the beginning of Makefile lines. svn path=/trunk/; revision=14891
* Call the "new-style init" routine for plugins a "register" routine, asGuy Harris2005-03-071-6/+6
| | | | | | | | | | | | | it serves the same purpose as the register routine in a built-in dissector, and don't require all dissectors to have one, as they might just be taps. Get rid of the stats tree's init routine, as it's just a tap, and as it doesn't do anything. Update the idl2eth Python script to generate plugins with register routines. svn path=/trunk/; revision=13644
* Preparations for dropping the old plugin api.Lars Roland2005-03-052-15/+5
| | | | | | | | | | | | | | | | 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
* Make the "maintainer-clean" rules get rid of some additional generatedGuy Harris2005-02-141-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | files. Do this with GENERATED_HEADER_FILES, GENERATED_C_FILES, and GENERATED_FILES macros in Makefile.common files, along the lines of what wiretap/Makefile.common has. Clean up "*~" files with "make clean" rather than only "make distclean" in some additional places. Add "maintainer-clean" rules to the Makefile.nmake files, paralelling the ones in the automake-generated Makefile.in files, using the GENERATED_FILES macros from Makefile.common files. In some cases, move the cleanup of files from "make distclean" to "make maintainer-clean", and in other cases, put in a comment indicating why we're not doing that (because some files that are distributed in the source tarballs, namely Flex output, were built with a UN*X Flex and won't compile on Windows, so we get rid of them with "make distclean" so you can clean up stuff that *has* to be re-generated for Windows). Clean up some *CLEANFILES definitions - get rid of ones that no longer apply as files were moved or that add to the definition a name that's already there. svn path=/trunk/; revision=13402
* From Lars Roland: we need to define _NEED_VAR_IMPORT_ in plugins if weGuy Harris2004-10-011-2/+2
| | | | | | link the plugins with libethereal, so do so. svn path=/trunk/; revision=12176
* From Lars Roland: add an option to link plugins with libethereal ratherGuy Harris2004-09-291-2/+11
| | | | | | than using the plugin address table. svn path=/trunk/; revision=12139
* Move prefs.c and prefs.h into the epan subdirectory.Guy Harris2004-09-271-1/+1
| | | | svn path=/trunk/; revision=12115
* Updates from Erwin Rol.Guy Harris2004-09-011-3/+112
| | | | svn path=/trunk/; revision=11868
* From Albert Chin: rename resolv.{ch} to addr_resolv.{ch}, so that anGuy Harris2004-08-061-1/+1
| | | | | | | include of <resolv.h> in any system header file gets the system <resolv.h> (needed for builds on Tru64 with GTK+ 1.2[.x]). svn path=/trunk/; revision=11615
* .cvsignore is deadJörg Mayer2004-07-181-21/+0
| | | | | | | | | it has been replaced by svn proplist -v <dir/file> and svn propedit <dir/file> svn path=/trunk/; revision=11422
* Add epan/dissectors/.cvsignoreJörg Mayer2004-07-181-0/+2
| | | | | | Add tags and TAGS to all .cvsignore files svn path=/trunk/; revision=11419
* Set the svn:eol-style property on all text files to "native", so thatGuy Harris2004-07-184-4/+4
| | | | | | | | | 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
* Replace the plugin linkage libs into PLUGIN_LIBS which is generated from theOlivier Biot2004-04-251-2/+2
| | | | | | top-level configure.in when running configure. svn path=/trunk/; revision=10699
* Add support for plugin dissectors on cygwin builds, by adding the followingOlivier Biot2004-04-141-1/+2
| | | | | | | | | | | line to every Makefile.am file for a given plugin XXX: XXX_la_LIBADD = -L../../epan -lethereal @GLIB_LIBS@ This way symbols defined in libethereal and GLib are resolved when linking the plugin dissector modules. svn path=/trunk/; revision=10601
* Use "tvb_get_guint8()", not "tvb_get_ntohs()", to fetch 1-byte numbers.Guy Harris2004-01-071-10/+8
| | | | | | Use "proto_tree_add_item()" if you don't need the number's value. svn path=/trunk/; revision=9582
* removed some MSVC warnings (level 3)Ulf Lamping2004-01-051-5/+5
| | | | svn path=/trunk/; revision=9561
* Fix the copyright notices (Gerald has the copyright on Ethereal).Guy Harris2003-11-171-4/+3
| | | | svn path=/trunk/; revision=8991
* From Erwin Rol: initial ENTTEC support and RDM support.Guy Harris2003-11-173-27/+52
| | | | svn path=/trunk/; revision=8985
* Use "$(OBJECTS)" whenever a complete list of .obj files appears, ratherGuy Harris2003-11-061-3/+3
| | | | | | than repeating the list from the setting of OBJECTS. svn path=/trunk/; revision=8893
* Give every Makefile.nmake file a "distclean" rule, and have "distclean"Guy Harris2003-10-101-1/+3
| | | | | | | | | | | | recurse into subdirectories doing "nmake -f Makefile.nmake distclean". Have "nmake -f Makefile.nmake clean" not remove stuff that "make clean" doesn't remove (such as Flex/Bison output and config.h files) - and have "nmake -f Makefile.nmake distclean" remove stuff that "make distclean" removes, including "tethereal-tap-register.c" and "ethereal-tap-register.c". svn path=/trunk/; revision=8672
* - Make --enable-static work again (configure.in, Makefile.am)Jörg Mayer2003-09-052-9/+4
| | | | | | | | | - get rid of ...-static.o files in the build process (now done via config.h instead of compiler flag) - make packet-rtnet link statically (remove one unused function, rename another one) svn path=/trunk/; revision=8389
* From Erwin Rol, updates to teh ArtNet plugin dissectorRonnie Sahlberg2003-08-243-494/+1051
| | | | svn path=/trunk/; revision=8233
* From Erwin Rol:Guy Harris2003-08-172-3/+3
| | | | | | | | | Update e-mail address. Register the ARP dissector, as the RT-Net dissector tries to find it. svn path=/trunk/; revision=8176
* Define GLIB_LIBS and GTK_LIBS variables in config.nmake (based onGuy Harris2003-06-141-2/+2
| | | | | | | | | | variables the user configures - the user isn't expected to change GLIB_LIBS or GTK_LIBS, and there's a comment nothing that users shouldn't have to do so), which contain the appropriate libraries for building stuff that requires only GLib, and stuff that required GTK+ and GLib, respectively, and use those macros in the Makefile.nmake files. svn path=/trunk/; revision=7885
* Define GLIB_CFLAGS and GTK_CFLAGS variables in config.nmake (based onGuy Harris2003-06-141-4/+2
| | | | | | | | | | variables the user configures - the user isn't expected to change GLIB_CFLAGS or GTK_CFLAGS, and there's a comment nothing that users shouldn't have to do so), which contain the appropriate "/I" flags for building stuff that requires only GLib, and stuff that required GTK+ and GLib, respectively, and use those macros in the Makefile.nmake files. svn path=/trunk/; revision=7884
* Add the usual .cvsignore file.Guy Harris2003-04-211-0/+19
| | | | svn path=/trunk/; revision=7520
* From Erwin Rol: ArtNET support.Guy Harris2003-04-219-0/+2507
svn path=/trunk/; revision=7518