aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2004-01-19Move "ts_type_text" out of "epan/timestamp.h into "gtk/recent.c", asGuy Harris4-23/+20
it's only used in the latter; that avoids lots of warnings about "ts_type_text" being defined but not used in other source files that include "epan/timestamp.h". (If it's going to be used in more than one file, make it non-static and declare it "extern" in "epan/timestamp.h".) Define TS_NOT_SET as ((ts_type)-1), and use that when initializing "timestamp_type" in Ethereal and when checking to see whether "timestamp_type" was set, to avoid signed vs. unsigned comparison warnings. Clean up indentation. svn path=/trunk/; revision=9740
2004-01-19Make the signatures of "dcerpcstat_reset()", "dcerpcstat_packet()", andGuy Harris1-4/+11
"dcerpcstat_draw()" match what "register_tap_listener()" expects, to squelch warnings. svn path=/trunk/; revision=9739
2004-01-19Before checking for SASL security stuff, make sure the bytes you'reGuy Harris1-2/+3
going to check exist. Doing so arranges that "tvb_reported_length_remaining(tvb, offset) is >= 5 (unless the reported length is less than the data length, but that "shouldn't happen"). Instead of comparing "tvb_get_ntohl(tvb, offset) - 4" against "tvb_reported_length_remaining(tvb, offset)", which runs the risk of giving a bogus answer if "tvb_get_ntohl(tvb, offset)" is < 4, compare "tvb_get_ntohl(tvb, offset) against "tvb_reported_length_remaining(tvb, offset)-4", as the latter is guaranteed to be > 0 (and cast the latter expression to get rid of the signed/unsigned comparison warning that caused me to notice this issue in the first place). svn path=/trunk/; revision=9738
2004-01-19Put $(srcdir) in front of "make-version.pl", as is done for otherGuy Harris1-2/+2
scripts. svn path=/trunk/; revision=9737
2004-01-19We need "cvsversion.h" in order to build stuff in the "gtk" directory.Guy Harris1-2/+2
svn path=/trunk/; revision=9736
2004-01-19char *drep -> guint8 *drepJörg Mayer36-1318/+1318
svn path=/trunk/; revision=9735
2004-01-19Trivial signed/unsigned warning fixesJörg Mayer2-5/+5
svn path=/trunk/; revision=9734
2004-01-19Trivial warning fixes: func(void), not func()Jörg Mayer1-4/+4
svn path=/trunk/; revision=9733
2004-01-19Trivial signed/unsigned warning fixesJörg Mayer2-5/+5
svn path=/trunk/; revision=9732
2004-01-19The current year is 2004Jörg Mayer2-3/+5
svn path=/trunk/; revision=9731
2004-01-19Update to CLDAPRonnie Sahlberg1-39/+349
dissect the CLDAP netlogon rpc call svn path=/trunk/; revision=9730
2004-01-19move timestamp format options from "View->Options" dialog intoUlf Lamping11-153/+172
menuitems under "View->Time Display Format". renamed timestamp enum items e.g. from ABSOLUTE to TS_ABSOLUTE, to prevent conflicting definitions with MSVC svn path=/trunk/; revision=9729
2004-01-19It appears that, for ISDN captures, the rules for whether there's 4Guy Harris1-10/+30
bytes of extra stuff at the end of the packet or not are the same as for Ethernet and 802.11. svn path=/trunk/; revision=9728
2004-01-19Include <string.h> to declare "strcasecmp()".Guy Harris1-5/+2
svn path=/trunk/; revision=9727
2004-01-19added some menuitems "View->Show" including show/hide of all main widgets,Ulf Lamping17-223/+616
saving the states in the recent file svn path=/trunk/; revision=9726
2004-01-18From Anders Broman:Olivier Biot1-2/+13
Convert content type to lowercase, and save pinfo->prvate_data before handing off to a subdissector. svn path=/trunk/; revision=9725
2004-01-18Note that Jeff Weston is now the maintainer.Gerald Combs1-1/+2
svn path=/trunk/; revision=9724
2004-01-18Add -Wstrict-prototypes to extra-gcc-checksJörg Mayer1-2/+2
svn path=/trunk/; revision=9723
2004-01-18Fix warnings found by -Wstrict-prototypesJörg Mayer9-27/+20
svn path=/trunk/; revision=9722
2004-01-18Fix warnings found by -Wstrict-prototypesJörg Mayer1-5/+5
svn path=/trunk/; revision=9721
2004-01-18Fix some of the warnings when compiling with -Wstrict-prototypesJörg Mayer1-4/+2
svn path=/trunk/; revision=9720
2004-01-18Warning fix when compiling with -strict-prototypesJörg Mayer1-3/+3
../../epan/dfilter/drange.h:62: warning: function declaration isn't a prototype ../../epan/dfilter/drange.h:83: warning: function declaration isn't a prototype svn path=/trunk/; revision=9719
2004-01-18Remove unused rule to build packet-asn1-static.oJörg Mayer1-4/+1
svn path=/trunk/; revision=9718
2004-01-18Give the IrDA dissector its own private value_string table for the frameGuy Harris1-3/+10
type in the IrLAP control field - on most UNIXes the dissector should be able to use the table from the main program, but that doesn't currently work on Windows. svn path=/trunk/; revision=9717
2004-01-18Add arguments to "dissect_xdlc_control()" to specify value_stringGuy Harris1-1/+1
tables, for use in the top-level item for the control field, for unnumbered frame function codes for commands and responses. If the argument is null, default to the standard tables. Use "dissect_xdlc_control()" and the #defines from "xdlc.h" for IrDA. Use the reported length rather than the data length in the IrDA dissector when iterating over the data in an IrDA packet. Make "dissect_xid()" update the column information as well as the protocol tree. Put the slot number into the protocol tree only for command frames - "the slot number field is undefined in discovery XID response frames", to quote the IrLAP spec. svn path=/trunk/; revision=9716
2004-01-18Add arguments to "dissect_xdlc_control()" to specify value_stringGuy Harris1-2/+4
tables, for use in the top-level item for the control field, for unnumbered frame function codes for commands and responses. If the argument is null, default to the standard tables. Use "dissect_xdlc_control()" and the #defines from "xdlc.h" for IrDA. Use the reported length rather than the data length in the IrDA dissector when iterating over the data in an IrDA packet. Make "dissect_xid()" update the column information as well as the protocol tree. Put the slot number into the protocol tree only for command frames - "the slot number field is undefined in discovery XID response frames", to quote the IrLAP spec. svn path=/trunk/; revision=9715
2004-01-18Use a value_string for the message type field.Guy Harris1-49/+66
Do some checks for validity before dissecting the packet - reject as not being OLSR packets that don't match. Use "proto_tree_add_item()" in some places where the value of the field isn't used. Do some sanity checking on the message size field. svn path=/trunk/; revision=9714
2004-01-18Add arguments to "dissect_xdlc_control()" to specify value_stringGuy Harris9-565/+490
tables, for use in the top-level item for the control field, for unnumbered frame function codes for commands and responses. If the argument is null, default to the standard tables. Use "dissect_xdlc_control()" and the #defines from "xdlc.h" for IrDA. Use the reported length rather than the data length in the IrDA dissector when iterating over the data in an IrDA packet. Make "dissect_xid()" update the column information as well as the protocol tree. Put the slot number into the protocol tree only for command frames - "the slot number field is undefined in discovery XID response frames", to quote the IrLAP spec. svn path=/trunk/; revision=9713
2004-01-18Fix a type that Jean-Baptiste Marchand found.Richard Sharpe1-2/+2
svn path=/trunk/; revision=9712
2004-01-18Add a few commentsJörg Mayer1-1/+10
svn path=/trunk/; revision=9711
2004-01-18From Anders Broman: fix some string output (and split some lines).Guy Harris1-17/+46
svn path=/trunk/; revision=9710
2004-01-18Update the Win32 information given when we fail to open a capture deviceGuy Harris2-6/+10
to note that the 3.0 and later versions of WinPcap don't support PPP/WAN captures even on Windows OT. svn path=/trunk/; revision=9709
2004-01-18Put the list of generated source files (well, generated header files,Guy Harris1-2/+7
really) into a BUILD_SOURCES macro, as is done in Makefile.am, and use that in the "distclean" rule. svn path=/trunk/; revision=9708
2004-01-18Add README.capture to the list of files.Guy Harris1-1/+2
svn path=/trunk/; revision=9707
2004-01-18Give it an RCS ID.Guy Harris1-0/+2
svn path=/trunk/; revision=9706
2004-01-18Add a Mac OS X icon file, for possible future use.Guy Harris1-1/+2
svn path=/trunk/; revision=9705
2004-01-18Add a Mac OS X icon file, for possible future use.Guy Harris1-0/+0
svn path=/trunk/; revision=9704
2004-01-18Output the result of -h to stdout, not stderrJörg Mayer1-16/+21
svn path=/trunk/; revision=9703
2004-01-18Output the result of -h to stdout, not stderrJörg Mayer2-37/+41
svn path=/trunk/; revision=9702
2004-01-18Nice rendering of the CVS version as "(cvs 200401181200003000)".Olivier Biot4-16/+40
The make-version.pl script only defines CVSVERSION if this was a build from CVS. svn path=/trunk/; revision=9701
2004-01-18Update to Jan 16thJörg Mayer2-154/+346
svn path=/trunk/; revision=9700
2004-01-18make the column preferences page look a bit more like the color rules dialogUlf Lamping1-61/+62
svn path=/trunk/; revision=9699
2004-01-18no more differences, wether display filter dialog is called fromUlf Lamping3-29/+11
menu "Analyze->Display Filter" or statusbar "Filter:" button. svn path=/trunk/; revision=9698
2004-01-18complete redesign of color dialogUlf Lamping2-137/+159
svn path=/trunk/; revision=9697
2004-01-18From Chris Wilson:Olivier Biot3-200/+310
Support for dissection of concatenated SMPP PDUs. Also: Add more information to the protocol tree summary. Clean up the white space so it's in-line with the conventions of the original author (8-space tabs, 4-space indentations). svn path=/trunk/; revision=9696
2004-01-17cvsversion.h: added distclean target and dependenciesUlf Lamping1-6/+6
svn path=/trunk/; revision=9695
2004-01-17Integrate the "find . -name Entries" into make-version.pl, to make thisJörg Mayer3-10/+29
work with nmake too. svn path=/trunk/; revision=9694
2004-01-17splitted some of the preferences texts into more than one line,Ulf Lamping8-19/+19
to reduce the size of the preferences dialog. This becoming necessary, as some of the texts were huge svn path=/trunk/; revision=9693
2004-01-17Select first row in column list by default,Ulf Lamping1-3/+17
fixed sensitivity of option_menu svn path=/trunk/; revision=9692
2004-01-17First attempt to make a description of the capturing thingsUlf Lamping1-0/+110
svn path=/trunk/; revision=9691