aboutsummaryrefslogtreecommitdiffstats
path: root/epan
AgeCommit message (Collapse)AuthorFilesLines
2004-06-04New protocol : DNPRonnie Sahlberg1-1/+2
From Graham Bloice svn path=/trunk/; revision=11099
2004-06-03From Lars Roland: Add have_tap_listeners() and rtp_payload_type_valsGerald Combs1-0/+2
to libethereal.def. svn path=/trunk/; revision=11092
2004-06-03From Graeme Hewson:Guy Harris4-15/+13
Use gint32 instead of guint32 for node data. Fix up some other signed-vs-unsigned issues in the display filter parser and lexical analyzer. svn path=/trunk/; revision=11085
2004-06-03From Graeme Hewson:Guy Harris1-23/+11
Fix assertion failure when absolute value of negative slice offset > field length. Remove code for handling negative slice lengths. svn path=/trunk/; revision=11084
2004-06-03From Graeme Hewson:Guy Harris1-66/+96
Check slice lengths as well as offsets. Disallow negative/zero lengths. Range on RHS of display filter expression wasn't being checked in every case. svn path=/trunk/; revision=11083
2004-06-03From Graeme Hewson:Guy Harris1-7/+26
Use gint32 instead of guint32 and strtol() instead of strtoul() for signed integers. Pathological slice specifications could cause Flex default rule to be invoked, echoing characters to stdout. Example: frame[0foo]==1 svn path=/trunk/; revision=11082
2004-05-31split doxygen.cfg into common Ethereal things and module specificsUlf Lamping1-1060/+1
svn path=/trunk/; revision=11044
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-23From Lars Roland: add some more .cvsignore items.Guy Harris1-0/+2
svn path=/trunk/; revision=10975
2004-05-22From Gisle Vanem: export more functions from libethereal, as they'reGuy Harris1-0/+4
needed by Ethereal itself. svn path=/trunk/; revision=10956
2004-05-21Get rid of a no-longer-used variable.Guy Harris1-3/+1
svn path=/trunk/; revision=10938
2004-05-20"datafile_dir" in "init_plugins()" is used regardless of whether we'reGuy Harris1-13/+8
on Windows or UN*X - don't #ifdef it. Clean up the #ifdefs in "get_plugins_global_dir()". Clean up white space. svn path=/trunk/; revision=10931
2004-05-20separate dir functions from the plugin init,Ulf Lamping2-25/+56
put this and some other dirs in the about dialog svn path=/trunk/; revision=10928
2004-05-20code cleanupUlf Lamping1-4/+2
svn path=/trunk/; revision=10927
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-15From Gisle Vanem: export dfilter_dump from libethereal for the benefitGuy Harris1-0/+1
of dftest. svn path=/trunk/; revision=10908
2004-05-15remove FI_LINK again,Ulf Lamping1-10/+1
as this info can be derived from the presence of the FT_FRAMENUM field svn path=/trunk/; revision=10901
2004-05-14add support to link from specially marked fields to related packets,Ulf Lamping1-1/+10
a doubleclick will follow the link svn path=/trunk/; revision=10892
2004-05-13From Carlos Pignataro: Add MPLS Echo support.Gerald Combs1-1/+2
svn path=/trunk/; revision=10876
2004-05-13use sed to create a temporary doxygen config file,Ulf Lamping2-5/+11
to get the version number from ..\config.nmake svn path=/trunk/; revision=10865
2004-05-13Bump the version up to 0.10.4. Preliminary updates to the NEWS file. UpdatesGerald Combs1-1/+1
welcome. svn path=/trunk/; revision=10863
2004-05-12From Dominic B�chaz: IEEE 1588 (Precision Time Protocol) support.Gerald Combs1-1/+2
svn path=/trunk/; revision=10857
2004-05-11From Lars Roland: add the libethereal .def file to the list of filesGuy Harris1-1/+2
included in the distribution. svn path=/trunk/; revision=10852
2004-05-11From Lars Roland: ignore the libethereal DLL and export file in CVS.Guy Harris1-0/+2
svn path=/trunk/; revision=10851
2004-05-11add the new doxygen.cfg file to the EXTRA_DIST filesUlf Lamping1-2/+3
svn path=/trunk/; revision=10844
2004-05-11experimental doxygen supportUlf Lamping1-0/+1117
svn path=/trunk/; revision=10843
2004-05-11adding a doxygen targetUlf Lamping1-2/+7
svn path=/trunk/; revision=10842
2004-05-10prepared for generate documentation using doxygen,Ulf Lamping1-165/+565
added lot's of new (hopefully correct) comments svn path=/trunk/; revision=10841
2004-05-10From Jerry Talkington: speed up tvb_uncompress() by increasing the minimalOlivier Biot1-17/+69
and default uncompression buffer. svn path=/trunk/; revision=10839
2004-05-10use GNUC_FORMAT_CHECK in every appropriate functionUlf Lamping1-124/+23
svn path=/trunk/; revision=10838
2004-05-10first try to get rid of annoying double definition of the ↵Ulf Lamping1-9/+8
proto_tree_add_xy_fromat functions, because of GNUC printf format checks svn path=/trunk/; revision=10837
2004-05-09From Lars Roland: fix some MSVC build problems.Guy Harris2-3/+2
svn path=/trunk/; revision=10835
2004-05-09From Lars Roland: add support for building a libethereal.dll with MSVC:Guy Harris8-25/+540
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-09added changed some comments to better reflect current "behaviour"Ulf Lamping1-18/+19
svn path=/trunk/; revision=10833
2004-05-09From Graeme Hewson:Guy Harris1-7/+9
Fix off-by-one errors in slice_func svn path=/trunk/; revision=10831
2004-05-09From Graeme Hewson:Guy Harris1-2/+2
"aim.fnac.ssi.buddyname==ab" caused segmentation fault. Fix handling of unparsed value as byte string. svn path=/trunk/; revision=10830
2004-05-09From Graeme Hewson:Guy Harris1-2/+17
Error if protocol specified on RHS of display filter comparison. If user specified "fc", they probably intended a byte value rather than the fibre channel protocol; fix makes mistake clear. Fix assertion failure with range on LHS of display filter comparison and field on RHS. svn path=/trunk/; revision=10829
2004-05-08From Graeme Hewson: get rid of unnecessary check (it's necessary forGuy Harris1-7/+1
octal, as the maximum of 3 octal digits can be more than 0377, but not necessary for hex, as the maximum of 2 hex digits can't be more than 0xff). svn path=/trunk/; revision=10827
2004-05-08Don't try to include epan/config.h.win32 in the distribution.Gerald Combs1-2/+1
svn path=/trunk/; revision=10826
2004-05-08Add the valuable input from Gilbert Ramirez in reply to questions I had whenOlivier Biot1-1/+68
thinking at implemeting an "in" display filter operation. svn path=/trunk/; revision=10820
2004-05-08From Rich Coe: DICOM support.Guy Harris1-1/+2
svn path=/trunk/; revision=10818
2004-05-07Memory management of tvb_uncompress() needs tvb_set_free_cb().Olivier Biot1-1/+2
svn path=/trunk/; revision=10817
2004-05-07did some code cleanup, added some comments from value_string.cUlf Lamping1-5/+16
svn path=/trunk/; revision=10813
2004-05-06Get rid of epan/config.h.win32.Olivier Biot1-111/+0
svn path=/trunk/; revision=10808
2004-05-06Get rid of epan/config.h.win32.Olivier Biot2-17/+16
Fix a missing ZLIB_CFLAGS in epan/Makefile.nmake. svn path=/trunk/; revision=10807
2004-05-06From Kendy Kutzner: a char should be compared with '\0', not NULL.Olivier Biot1-3/+3
svn path=/trunk/; revision=10806
2004-05-05From Jerry Talkington:Olivier Biot2-2/+252
- Helper functions for uncompressing compressed tvbuffers. - Compressed content coding dissection in HTTP. svn path=/trunk/; revision=10799
2004-05-02Make sure the character values we pass to "isprint()" aren'tGuy Harris1-4/+4
sign-extended. svn path=/trunk/; revision=10767
2004-05-01GLib 1.2[.x]'s "g_string_free()" doesn't return a value.Guy Harris1-1/+13
svn path=/trunk/; revision=10765
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