aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2003-10-10Mention gtk/ethereal-tap-register.c.Guy Harris1-1/+3
svn path=/trunk/; revision=8673
2003-10-10Give every Makefile.nmake file a "distclean" rule, and have "distclean"Guy Harris21-34/+114
recurse into subdirectories doing "nmake -f Makefile.nmake distclean". Have "nmake -f Makefile.nmake clean" not remove stuff that "make clean" doesn't remove (such as Flex/Bison output and config.h files) - and have "nmake -f Makefile.nmake distclean" remove stuff that "make distclean" removes, including "tethereal-tap-register.c" and "ethereal-tap-register.c". svn path=/trunk/; revision=8672
2003-10-10From Akira Endoh: Diffserv MPLS signaling protocol support.Guy Harris7-8/+437
svn path=/trunk/; revision=8671
2003-10-10Not all versions of libpcap have "pcap_compile_nopcap()"; use it only ifGuy Harris2-6/+8
we have it. Not all versions of libpcap have DLT_LINUX_SLL, either; use DLT_EN10MB instead. svn path=/trunk/; revision=8670
2003-10-10Part two of different-filter-syntax-hackaround: Warn in case of captureJörg Mayer1-4/+7
filter usage where display filter syntax is required. svn path=/trunk/; revision=8669
2003-10-10Fix a bug for the DCERPC stats window where it forgot to print the title ↵Ronnie Sahlberg1-4/+14
inside the window as it were supposed to. svn path=/trunk/; revision=8668
2003-10-10Updated the DCERPC service response time to also offer the menu toRonnie Sahlberg3-4/+28
Filter, Find and Colorize selected procedures in the same way as SMB and ONC-RPC already does. svn path=/trunk/; revision=8667
2003-10-10From Martin Regner, bugfix for H245.Ronnie Sahlberg1-2/+2
The restricted character string for signalType is 1 character, not 1 to 128 characters. svn path=/trunk/; revision=8666
2003-10-10From Michal Melerowicz: remove obsolete GTP'v0 CDR dissection.Guy Harris1-572/+7
svn path=/trunk/; revision=8665
2003-10-10Use PT_ values rather than raw numbers when checking for u-law and A-lawGuy Harris1-3/+3
payload. svn path=/trunk/; revision=8664
2003-10-10From Brad Hards: fix two problems:Guy Harris2-6/+7
1. the --without-adns case wasn't handled correctly; 2. the reporting at the end of the configure didn't deal with the case were the configure check failed (as in my example, where I only had the libadns package installed, not libadns-devel) - it reported that ADNS would be used. svn path=/trunk/; revision=8663
2003-10-10Fix a typo.Guy Harris1-2/+2
svn path=/trunk/; revision=8662
2003-10-10From Tomas Kukosa: updates from Annex to ITU OperationalGuy Harris1-31/+34
Bulletin No. 766 - 15.VI.2002), plus other fixes. svn path=/trunk/; revision=8661
2003-10-10Configure whether we have WinPcap based on whether WINPCAP_VERSION isGuy Harris4-9/+61
set in the config.nmake file. Configure whether we have pcap_findalldevs() based on whether WINPCAP_VERSION is 2.3 (if so, we don't) or 3.0 or 3.1 (if so, we do). WinPcap 3.0 has the new libpcap declarations of "pcap_lookupnet()" and "pcap_open_live()" in which the first argument is a "const char *" rather than a "char *"; declare the functions and pointers to them appropriately based on the version of WinPcap. If we don't have pcap_findalldevs(), don't declare a pointer to it, as we don't have a declaration of pcap_if_t. We also need to refer to "pcap_freealldevs()", so make a pointer for it. "symbols[]" is a const array; make the pointer to elements in it a const pointer. Fix some typoes. svn path=/trunk/; revision=8660
2003-10-10Add a ColorizeProcedure menu option to the ServiceResponseTime statistics dialogRonnie Sahlberg1-1/+16
svn path=/trunk/; revision=8659
2003-10-10Add a Find Next/Previous menu option to the ServiceResponseTimeStatistics dialogRonnie Sahlberg1-4/+27
svn path=/trunk/; revision=8658
2003-10-10Updates to TimeReference FramesRonnie Sahlberg3-14/+37
Add a Goto Next/Previous time reference menu option svn path=/trunk/; revision=8657
2003-10-10Get the version number of the libpcap/WinPcap with which we're runningGuy Harris5-53/+130
with "pcap_lib_version()", if available. svn path=/trunk/; revision=8656
2003-10-10Use "pcap_findalldevs()" if present.Guy Harris7-395/+543
svn path=/trunk/; revision=8655
2003-10-09From Aki Immonen: add a numbre of vendor IDs.Guy Harris3-2/+246
svn path=/trunk/; revision=8654
2003-10-09Prefix the EXTENSION #defines with ASN1_ as well.Guy Harris6-3061/+3061
svn path=/trunk/; revision=8653
2003-10-09In case of a parse error in the capture syntax, check whether it isJörg Mayer1-3/+19
valid display filter syntax. In case it is, warn about a possbile confusion of the two filter types. svn path=/trunk/; revision=8652
2003-10-09From Lo�c Minier: information on how to do reassembly of PDUs atop TCP.Guy Harris1-3/+92
svn path=/trunk/; revision=8651
2003-10-09Prefix OPTIONAL and NOT_OPTIONAL with ASN1_, to avoid collisions withGuy Harris6-1861/+1861
other definitions of OPTIONAL (such as the one in Windows). svn path=/trunk/; revision=8650
2003-10-09Add an item about prefixing #define names and enum names with a prefixGuy Harris1-3/+8
to avoid name collisions. svn path=/trunk/; revision=8649
2003-10-09From Biot Olivier:Guy Harris3-88/+147
Rename WSP defines to avoid collisions with Windows defines. Rename WSP dissector table for integer-value content types. Add WSP dissector table for literal content types. Add WSP dissection registration for literal content types. Register literal and extra WBXML content types to WSP dissector. Register textual MMS content type to WSP dissector. svn path=/trunk/; revision=8648
2003-10-08Change dissect_deferred_pointer()Ronnie Sahlberg1-2/+5
from being Ordo(n^2) into being Ordo(n) Makes it slightly faster when n (the number of pointers) is >10.000 The mother of all dcerpc packets (containing one array of >10.000 pointers) was a bit slow. It is still slow but at least completes in out lifetime. svn path=/trunk/; revision=8647
2003-10-08use g_htonl instead of htonlJörg Mayer1-2/+2
svn path=/trunk/; revision=8646
2003-10-080x81fd and 0x81ff appear to be for the Cabletron Interswitch MessageGuy Harris2-2/+13
Protocol, although the packets I've seen with 0x81fd don't look like the ISMP packets described in RFC 2641/2642/2643. svn path=/trunk/; revision=8645
2003-10-08Dissect NAT-Discovery and NAT-Original Address payloads, and just useGuy Harris1-3/+67
the version-independent part of the draft ID for "Negotiation of NAT-Traversal in the IKE" rather than giving a URL for the draft (the URL in question was out-of-date, and a future one runs the risk of becoming out of date, given that the -07 draft expired a few days ago...). svn path=/trunk/; revision=8644
2003-10-07Get rid of an out-of-date comment.Guy Harris1-3/+1
svn path=/trunk/; revision=8643
2003-10-07Put the "X.264 protocol identifier" and "X.264 sharing strategy" fieldsOlivier Abad1-3/+3
in the "User data" subtree. svn path=/trunk/; revision=8642
2003-10-07From Anders Broman:Guy Harris1-30/+543
change some variable names to conform to abbreviations used in the specs; added+dissection of some more BAT ASE elements; fixed some minor bugs. svn path=/trunk/; revision=8641
2003-10-07From Taisuke Sasaki: put in missing {} in an "if".Guy Harris1-2/+3
svn path=/trunk/; revision=8640
2003-10-07Include "gtk/color_dlg.h" to declare "color_display_with_filter()", andGuy Harris1-1/+3
include "color.h" to declare "color_filter_t", which "gtk/color_dlg.h" requires. svn path=/trunk/; revision=8639
2003-10-07From Hans Viens: add an H.221 manufacturer code for Mediatrix, and tweakGuy Harris1-130/+131
white space. svn path=/trunk/; revision=8638
2003-10-07Update to endpoint talkers,Ronnie Sahlberg3-8/+62
endpoint talkers now have an extra submenu on the popup where one can select : Colorize Conversation. This opens up the create color filter dialog with the filter preset to the selected conversation. svn path=/trunk/; revision=8637
2003-10-07Forgot to update a prototype in previous patchRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=8636
2003-10-07Add Find Next/Find Previous submenu to conversation lists.Ronnie Sahlberg3-18/+97
By using Find Next/Previous you will jump to the next/previous matching packet in the ethereal main window. I could not get CTRL-N / CTRL-B to work and was too lazy to research. It would be nice if CTRL-N / CTRL-P would invoke the same thing as selecting /Find Frame/Find Next/EP1 <-> EP2 or /Find Frame/Find Previous/EP1 <-> EP2 from the menu. I could not figure out how to get gtk to do this. The person that adds CTRL-N/CTRL-B here will be a hero. svn path=/trunk/; revision=8635
2003-10-07Make the window geometry information static - it's not used outside thisGuy Harris1-65/+77
file. Fetch the geometry information whenever we get a configure_notify event, i.e. if it actually changes, rather than doing so when we get asked to delete the main window or we exit. Don't save the geometry if we've never gotten such an event, as it presumably means the size and position haven't changed. svn path=/trunk/; revision=8634
2003-10-07From Giles Scott: put the IP address and port number in PORT requestsGuy Harris1-54/+166
and PASV responses into the protocol tree, and, for PASV responses, create a conversation for the future FTP data conversation and make the FTP data dissector be the dissector for it. svn path=/trunk/; revision=8633
2003-10-07From Gisle Vanem: if WIN32_LEAN_AND_MEAN is defined, <windows.h> doesn'tGuy Harris1-2/+3
include <commdlg.h>, but "print_mswin.c" needs it, so include it explicitly. svn path=/trunk/; revision=8632
2003-10-06Rename "max_tick_values" to "tick_interval_values", to make it clearerGuy Harris1-10/+10
what it is. svn path=/trunk/; revision=8631
2003-10-06Make the "needs_redraw" flag a gboolean, as it's a Boolean flag.Guy Harris1-33/+61
Rename "max_count_types and "max_calc_types" to "count_type_names" and "calc_type_names", to make it clearer what they are. For the advanced statistics, give different error messages for the case where no field name was specified and where an invalid field name was specified. Give better error messages for the cases where the calculation type isn't supported for a particular field. Initialize the calculation type for a given field. svn path=/trunk/; revision=8630
2003-10-06When registering a field, make sure its ID is -1 or 0 - if it's not,Guy Harris10-48/+28
that probably means you've registered two fields with the same field ID variable, which is an error. Fix the bugs doing so found. svn path=/trunk/; revision=8629
2003-10-06From Michael Lum:Guy Harris7-11/+3420
IS-637-A (SMS) support IS-683-A (OTA) support ANSI MAP updates Fix a typo in the previous checkin. svn path=/trunk/; revision=8628
2003-10-06Add One More Item to the list of things not all compilers can handle.Guy Harris1-3/+21
svn path=/trunk/; revision=8627
2003-10-06check in the following comment:Jörg Mayer1-1/+4
/* XXX This code is neither Endianess independent, nor will it work * on platforms that do not support the *optional* guin64 type */ svn path=/trunk/; revision=8626
2003-10-06Replace the forward declaration of msg_parm_strings by moving the realJörg Mayer1-19/+18
declaration from the middle of the file to the place of the forward declaration. This should make MSVC happy. Spotted and proposed fix by Ulf Lamping. svn path=/trunk/; revision=8625
2003-10-06From Michael Lum: ALCAP (Q.2630.1) support.Guy Harris4-2/+1827
svn path=/trunk/; revision=8624