summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2004-03-18From Josh Bailey: IPDC support.Guy Harris6-2/+1000
svn path=/trunk/; revision=10399
2004-03-17* Protocol Hierarchy Statistics:Laurent Deniel3-38/+101
- store times of first and last packets in ph_stats_t - add bandwidth columns in GUI - miscellaneous code cleaning svn path=/trunk/; revision=10398
2004-03-17Correctly spell REAMDE.macosJörg Mayer1-2/+2
svn path=/trunk/; revision=10397
2004-03-17Enclose WV-CSP 1.2 token mappings in conditional compile comments. Once theOlivier Biot1-1/+3
WV-CSP 1.2 specifications will be corrected and in approved state, we can get rid of those comments (#ifdef ... #endif). svn path=/trunk/; revision=10396
2004-03-17Experimental Heimdal Kerberos detection.Jörg Mayer5-5/+321
As this is experimental and does not yet work reliably this feature is off by default. Enable it by using --with-krb5 during configure. Please do not yet make use of this feature (i.e. please do not *use* the defines provided by this option), until it has received further testing and fixing. Please run and check what the configure says. svn path=/trunk/; revision=10395
2004-03-17Sync with the sourcesJörg Mayer3-9/+146
svn path=/trunk/; revision=10394
2004-03-17Add new docsis files for static build. This is currently necessary andJörg Mayer1-2/+4
needs to be fixed. svn path=/trunk/; revision=10393
2004-03-17"esc_read()" is passed a FILE_T, not a FILE_T * - a FILE_T is a pointerGuy Harris1-3/+3
(a FILE * if zlib isn't used, a gzFile if zlib is used). Use "size_t" for the amount of data to read in "eyesdn_check_file_type()", to squelch signed vs. unsigned warnings. svn path=/trunk/; revision=10392
2004-03-17Suppress compiler warnings about unused arguments.Guy Harris1-2/+2
svn path=/trunk/; revision=10391
2004-03-17Use "g_ntohs()" rather than "ntohs()".Guy Harris1-3/+3
svn path=/trunk/; revision=10390
2004-03-17Cast a "char" to "guchar" before passing it to the ctype macros, so thatGuy Harris1-2/+2
it doesn't get sign-extended. svn path=/trunk/; revision=10389
2004-03-17Unfortunately, GCC 2.8.1 on x86/Solaris 7 doesn't do enoughGuy Harris1-2/+2
compile-time optimization; in particular, if you call GSM_MAP_PARAM_DISPLAY with a Gtag argument of GSM_MAP_P_NONE, the compiler does figure out that it only need generate code for the first branch for the first if in that macro, and it sort of seems to understand that _param_fcn is guaranteed to be null, but it doesn't optimize out the test and the branch for _param_fcn not being null - it does, however, generate a call to location 0, which, when you compile as position-independent code, the assembler refuses to assemble. Therefore, we put into the test for _param_fcn being null an additional test for Ga1 being GSM_MAP_P_NONE, which at least manages to get the code through the compiler. svn path=/trunk/; revision=10388
2004-03-17From Brian Wheeler: DOCSIS 2.0 support.Guy Harris13-295/+1848
svn path=/trunk/; revision=10387
2004-03-16From metatech: IBM WebSphere MQ protocol support.Guy Harris4-1/+1536
svn path=/trunk/; revision=10386
2004-03-16From Paul Ionescu: handle ODR hub default gateway announcements.Guy Harris1-12/+28
svn path=/trunk/; revision=10385
2004-03-16It's Mac OS, not MacOS.Guy Harris1-6/+10
Note that Ethereal doesn't work on pre-X Mac OS, in case somebody sees ".macos" and thinks it'll work on OS 9 or earlier versions. Explain that GLib and GTK+ now need to be shared libraries, and that the GLib 1.x and GTK+ 1.x release tarballs were built with an older version of libtool that didn't support building them as shared libraries on OS X. svn path=/trunk/; revision=10384
2004-03-15Peter Kjellerstedt:Jörg Mayer2-15/+20
* Correct the version checks (use path expansion rather than regular expressions, and fail if the tools are not installed at all). * Make it possible to specify other names for the auto* tools to use (e.g., automake-1.6 instead of automake). svn path=/trunk/; revision=10383
2004-03-15Add Build process items to TODOJörg Mayer1-1/+12
svn path=/trunk/; revision=10382
2004-03-15Beginnings of README.macosJörg Mayer1-0/+21
svn path=/trunk/; revision=10381
2004-03-14* Color filters:Laurent Deniel2-49/+120
Read of color filters rewritten to remove possibility of buffer overflow in read_filters_file() and to fix comment & blank line handling. This removes any limitation (and stack overflow) on the lengths of color filter name and filter expression which are now dynamically allocated. Fix removal/deletion of color filters (avoid segmentation fault when some color filter is deleted and then the list cleared for instance). The use of g_slist_remove() within an iterator is simply unsafe if the code is not prepared to handle this. Fix a small memory leak in revert_filters(). Remove inappropriate comments in read_filters(). Miscellaneous code cleaning. svn path=/trunk/; revision=10380
2004-03-14Fix incorrect number of arguments for format and compilation warnings.Laurent Deniel1-5/+4
svn path=/trunk/; revision=10379
2004-03-14Whitespace changeJörg Mayer1-3/+3
svn path=/trunk/; revision=10378
2004-03-13experimental: make usage of pcap_setbuff to increase the kernel buffer sizeUlf Lamping5-5/+71
svn path=/trunk/; revision=10377
2004-03-13updated texts to reflect the latest GUI changesUlf Lamping2-229/+258
svn path=/trunk/; revision=10376
2004-03-13using a stock icon for the open recent "clear list" itemUlf Lamping1-1/+6
svn path=/trunk/; revision=10375
2004-03-13replaced vsnprintf by g_vsnprintfUlf Lamping1-2/+2
svn path=/trunk/; revision=10374
2004-03-13replaced sprintf / snprintf by g_snprintf,Ulf Lamping29-258/+235
various other string related changes svn path=/trunk/; revision=10373
2004-03-13various string related changesUlf Lamping9-91/+136
svn path=/trunk/; revision=10372
2004-03-13various string related changes, mainly replace sprintf/snprintf by g_snprintfUlf Lamping7-56/+57
svn path=/trunk/; revision=10371
2004-03-13replaced snprintf by g_snprintf and removed #include "snprintf.h"Ulf Lamping1-15/+11
svn path=/trunk/; revision=10370
2004-03-13replaced gtk_widget_show() by a single gtk_widget_show_all(),Ulf Lamping1-55/+8
changed a printf thing svn path=/trunk/; revision=10369
2004-03-13Make libethereal and libwiretap shared libs.Jörg Mayer6-56/+43
svn path=/trunk/; revision=10368
2004-03-13Clean up the message for one capability bit, as per a suggestion by JohnGuy Harris1-3/+3
Engelhart. svn path=/trunk/; revision=10367
2004-03-13From Yuriy Sidelnikov: handle the case where a presentation selectorGuy Harris1-4/+13
exists but has a length of zero. svn path=/trunk/; revision=10366
2004-03-12Don't automatically set a capture filter if DISPLAY or REMOTEHOST areGerald Combs1-5/+12
"localhost" or "127.0.0.1". svn path=/trunk/; revision=10365
2004-03-12Add cvsversion.h, x11-declarations.h, and x11-register-info.h toGerald Combs2-5/+8
CLEANFILES so that "make distcheck" will work. svn path=/trunk/; revision=10364
2004-03-12Fix some typos, as per Ryuji Somegawa.Guy Harris1-5/+5
svn path=/trunk/; revision=10363
2004-03-11make NDMP start distinguishing between different versions.Ronnie Sahlberg1-8/+49
Between v2 and v3 some structures changed their definition. I arbirtrarily made the preference set V2 as the default. I have no idea what the most common ndmp version is maybe someone that knows which is the most popular iversion in the wild will change it to default to that. svn path=/trunk/; revision=10362
2004-03-11Add support for DLT_ value 99, as used by the Axent RaptorGuy Harris5-5/+121
firewall/Symantec Enterprise Firewall. Thanks, Axent/Symantec, for not asking us for a DLT_ value and not telling us about the link-layer type. svn path=/trunk/; revision=10361
2004-03-11Fix a typo.Gerald Combs1-2/+2
svn path=/trunk/; revision=10360
2004-03-11Make the color preferences popup menu shrink to its natural size insteadGerald Combs1-2/+2
of filling in its entire table cell. svn path=/trunk/; revision=10359
2004-03-10From Ryuji Somegawa:Guy Harris1-10/+28
add a value_string for the PDSN code; use for the service option the value_string that was already there and add a new value to that value_string; fix up some existing entries, and add some new entries, to the Radius attribute table. svn path=/trunk/; revision=10358
2004-03-09Fix formats for "sizeof" so that "sizeof" values get displayed correctlyGuy Harris1-27/+31
if they're "int"s or "long"s. Get rid of the unused PGM_xxx_SZ variables. svn path=/trunk/; revision=10357
2004-03-09Dynamically allocate the array of field entries in a NetFlow V9Guy Harris1-4/+20
template, rather than allocating a fixed table of 64 entries (and possibly overflowing that table). Clear out the hash table of template entries, freeing all the allocated arrays, when a new capture is opened. svn path=/trunk/; revision=10356
2004-03-09Prefix COPYING with the following textJörg Mayer1-0/+9
Just to avoid some misunderstandings: While parts of Ethereal can be built and distributed as libraries, these parts are still covered by the license below, and NOT by the Lesser General Public License or any other license. svn path=/trunk/; revision=10355
2004-03-09Make variables not used outside the module static.Guy Harris3-8/+9
Initialize "hf_error_st" to -1, the same way other hf_ variables are initialized, and make it an "int", as other hf_ variables are. svn path=/trunk/; revision=10354
2004-03-09Add some checks for valid option lengths, and for the first option beingGuy Harris1-17/+128
a length option. Break out of the option processing loop if we see an option with the "end" bit set. svn path=/trunk/; revision=10353
2004-03-09Redesigned the token map aggregation.Olivier Biot2-453/+630
New simpler lists for both known registered WBXML public IDs and unknown lists based on content type value. The latter have the possibility to add a discriminator which facilitates a more correct/appropriate selection of the token map in cases where more (backwards incompatible) versions exist. Now the EXT_T tokens are correctly decoded, and a mapping function can be assigned. This has been done in WML (existing code reused there) and in WV-CSP (new functions looking up a value in a value_string based on the offset after the EXT_T_0 token). Add the textual WV-CSP media type to packet-text-media.c. TODO - write the discriminators for WML, SyncML and WV-CSP. Add the code for running the discriminators and possibly iterating over a list of mappings. svn path=/trunk/; revision=10352
2004-03-09Lars Roland: Another ugly bzero() call fixedJörg Mayer1-2/+2
svn path=/trunk/; revision=10351
2004-03-08Don't refer to "auto_scroll_live" if HAVE_LIBPCAP isn't defined - andGuy Harris3-6/+13
put the definition of it back under HAVE_LIBPCAP and don't add an extra declaration in "file.h", as there's no longer code that needs to refer to it if HAVE_LIBPCAP isn't defined. svn path=/trunk/; revision=10350