aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2004-07-18Set the svn:eol-style property on all text files to "native", so thatGuy Harris1303-6794/+6794
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-17Be kind and say "Please note" instead of simply "Note" when something went ↵Ulf Lamping1-6/+6
wrong while uninstalling :-) svn path=/trunk/; revision=11399
2004-07-17Set the "svn:keywords Id" property on all other files with an RCS ID string.Gerald Combs0-0/+0
svn path=/trunk/; revision=11398
2004-07-17RunGerald Combs0-0/+0
grep -l '\$Id:.*\$' * | xargs svn propset svn:keywords Id in the top-level source directory. This should replace any RCS "$Id:$" strings with Subersion Ids. svn path=/trunk/; revision=11397
2004-07-17add a new dialog box to menu "Capture/Interfaces..." to show the current ↵Ulf Lamping6-3541/+4110
state of the interfaces and a quick way to start a capture. added the IP address of the currently selected interface to the capture options dialog svn path=/trunk/; revision=11396
2004-07-17if using the get_interface_list function, try to get the IP addresses tooUlf Lamping2-468/+517
svn path=/trunk/; revision=11395
2004-07-17Changed dependencies, so image dir will be generated before epan, otherwise ↵Ulf Lamping1-2/+2
the libethereal.res file will not be available when needed to link libethereal.dll svn path=/trunk/; revision=11394
2004-07-17From Marco van den Bovenkamp: add some Sun elliptic curve cryptographyGuy Harris2-0/+31
and Camellia-based cipher suites. svn path=/trunk/; revision=11393
2004-07-17From Jean-Baptiste Marchand: add Microsoft-specific name-types, and makeGuy Harris1-2/+19
the name-type field signed. Make the variable into which "dissect_krb5_name_type()" puts the name type local to that routine - it's not used outside that routine. svn path=/trunk/; revision=11392
2004-07-17From Yuriy Sidelnikov: if asn1_length_decode() returns 0 butGuy Harris1-0/+25
tvb_reported_length_remaining() returns more then two bytes we still have to dissect rest of the pdu. svn path=/trunk/; revision=11391
2004-07-17From Lars Ruoff: don't hardwire the RTP sampling clock rate to 8000Guy Harris1-1/+54
samples/second, determine it from the payload type for payload types with a known clock rate. svn path=/trunk/; revision=11390
2004-07-17From Martin Mathieson: if you create a new filter and cancel the "EditGuy Harris1-11/+32
Color Filter" dialog, remove the new filter from the list. svn path=/trunk/; revision=11389
2004-07-17From Graham Bloice: add resource information to libethereal.dll.Guy Harris5-4/+45
svn path=/trunk/; revision=11388
2004-07-17From Ainsley Pereira: set up conversations for RTSP when appropriate.Guy Harris1-0/+13
svn path=/trunk/; revision=11386
2004-07-17From Lukas Pokorny: fix some bugs.Guy Harris1-0/+4
svn path=/trunk/; revision=11385
2004-07-17G_MAXINT32, G_MININT32, and G_MAXUINT32 aren't defined by GLib 1.2[.x],Guy Harris2-0/+19
so we have to define them ourselves if they're not defined. svn path=/trunk/; revision=11384
2004-07-16From Debian. Likely author: Frederic Peters <fpeters@debian.org>Jörg Mayer3-2/+3
* Updated omniorb URL (closes: #257512) run pod2man with --section=4 for ethereal-filter svn path=/trunk/; revision=11383
2004-07-16I'm not sure "strtol()" and "strtoul()" are guaranteed to clear "errno"Guy Harris2-5/+42
on success, so we clear it before calling them. Assign the value of "strtol()" to a "long" and assign the value of "strtoul()" to an "unsigned long", as those are the return types for those functions - "gint32" and "guint32" might not be large enough for the return value on an LP64 platform. Check for errno being EINVAL, as that can happen if the number isn't valid. Before assigning the value returned by "strtol()" or "strtoul()" to the final destination, check whether it's in the right range for that destination. svn path=/trunk/; revision=11382
2004-07-16This shouldn't be checked in, as it's generated from Makefile.am.Guy Harris1-445/+0
svn path=/trunk/; revision=11381
2004-07-16Indces run from 0-2 if an array is declared as array[3].Jörg Mayer1-7/+7
This patch has been part of RedHat since 0.9.16, unfortunately the patch never made it into the mainline source. The patch seems to be authored by Phil Knirsch (from ethereal.spec: * Tue Nov 25 2003 Phil Knirsch <pknirsch@redhat.com> 0.9.16-3 - Fixed out of bound array access (#110749). svn path=/trunk/; revision=11380
2004-07-15Convert make-version.pl and the associated cvsversion.h and CVSVERSIONGerald Combs8-93/+54
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-15Try again (hook script didn't do its thing).Gerald Combs1-0/+1
svn path=/trunk/; revision=11378
2004-07-15Test commit for new repository.Gerald Combs1-1/+0
svn path=/trunk/; revision=11377
2004-07-14As per Pavel Kankovsky, return FALSE, not TRUE, if "user_font_test()"Guy Harris1-7/+9
fails, as that means we aren't setting the font to the new value. svn path=/trunk/; revision=11376
2004-07-13Both epan/doxygen.cfg and gtk/doxygen.cfg depend on the root doxygen.cfg.Gerald Combs1-3/+14
Build it before going into those directories. svn path=/trunk/; revision=11375
2004-07-13Use libethereal.dll by default.Gerald Combs1-2/+2
svn path=/trunk/; revision=11374
2004-07-13Conversation/Endpoint list performance patch from Ian SchorrUlf Lamping2-15/+26
svn path=/trunk/; revision=11373
2004-07-13From Daniel Thompson: add additional message/alert box options toGuy Harris8-32/+66
display "Save", "Continue without Saving", and "Cancel", for the "do you want to save?" messages. svn path=/trunk/; revision=11372
2004-07-13If we fail to open the output file, report the reason why.Guy Harris1-5/+7
svn path=/trunk/; revision=11371
2004-07-13From Pavel Kankovsky: the items pointed to by elements in the "text[]"Guy Harris1-3/+3
array are all "g_free()"d, so they have to be "g_malloc()"ed - instead of setting some to "", set them to "g_strdup("")". svn path=/trunk/; revision=11370
2004-07-13From Jean-Baptiste Marchand: MS Eventlog support.Guy Harris4-2/+920
svn path=/trunk/; revision=11369
2004-07-12bugfix to a bug reported by jprakashbabu@hotpop.com:Ulf Lamping1-6/+6
mergecap didn't created a new output file svn path=/trunk/; revision=11368
2004-07-12bugfix to a bug reported by Ian Schorr:Ulf Lamping1-2/+2
don't present main window when closing dialogs on GTK2.4, as this might be a statistic window svn path=/trunk/; revision=11367
2004-07-12bugfix to a bug reported by Stuart MacDonald (bug #12):Ulf Lamping1-1/+4
present main window before closing the program, when asking to save the capture file first svn path=/trunk/; revision=11366
2004-07-12bugfix to a bug reported by Ian Schorr:Ulf Lamping1-3/+9
GTK2.4 open directory doesn't go into last opened dir (this will affect all open file dialogs) svn path=/trunk/; revision=11365
2004-07-12bugfix to a bug reported by Stuart MacDonald (bug #10):Ulf Lamping1-2/+2
return FALSE for the recent files text entry, otherwise Ethereal will crash when selected this field and press Apply svn path=/trunk/; revision=11364
2004-07-11Correct my nameMichael Tüxen1-1/+1
svn path=/trunk/; revision=11363
2004-07-10changed column headers, replaced e.g. "-> Packets" byUlf Lamping1-2/+2
"Packets A->B" to clarify behaviour svn path=/trunk/; revision=11362
2004-07-10changed column headers, don't talk of frames but of packetsUlf Lamping1-2/+2
svn path=/trunk/; revision=11361
2004-07-10From Jean-Baptiste Marchand: frsrpc and frsapi support.Guy Harris7-2/+312
svn path=/trunk/; revision=11360
2004-07-10SUM, like COUNT, MIN, MAX, and AVG, computes the value over theGuy Harris1-4/+4
interval, not over the entire capture (a sum over the entire capture would yield only one value, which isn't very interesting to plot). svn path=/trunk/; revision=11359
2004-07-10Clean up some formatting, and fix some typoes.Guy Harris1-25/+41
svn path=/trunk/; revision=11358
2004-07-09Use "iscntrl()", rather than "isprint()", to test whether a character isGuy Harris3-32/+82
a CTL in HTTP, ICAP, and RTSP. Check for non-ASCII characters in ICAP and RTSP, just as we do in HTTP. The headers in those protocols are just "headers", not "MIME headers", at least in the RFCs (common usage nonwithstanding; not all of those headers are for MIME stuff such as Content-Type). Add some RFC numbers. svn path=/trunk/; revision=11357
2004-07-09Move the redefinition of "isprint()" to be used by dissectors whenGuy Harris9-27/+73
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-07-09In the GTK+ code, move the redefinition of "isprint()" toGuy Harris5-17/+51
"gtk/isprint.h", and include that in "follow_dlg.c" (which wasn't including "gtkglobals.h" and thus wasn't getting the redefinition) and "proto_draw.c" (which was including "gtkglobals.h" but now needs to include "isprint.h" as well). svn path=/trunk/; revision=11355
2004-07-09"length" is relative to the start of the field, so don't subtract theGuy Harris1-5/+6
start of the field from it. svn path=/trunk/; revision=11354
2004-07-09Don't allow non-positive values for the main window width and heightGuy Harris2-17/+60
values in the "recent" file. Also, check for syntax errors in numerical values. Set the main window height, as well as the main window width, to default values before we read in the values from the "recent" file. (Use non-positive values here if you want the default to be "don't set the geometry" - note that you can't set one to a positive value and the other one to a non-positive value and expect only one to be set; they *both* have to be positive in order for the size to be set.) Treat non-positive values for those settings in the "recent" structure as an indication that we don't have values from them and that we should therefore not set the window size. svn path=/trunk/; revision=11353
2004-07-09Updated to support the upcomingMichael Tüxen1-25/+16
draft-ietf-rserpool-enrp-09.txt svn path=/trunk/; revision=11352
2004-07-09Don't show the splash screen if we've been passed the "-G" flag.Gerald Combs1-2/+2
svn path=/trunk/; revision=11351
2004-07-09Add more entries.Gerald Combs1-1/+7
svn path=/trunk/; revision=11350