aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.common
AgeCommit message (Collapse)AuthorFilesLines
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
2004-03-26Include packet-sip.h in the release.Guy Harris1-1/+2
svn path=/trunk/; revision=10496
2004-03-23Make "epan_init()" take, as additional arguments, pointers to routinesGuy Harris1-2/+1
that dissectors should call to report file open and read errors, and have "report_open_failure()" and "report_read_failure()" call through those pointers, rather than being defined and exported by the application using libethereal - instead, the application would define those functions and pass pointers to them to 'epan_init()". Move "report_err.h" to the epan directory, as the functions it declares are now part of the libethereal API. svn path=/trunk/; revision=10470
2004-03-23From Yuri Sidelnikov: FTAM support.Guy Harris1-1/+2
svn path=/trunk/; revision=10469
2004-03-23Add packet-sctp.hMichael Tüxen1-1/+2
svn path=/trunk/; revision=10458
2004-03-23From Jelmer Vernooij: split the AIM dissector into multiple files, andGuy Harris1-1/+2
add a few more SNACs. svn path=/trunk/; revision=10450
2004-03-23Add support for DLT_APPLE_IP_OVER_IEEE_1394.Guy Harris1-1/+2
svn path=/trunk/; revision=10446
2004-03-19From Michael Lum:Guy Harris1-1/+2
GSM A facility element decoding; make TCAP dissector export routines for use by various GSM dissectors; make GSM MAP dissector use exported TCAP routines/defines; GSM Supplementary Services support. svn path=/trunk/; revision=10409
2004-03-18From Josh Bailey: IPDC support.Guy Harris1-1/+2
svn path=/trunk/; revision=10399
2004-03-05From Anders Broman: add a dissector for E.164 numbers, and use it in theGuy Harris1-1/+2
ISUP dissector, to allow filtering on E.164 numbers. svn path=/trunk/; revision=10314
2004-03-04Check for PERL in epan/configure.inJörg Mayer1-4/+2
Fix generation of x11 includes. svn path=/trunk/; revision=10301
2004-03-02Move the dissectors into libethereal (no static/shared lib changes):Jörg Mayer1-460/+1
- Create epan/Makefile.common - Move dissector_src and helper files from Makefile.common to epan/Makefile.common - Create register.c in epan/ - link all the files into libethereal - put plugin_src into epan/Makefile.am Try to make rpms build with rpm v4 again (sorry, I've forgotten who to attribute this to). svn path=/trunk/; revision=10273
2004-02-29From Greg Morris:Guy Harris1-1/+3
Novell Modular Authentication Services support; fix some return values and decodes; show the NDS reply buffer only in service request packets. svn path=/trunk/; revision=10263
2004-02-23MSVC doesn't like having header files in .c=.obj targets.Gerald Combs1-3/+2
Fix dftest compiling under Windows. svn path=/trunk/; revision=10208
2004-02-23Move x11-declarations.h and x11-register-info.h back into BUILT_SOURCES,Gerald Combs1-7/+4
so that we can build after a "make distclean". svn path=/trunk/; revision=10204
2004-02-23Move cvsversion.h from BUILT_INCLUDES to BUILT_SOURCES. This tells automakeGerald Combs1-2/+5
to create cvsversion.h before any "all" or "check" targets are built. Clean up a few CVS version strings that I missed last week. svn path=/trunk/; revision=10199
2004-02-22TETHEREAL_TAP_SRC contains the names of source files for taps forGuy Harris1-2/+2
Tethereal. svn path=/trunk/; revision=10190
2004-02-22_HEADERS has special automake meaning. Rename to _INCLUDES where no magic is ↵Jörg Mayer1-15/+15
required (and see what breaks this time) svn path=/trunk/; revision=10178
2004-02-22make the Makefile.common really common between automake and nmake,Ulf Lamping1-59/+102
as lot's of definitions were used in the automake process only svn path=/trunk/; revision=10176
2004-02-21Add routines that can be called from dissectors to report file open andGuy Harris1-1/+2
read errors; there are separate implementations for Ethereal (pops up an alert box) and Tethereal (prints an error message). Use those routines in the ASN.1 dissector. svn path=/trunk/; revision=10152
2004-02-20From Rowan McFarlane: Update Skinny to support Cisco CallManager 4.x,Gerald Combs1-1/+2
add support for Cast Client Control Protocol. svn path=/trunk/; revision=10140
2004-02-20Update to Kerberos.Ronnie Sahlberg1-1/+3
Split kerberos prototype into two halves: helpers to dissect ASN.1 BER in packet-ber.c and kerberos stuff using those helpers in packet-kerberos.c This new kerberos thing places filterable items for every single field and also dissects the bitstring Option fields. It is hoped that this will make it easier to extend kerberos to do decryption of service tickets. svn path=/trunk/; revision=10122
2004-02-16Edwin Calo: Extract strings from a postgres datastreamJörg Mayer1-1/+2
svn path=/trunk/; revision=10069