aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.am
AgeCommit message (Collapse)AuthorFilesLines
2006-06-21From Christian Durrer:Jaap Keuter1-0/+2
I hope this is the right place to send a patch for a new dissector plugin. The telegram it dissects are for the communication between PLCs (Programmable logic controller) from the company Saia Burgess Controls Ltd. (http://www.start-controls.com, http://www.saia-burgess.com or http://www.sbc-support.ch). The protocol is named Ether-S-Bus (the PLCs are called PCD2, PCD3, PCD4). svn path=/trunk/; revision=18526
2006-06-11From Martin Mathieson:Anders Broman1-2/+5
This patch: - treats the variant field as a variable-length string field. This is needed for some of the more complicated protocols where the variant number of the embedded protocol is also represented - the patch to Makefile.am was not applied from http://www.wireshark.org/lists/wireshark-dev/200606/msg00009.html svn path=/trunk/; revision=18427
2006-06-10do_subst wasn't defined, so just use "cp" for now. (Is there anythingGuy Harris1-1/+1
in there that needs substitution?) svn path=/trunk/; revision=18417
2006-06-07Switch back to the 2d icons.Gerald Combs1-0/+4
svn path=/trunk/; revision=18385
2006-06-07In all Wireshark images and icons, make the fin point left (whichGerald Combs1-12/+12
signifies moving west, in case you're wondering). Convert many Ethereal icons to Wireshark, and remove a few. (Notably Ethereal.icns, for which we don't currently have a counterpart.) svn path=/trunk/; revision=18376
2006-06-06Remove more unused icons.Gerald Combs1-2/+0
svn path=/trunk/; revision=18365
2006-06-05Icon cleanup.Gerald Combs1-2/+1
svn path=/trunk/; revision=18350
2006-06-05Remove recently-deleted images.Gerald Combs1-22/+20
svn path=/trunk/; revision=18337
2006-06-02eicon3d*.xpm -> wsicon*.xpmTomas Kukosa1-4/+4
svn path=/trunk/; revision=18309
2006-06-01Fix dist/distcheck.Gerald Combs1-2/+0
svn path=/trunk/; revision=18302
2006-05-31Add the Wireshark logos and icons to the distribution.Gerald Combs1-0/+8
svn path=/trunk/; revision=18298
2006-05-31More ethereal -> wireshark.Gerald Combs1-2/+2
svn path=/trunk/; revision=18292
2006-05-31ethereal.rc -> wireshark.rcGerald Combs1-1/+1
svn path=/trunk/; revision=18283
2006-05-31Rename the manifest file. Remove some unused images.Gerald Combs1-3/+0
svn path=/trunk/; revision=18277
2006-05-31Rename the main executable to "wireshark", along with more conversions:Gerald Combs1-42/+42
ethereal.com -> wireshark.org mailing lists and addresses ETHEREAL -> WIRESHARK Man pages Automake/Autoconf names svn path=/trunk/; revision=18271
2006-05-31Tethereal/tethereal -> TShark/tshark.Gerald Combs1-29/+29
svn path=/trunk/; revision=18268
2006-05-31Fix building idl2wrs (after looking through previous versions of Makefile.amGerald Combs1-1/+5
it's not apparent how it was working before). svn path=/trunk/; revision=18266
2006-05-31libethereal -> libwireshark. idl2eth -> idl2wrs. There are a _lot_ ofGerald Combs1-17/+16
changes here. It compiles OK on OS X, but hasn't been tested anywhere else. svn path=/trunk/; revision=18260
2006-05-22ethereal->wiresharkRonnie Sahlberg1-1/+1
svn path=/trunk/; revision=18208
2006-05-22ethereal->wireshark updatesRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18206
2006-05-21name changeRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18197
2006-05-03Anything linked with @PCAP_LIBS@ needs, on at least some platformsGuy Harris1-1/+1
(e.g., Solaris 2 and later), to be linked with @SOCKET_LIBS@ and @NSL_LIBS@ as well. svn path=/trunk/; revision=18082
2006-03-12Move init.lua and family to plugins/luaLuis Ontanon1-7/+1
svn path=/trunk/; revision=17600
2006-03-06Remove the test-splint target. Splint never did work on the Ethereal sourcesGerald Combs1-9/+0
and it doesn't look like that will change any time soon. svn path=/trunk/; revision=17481
2006-02-25Remove references to README.tvbuff. The Makefile.am should fix theJörg Mayer1-1/+0
buildbot failure. svn path=/trunk/; revision=17405
2006-02-15Check for getopt in the configure script, as we do for other routinesGuy Harris1-3/+1
not available on all platforms. Include getopt.c in EXTRA_ethereal_SOURCES and include getopt.h in EXTRA_ethereal_INCLUDES, as we do with the other files that supply routines not available on all platforms, rather than always including them in the source for dumpcap. svn path=/trunk/; revision=17311
2006-02-14Change suid to take dumpcap into accountJörg Mayer1-1/+1
svn path=/trunk/; revision=17299
2006-02-13Add a manifest, so that styled widgets are drawn correcltly. TheGerald Combs1-0/+1
"version" field in the manifest is picky about formatting, so setting a custom version in config.nmake (e.g. "0.10.14-test") will probably break the Windows build. svn path=/trunk/; revision=17291
2006-02-13- disable printLuis Ontanon1-1/+8
- add a log facility to lua (so far just prints to stderr) - add settings to disable lua even if installed, to load or not to load user scripts when superuser - create a default /usr/local/share/ethereal/init.lua that blocks all the io/system calls when running as superuser svn path=/trunk/; revision=17290
2006-02-13Copy over the file open/save code from the Win32 native branch.Gerald Combs1-0/+1
The Windows-native routines were integrated by inserting #if GTK_MAJOR_VERSION >= 2 && _WIN32 win32_native_routine(GDK_WINDOW_HWND(top_level->window)); return; #endif at the beginning of each GTK+ file routine. There's probably a prettier way to do this. Some of the sizes need to be tweaked in win32-file-dlg.rc, but everything seems to work. Fix up whitespace. svn path=/trunk/; revision=17285
2006-02-12add generation of dumpcap manpageUlf Lamping1-2/+11
svn path=/trunk/; revision=17264
2006-02-04Paolo AbeniJörg Mayer1-3/+6
I have developed an external plugin to enable ssl decryption in ethereal. Me - Remove unnecessary $Id$ from acinclude.m4 - Added packet-ssl-utils.h to Makefile.common - Fixed a few warnings TODO - Lots of warning fixes (see separate mail) - Reformat function headers to read like the others do (return value<newline>function-name...) - Test on Windows platform - Review the patch to packet-ssl.c and new files packet-ssl-utils.[hc] svn path=/trunk/; revision=17156
2006-01-31It was hard.. but at the end I won (or at least i believe so...).Luis Ontanon1-0/+21
After install hello_world.lua works. svn path=/trunk/; revision=17137
2006-01-17GTK 2.x only: show a slightly different Ethereal main icon while capturing.Ulf Lamping1-0/+3
I very often forget to stop a running capture, so Ethereal keeps capturing packets on and on, leaving me with a lot of unrequired packets. On the other hand (because of the above) I often maximize Ethereal just to see that it's really not capturing any longer. Looking at the window title isn't of much help, as this title changes with every capture file name loaded, so there's no title which can be easily remembered. We probably might use this icon mechanism as well, when Ethereal loads a (huge) file, so the user get's a more visual feedback when the capture loading is finished (and probably for other potential "lengthy" tasks as well). svn path=/trunk/; revision=17042
2006-01-07Don't link dumpcap with -lmJörg Mayer1-1/+1
svn path=/trunk/; revision=16968
2006-01-03Found by henning.treuJörg Mayer1-0/+2
doc/README.malloc and doc/README.stats_tree were missing from the distribution. svn path=/trunk/; revision=16936
2005-12-18From Martin WarnesAnders Broman1-1/+3
Attached a small patch to top level Makefile.am to include the recently added diamter data files chargecontrol.xml and TGPPSh.xml From jaaap Keuter: I've polished up the README.malloc describing ememified memory management. It's basically the same information, but made a bit more accessable. All this in response to bug 511 svn path=/trunk/; revision=16845
2005-12-16Don't link dumpcap against libethereal etc.Jörg Mayer1-8/+3
It might be, that I've removed too many options: in that case, replace @PCAP_LIBS@ by some of @PCAP_LIBS@ @SOCKET_LIBS@ @NSL_LIBS@ and let me know which of the options are needed svn path=/trunk/; revision=16824
2005-12-06rename pcap-....c/.h files to capture-pcap-....c/.hUlf Lamping1-1/+1
this way, the capture prefix will "logically" group the files together and file browsers will also group them we may want to move the files into a subdir capture later svn path=/trunk/; revision=16691
2005-11-28Add support for building dumpcap, and fix dumpcap to build on UN*X.Guy Harris1-2/+18
svn path=/trunk/; revision=16618
2005-11-28first steps towards a separated capture tool, working title "dumpcap"Ulf Lamping1-0/+2
personal backup only, not meant for public testing! I've copied main.c into dumpcap.c and carved out all things not needed currently won't work as a command line tool, capture_loop.c wants an input pipe console output is also very ugly and the whole code needs a lot of further cleanup shouldn't break the unix build as I've only changed the nmake files so far, but who knows ... svn path=/trunk/; revision=16615
2005-10-29remove cleanbld.bat (use the distclean target instead)Ulf Lamping1-1/+0
svn path=/trunk/; revision=16355
2005-09-29Move the Diameter dictionary files to a "diameter" subdirectory, alongGuy Harris1-78/+14
the lines of what's done for RADIUS. That keeps them together (and separate from other files), and makes the layout of the top-level source directory closer to the layout of the installation directory, so that if you run Ethereal or Tethereal from the top-level directory on Windows it'll pick up the Diameter dictionary files (if it supports loading them), and can do so on UN*X if we support a mechanism to let it find its control files in the directory in which the binary resides. Use the diameter_DATA, dtds_DATA, and radius_DATA macros in the EXTRA_DIST macro, so you only have to change the lists of Diameter, DTD, and RADIUS files in one place if you add or remove a file. svn path=/trunk/; revision=16050
2005-09-28Add radius/dictionary.ericsson \Anders Broman1-0/+1
svn path=/trunk/; revision=16044
2005-09-28Add dictionarry.ericssonAnders Broman1-0/+1
svn path=/trunk/; revision=16034
2005-09-20add a new stop icon 48x48 for (simple) dialogs (derived from the openoffice ↵Ulf Lamping1-0/+1
stock icons and slightly enlarged using the Gimp) svn path=/trunk/; revision=15885
2005-09-18add dtds to EXTRA_DISTLuis Ontanon1-0/+4
svn path=/trunk/; revision=15854
2005-09-17Get the first few dtds installed.Luis Ontanon1-0/+10
svn path=/trunk/; revision=15852
2005-09-07Add Valgrind core files to CLEANFILES.Gerald Combs1-1/+2
svn path=/trunk/; revision=15716
2005-08-01The .spec file now refers to "ethereal.desktop". Link to it when weGerald Combs1-0/+2
create our RPMs. svn path=/trunk/; revision=15166