aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.common
AgeCommit message (Collapse)AuthorFilesLines
2005-03-20From Oleg Terletsky: Support for SCTP chunk counters. Modified to handle ↵Michael Tüxen1-0/+1
bundling correctly. svn path=/trunk/; revision=13823
2005-02-25Get stats_tree compiledLuis Ontanon1-0/+1
svn path=/trunk/; revision=13507
2005-02-23move capture_opts related things (init, command line, ...) from capture.c to ↵Ulf Lamping1-0/+2
a new file capture_opts.c and let both ethereal and tethereal use it. svn path=/trunk/; revision=13474
2005-02-14Make the "maintainer-clean" rules get rid of some additional generatedGuy Harris1-2/+18
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
2005-02-09Move the following files from /trunk to /trunk/epan:Lars Roland1-6/+1
asn1.[ch] follow.[ch] ptvcursor.[ch] reassemble.[ch] xmlstub.[ch] fix #include statements accordingly. svn path=/trunk/; revision=13366
2005-02-08Move h225-persistentdata.[ch] to epan,Lars Roland1-1/+0
as its code is linked into libethereal.dll. svn path=/trunk/; revision=13354
2005-02-06Don't have "set_menus_for_captured_packets()" callGuy Harris1-0/+1
"main_set_for_capture_file()"; it should only deal with menus, not anything else - and it gets called while the menus are being set up, which is before the main window has been completely created, so "main_widgets_show_or_hide()", which is called by "main_set_for_capture_file()", gets errors trying to show or hide widgets the pointers to which are null. svn path=/trunk/; revision=13328
2005-01-16Report a friendlier name, if possible, when capturing in Tethereal.Guy Harris1-2/+2
svn path=/trunk/; revision=13062
2005-01-16Rename capture_combo_utils.{c,h} to capture_ui_utils.{c,h}, as the codeGuy Harris1-2/+2
in there is for UI functions including, but not limited to, the combo box in capture dialogs. svn path=/trunk/; revision=13061
2004-10-30split capture_loop from capture.c, some more code cleanupUlf Lamping1-0/+1
svn path=/trunk/; revision=12451
2004-10-30code cleanup: split capture_sync from capture.c into it's own file. Ulf Lamping1-0/+2
That's the part used, when "Update list of packets in real time" is used while capturing. svn path=/trunk/; revision=12445
2004-10-01"prefs-int.h" belongs in epan, too.Guy Harris1-1/+0
svn path=/trunk/; revision=12168
2004-09-29Move the column preferences stuff to epan (the rest of the preferencesGuy Harris1-1/+0
stuff is already there). Update Gerald's e-mail address in column.h. svn path=/trunk/; revision=12131
2004-09-29Move various tables into the epan directory.Guy Harris1-3/+0
svn path=/trunk/; revision=12130
2004-09-29Move the request/response header helper routines to the epan directory.Guy Harris1-1/+0
svn path=/trunk/; revision=12129
2004-09-29Move the tap infrastructure to the epan directory.Guy Harris1-1/+0
svn path=/trunk/; revision=12128
2004-09-28Move the xDLC helper routines into epan.Guy Harris1-1/+0
svn path=/trunk/; revision=12127
2004-09-28Move the SHA-1 code and header into epan, and give them RCS IDs.Guy Harris1-1/+0
svn path=/trunk/; revision=12125
2004-09-28Move various checksum routines and headers to epan.Guy Harris1-4/+0
svn path=/trunk/; revision=12117
2004-09-27Move the DES, MD4, MD5, and RC4 source files and headers into epan, andGuy Harris1-4/+0
make the source files all include the corresponding header files (so that the declarations in the headers have to match the definitions in the source files in order for compilation to succeed). svn path=/trunk/; revision=12116
2004-09-27Move prefs.c and prefs.h into the epan subdirectory.Guy Harris1-1/+0
svn path=/trunk/; revision=12115
2004-09-11Nothing in "util.h" is needed by anything in libethereal, so don't putGuy Harris1-2/+4
it into libethereal - have it as common code linked into Ethereal, Tethereal, and dftest. svn path=/trunk/; revision=11961
2004-09-10Hoist the code for handling "-G" into a common module.Guy Harris1-0/+2
svn path=/trunk/; revision=11956
2004-09-09Add SHA1 routines for future use at least by SigCompAnders Broman1-0/+1
svn path=/trunk/; revision=11951
2004-09-04The packet range stuff knows about capture_file structures, so it'sGuy Harris1-0/+2
really more of an Ethereal/Tethereal component than a libethereal component (nothing else in libethereal knows about capture files); move it back out of libethereal. (The range stuff doesn't; we leave it in libethereal.) svn path=/trunk/; revision=11898
2004-09-04Rename "range.c" and "range.h" to "packet-range.c" and "packet-range.h";Guy Harris1-2/+0
they should ultimately be split into files with routines that handle ranges, which are just subsets of [0,2^32), and packet ranges, which are subsets of the packet list, possibly specified by a range. Move them into epan, so they can be used by, for example, utilities that handle ranges, such editcap. svn path=/trunk/; revision=11890
2004-07-29From Lars Roland: With this patch print.(c/h) and ps.(c/h) don't belong to Olivier Biot1-2/+4
the DISSECTOR_SUPPORT_xy files any longer and as a consequence they won't be linked into libethereal. svn path=/trunk/; revision=11559
2004-07-27"ps.c" isn't a header, so don't include it in ETHEREAL_COMMON_INCLUDES.Guy Harris1-4/+3
svn path=/trunk/; revision=11533
2004-07-24Move color_filters.c and color_filters.h up to the top-level directory,Guy Harris1-0/+2
as they're now (theoretically) toolkit-independent (modulo changes that might be required to the code to update filter lists when a new filter is read in). svn path=/trunk/; revision=11500
2004-07-23"capture_combo_utils.{c,h}" don't use any GTK+ stuff, so move them toGuy Harris1-0/+2
the top-level directory. svn path=/trunk/; revision=11494
2004-07-18Move dissectors to epan/dissectors directory.Gilbert Ramirez1-187/+0
Also move ncp222.py, x11-fields, process-x11-fields.pl, make-reg-dotc, and make-reg-dotc.py. Adjust #include lines in files that include packet-*.h files. svn path=/trunk/; revision=11410
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
2004-07-15Convert make-version.pl and the associated cvsversion.h and CVSVERSIONGerald Combs1-2/+2
definition to Subversion. "svn info" prints out the last changed date of the repository, so we don't have to go hunting through "CVS/Entries" files anymore. svn path=/trunk/; revision=11379
2004-07-13From Jean-Baptiste Marchand: MS Eventlog support.Guy Harris1-1/+2
svn path=/trunk/; revision=11369
2004-07-10From Jean-Baptiste Marchand: frsrpc and frsapi support.Guy Harris1-1/+3
svn path=/trunk/; revision=11360
2004-07-09Move the redefinition of "isprint()" to be used by dissectors whenGuy Harris1-1/+2
generating strings to put into the printable representation of protocol tree items into an "isprint.h" header, and include it in some additional dissectors. Add bounds checking to one place in the DICOM dissector. svn path=/trunk/; revision=11356
2004-06-27Fixes needed for "make distcheck".Gerald Combs1-1/+2
svn path=/trunk/; revision=11247
2004-06-25Update to the makefiles to pull in the crc16 helper for use by SIR and later ↵Ronnie Sahlberg1-1/+2
others svn path=/trunk/; revision=11239
2004-06-18merge: remove code duplication in merge.c and mergecap.c (put it in merge.c),Ulf Lamping1-1/+3
and doing some more code cleanup svn path=/trunk/; revision=11176
2004-06-17add Merge functionality to Ethereal in an experimental state.Ulf Lamping1-1/+2
Copied and sligthly modified merge.c from mergecap.c (needs a lot of code cleanup, though) svn path=/trunk/; revision=11171
2004-05-25H.235 dissector from Tomas compiler script.Ronnie Sahlberg1-1/+2
This should make H.235 semicomplete and make a lot more H.225 packets dissect properly. Please test. svn path=/trunk/; revision=10993
2004-05-18New protocol : PacketCable : PKTCRonnie Sahlberg1-1/+2
The AP-REQ and AP_REP packets are partially dissected up to and including the kerberos blob. work in progress svn path=/trunk/; revision=10916
2004-05-13From Carlos Pignataro: Add MPLS Echo support.Gerald Combs1-1/+2
svn path=/trunk/; revision=10876
2004-05-10Add ps.c to BUILT_SOURCES, so that "make distcheck" doesn't burst into flames.Gerald Combs1-2/+3
svn path=/trunk/; revision=10836
2004-05-09From Lars Roland: add support for building a libethereal.dll with MSVC:Guy Harris1-6/+5
add a config.nmake option to control whether to build libethereal.dll or not; remove "./wiretap" from PATH to prevent problems due to wrongly-loaded files; build dissector.lib with MSVC; move "print.c" and "ps.c" to the dissector helpers, as "print.c" imports variables from packet-frame.c and packet-data.c, which are in libethereal; move "g711.c" out of the dissector helpers, as they're used only by Ethereal in a tap, not in Tethereal or in any dissector; add a .def file for libethereal; arrange to declare global variables exported from libethereal with "__declspec(dllimport)" when building programs that import those variables; update the NSIS installer. Make the "configure" script define ETH_VAR_IMPORT as "extern". svn path=/trunk/; revision=10834
2004-05-01From metatech:Guy Harris1-1/+2
for the MQ dissector: - PDU desegmentation; - XA messages; - Netbios, SPX, HTTP support; - Subdissector table; dissector for the MQ Programmable Command Formats protocol. svn path=/trunk/; revision=10761
2004-04-29From JBMRonnie Sahlberg1-1/+2
Dissection of the EncryptedFileSystem dce/rpc interface. This dissector also contains a complete and fully tested IDL definition for the entire interface. svn path=/trunk/; revision=10734
2004-04-17From Lukas Pokorny: RTPS (Real-Time Publish-Subscribe) support.Guy Harris1-1/+2
svn path=/trunk/; revision=10630
2004-03-30From Lars Roland: Tethereal version of SIP statistics tap, and fixes toGuy Harris1-1/+2
the Ethereal version. svn path=/trunk/; revision=10522
2004-03-27From Michael Lum:Guy Harris1-1/+2
ANSI IS-801 support; dissect more GSM supplementary services messages and fields. svn path=/trunk/; revision=10503