aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2004-02-09bugfix: close capture file again, if empty after capturingUlf Lamping1-1/+11
(bug appears only, if "update list of packets ..." not used) svn path=/trunk/; revision=10017
2004-02-09bugfix: init the toolbar's Save icons correctlyUlf Lamping1-1/+2
svn path=/trunk/; revision=10016
2004-02-09minor changesUlf Lamping1-6/+7
svn path=/trunk/; revision=10015
2004-02-09typo fixedUlf Lamping1-2/+2
svn path=/trunk/; revision=10014
2004-02-09two new help pages:Ulf Lamping3-1/+171
getting_started for the very first steps running Ethereal capturing for some explanation how to capture data svn path=/trunk/; revision=10013
2004-02-09Forgot *.laJörg Mayer2-8/+10
svn path=/trunk/; revision=10012
2004-02-09Ignore shared dll stuffJörg Mayer2-0/+4
svn path=/trunk/; revision=10011
2004-02-09Cast the arguments to <ctype.h> macros to "guchar", to squelchGuy Harris3-15/+16
"subscript has type `char'" warnings and to make the code work correctly if there are characters with the 8th bit set. svn path=/trunk/; revision=10010
2004-02-09Add extra {} to "avoid ambiguous `else'", to quote the GCC warning thatGuy Harris1-3/+3
this squelches. svn path=/trunk/; revision=10009
2004-02-08Move -pedantic back to extra-gcc-flags, as glib generates more warnings than ↵Jörg Mayer1-3/+3
our code svn path=/trunk/; revision=10008
2004-02-08Move -pedandic & co back into extra-flags (prepare for dissectors moving to ↵Jörg Mayer1-3/+3
epan/) svn path=/trunk/; revision=10007
2004-02-07corrected links to the ethereal.exe for GTK2 versionUlf Lamping1-3/+3
svn path=/trunk/; revision=10006
2004-02-07Put AM_DISABLE_STATIC into the same place as in epan and wiretapJörg Mayer1-2/+3
svn path=/trunk/; revision=10005
2004-02-07Don't build as shared *and* static by defaultJörg Mayer2-2/+6
svn path=/trunk/; revision=10004
2004-02-07Ignore byproducts of shared lib compilationJörg Mayer3-0/+7
svn path=/trunk/; revision=10003
2004-02-07Use G_DIR_SEPARATOR_S rather than "/" as the pathname separator whenGuy Harris1-2/+2
constructing the pathname of a temporary file, so as not to frighten the horses when they see an error message for a temporary capture file. svn path=/trunk/; revision=10002
2004-02-06Whether frames in an AiroPeek V9 802.11 capture have 4 bytes of 0 or anGuy Harris2-19/+48
FCS at the end appears to depend on the network subtype value. svn path=/trunk/; revision=10001
2004-02-06From Lars Roland: Warning fixesJörg Mayer1-15/+51
svn path=/trunk/; revision=10000
2004-02-06replaced every appearance of gtk_scrolled_window_new() withUlf Lamping30-137/+195
scrolled_window_new(). added gtk_scrolled_window_set_policy(AUTOMATIC,AUTOMATIC) to scrolled_window_new() added GTK2's gtk_scrolled_window_set_shadow(GTK_SHADOW_IN) to every place needed svn path=/trunk/; revision=9999
2004-02-06renamed GTK2 version from ethereal2.exe to ethereal-gtk2.exe,Ulf Lamping3-42/+47
as this is *not* the Ethereal version 2 already. Some other cleanup done svn path=/trunk/; revision=9998
2004-02-06Fix a few warningsJörg Mayer1-8/+9
svn path=/trunk/; revision=9997
2004-02-06simple_dialog now uses the stock_dialog_xy iconsUlf Lamping1-2/+7
svn path=/trunk/; revision=9996
2004-02-06A MediaSubType value of 1 also means 802.11. (Is that what indicatesGuy Harris1-2/+2
whether there's an FCS or not?) svn path=/trunk/; revision=9995
2004-02-06Make sure a packet has one and only one length field, one and only oneGuy Harris1-6/+44
timestamp lower field, and one and only one timestamp lower field. svn path=/trunk/; revision=9994
2004-02-06The time stamps in *Peek V9 files appear to be in nanoseconds from theGuy Harris1-12/+19
Windows FILETIME epoch, i.e. midnight, January 1, 1601. svn path=/trunk/; revision=9993
2004-02-06From Yaniv Kaul:Guy Harris1-3/+29
label each column of a results token; handle types 35, 38, and 104. svn path=/trunk/; revision=9992
2004-02-06Ethernet frames appear to have 4 bytes of 0 at the end, at least in theGuy Harris1-5/+20
captures I've seen. svn path=/trunk/; revision=9991
2004-02-06V9 format appears to be used by some versions of EtherPeek, too.Guy Harris2-87/+220
The MediaType field seems to be 0 for the Ethernet captures; however, the MediaSubType field is different. The fields in the header are different - we can't use hard-coded offsets for the fields, we have to process them as a sequence of tag/value items. Rename some routines to use the same naming convention as the V9 open routine rather than the same convention as the V5/V6/V7 read and seek/read routines. svn path=/trunk/; revision=9990
2004-02-06Fix up a comment to note that this is also used for AiroPeek, and usedGuy Harris1-2/+9
only for versions 5, 6, and 7 of the file format. Add another comment explaining why this refers to "etherpeek" even though it's also used for AiroPeek and probably also TokenPeek. svn path=/trunk/; revision=9989
2004-02-06Add a new dissector table for multipart media encpsulation (similar to theOlivier Biot2-22/+88
"media_type" dissector table defined in the HTTP dissector), allowing us to make the distinction between dissecting a standaone media type and an encapsulated media type (e.g., encapsulated in a multipart entity). Provide separate dissectors for "standalone" and "encapsulated" MMSE, hence fixing the needlessly clearing of the Info column when the MMSE is only part of the encapsulated entity (e.g., in the PAP protocol for WAP Push). svn path=/trunk/; revision=9988
2004-02-06Sort the link-layer type values a little better.Guy Harris1-4/+2
svn path=/trunk/; revision=9987
2004-02-05Add new col_append methods which will prepend the (format) string with theOlivier Biot2-2/+54
provided separator (or a default ", ") if the column is not empty. svn path=/trunk/; revision=9986
2004-02-05From Martin Regner (patch from Anders Broman):Olivier Biot1-2/+6
Calculate the correct offset for fastStart (bits, not bytes). svn path=/trunk/; revision=9985
2004-02-05From Holger Schurig: add two cipher strings.Olivier Biot1-1/+3
svn path=/trunk/; revision=9984
2004-02-05Spotted by Guy Harris: SyncML media type was not registered (it was lostOlivier Biot1-1/+3
when we introduced the media dissector table and got rid of the WSP binary content type dissector table). svn path=/trunk/; revision=9983
2004-02-05We can't test the GTK+ version in dissectors or libethereal code, asGuy Harris2-4/+12
they don't include any GTK+ headers (and shouldn't do so, as they can't use GTK+); we use the GLib version as a proxy. svn path=/trunk/; revision=9982
2004-02-05Update a comment.Guy Harris1-2/+9
svn path=/trunk/; revision=9981
2004-02-04The menu item for changing the state of name resolution forGuy Harris1-2/+2
network-layer addresses should call the callback for network name resolution, not MAC name resolution. svn path=/trunk/; revision=9980
2004-02-04From Magnus Hansson:Guy Harris3-64/+262
* Added decoding of Transport type/trigger * Updated service code's text to match specification * Added new vendor IDs from ODVA * Added service etc to info column, formatted info column for easier overview * Added actual time out calculation for Forward close, Unconnected send * Fixed bug, port not shown for extended addresses * Added Network Segment to EPATH decode * NOP packets not decoded as they contain Common data Format svn path=/trunk/; revision=9979
2004-02-04Use InterCapNotation on the protocol header field. Add the hex encodingOlivier Biot1-28/+38
of the main PDU items displayed in the protocol header field. Some small white space fixes. svn path=/trunk/; revision=9978
2004-02-04Add some comments about the types of alert boxes you get with theGuy Harris6-20/+33
simple_dialog routines (which are really just message box/alert box routines). Add some macros for combinations of buttons (corresponding to combinations that some GUI toolkits, which only support some combinations, allow). svn path=/trunk/; revision=9977
2004-02-03From Peter J. Creath: add a heuristic dissector table, so thatGuy Harris3-1/+16
dissectors for protocols that put non-802.3 packets inside 802.3 frames can intercept 802.3/Ethernet frames before they're dissected as 802.3/Ethernet packets. svn path=/trunk/; revision=9976
2004-02-03As Apple's advertising industry might have said, "word-wrap different".Guy Harris1-3/+3
svn path=/trunk/; revision=9975
2004-02-03Tweak the error messages for bad capture filters.Guy Harris1-5/+6
svn path=/trunk/; revision=9974
2004-02-03Handle the media type "message/sip".Guy Harris1-2/+2
svn path=/trunk/; revision=9973
2004-02-03patch error removedUlf Lamping1-5/+1
svn path=/trunk/; revision=9972
2004-02-03from Lars Roland: fix NSIS uninstallationUlf Lamping2-18/+37
svn path=/trunk/; revision=9971
2004-02-03ups, moved previously missing %s to the right placeUlf Lamping1-3/+3
svn path=/trunk/; revision=9970
2004-02-03From Martin Mathieson: SIP sipfrag support.Guy Harris4-3/+147
svn path=/trunk/; revision=9969
2004-02-03Make a pointer to which a "const" pointer value is assigned "const"Guy Harris1-5/+15
itself. Instead of crashing if a too-large Kerberos blob is seen, just show it as an undecoded item. svn path=/trunk/; revision=9968