aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2005-02-04Albert Chin:Jörg Mayer2-10/+1
>From autoconf.info: In order to support these features, it is essential that `datadir' remains being defined as `${prefix}/share' to depend upon the current value of `prefix'. A corollary is that you should not use these variables except in Makefiles. For instance, instead of trying to evaluate `datadir' in `configure' and hard-coding it in Makefiles using e.g., `AC_DEFINE_UNQUOTED(DATADIR, "$datadir")', you should add `-DDATADIR="$(datadir)"' to your `CPPFLAGS'. svn path=/trunk/; revision=13275
2005-02-04albert chin:Jörg Mayer1-11/+14
The HP-UX compilers don't like non-constant initializers (C99'ism). Patch attached for plugins/mate/mate_setup.c. Fix a few warnings (change some () to (void)) svn path=/trunk/; revision=13274
2005-02-03Yaniv KaulJörg Mayer1-62/+50
Attached patch simplifies a very complex 'if' statement in packet-fw1.c and generally streamlines the code. svn path=/trunk/; revision=13273
2005-02-03Yaniv Kaul:Jörg Mayer1-8/+9
Attached please find a small performance optimization to packet-ip.c, which removes multiple redundant calls to tvb_get_ptr(). Changed srt_addr and dst_addr from char to guchar svn path=/trunk/; revision=13272
2005-02-03Motonori Shindo:Jörg Mayer1-1/+1
Please find attached a small patch for CoSine L2 debug dissector. The code used to incorrectly select the first 4 octets in the tvbuff. This patch fixes this problem. svn path=/trunk/; revision=13271
2005-02-03Yniv Kaul: Small performance optimizationJörg Mayer1-15/+14
It change a while()->do, to do->while() and removes a variable (and an assignment to it). svn path=/trunk/; revision=13270
2005-02-03ncisco Alcoba: Jörg Mayer1-1/+6
Do not add target address if the packet is a Request. According to the RFC, target addresses in requests have no meaning svn path=/trunk/; revision=13269
2005-02-03move capture_file_fd field from capture_file to capture_opts type, as this ↵Ulf Lamping8-18/+20
is the place where it should be svn path=/trunk/; revision=13268
2005-02-03Mark C. Brown: Added support for new ixgbe cardJörg Mayer2-25/+29
svn path=/trunk/; revision=13267
2005-02-03prevent ringbuffer from having to know about capture_file type at all ↵Ulf Lamping4-13/+13
(decoupling dependencies) svn path=/trunk/; revision=13266
2005-02-03Add dissection of some more packages.Anders Broman2-42/+168
svn path=/trunk/; revision=13265
2005-02-03Add dissection of some more packages.Anders Broman2-2/+129
svn path=/trunk/; revision=13264
2005-02-03From Francisco Alcoba:Anders Broman4-9/+12
Patch for graphing ISUP calls. It shows the type of message, in the first one the calling and called numbers, and in the second the SPs and CIC; in releases it shows the cause value. svn path=/trunk/; revision=13263
2005-02-03From Francisco Alcoba:Anders Broman1-0/+46
Patch for graphing ISUP calls. It shows the type of message, in the first one the calling and called numbers, and in the second the SPs and CIC; in releases it shows the cause value. svn path=/trunk/; revision=13262
2005-02-03Various updates to GSM MAPAnders Broman3-9/+143
svn path=/trunk/; revision=13261
2005-02-03Jon Ringle: bug fix to the stun ERROR-CODE dissectingJörg Mayer1-1/+1
svn path=/trunk/; revision=13260
2005-02-03add tooltips to the dialogs radio buttonsUlf Lamping1-1/+7
svn path=/trunk/; revision=13259
2005-02-03From Dominique Bastien: add the slow protocol MAC address to the list ofGuy Harris2-0/+2
well-known MAC addresses. svn path=/trunk/; revision=13258
2005-02-03Small fix for h225 dissector as suggested by Tomas KukosaLars Roland2-8/+19
svn path=/trunk/; revision=13257
2005-02-03From Pekka Pietikainen <pp@ee.oulu.fi>, add a byte to the hex[]Gilbert Ramirez1-1/+1
array so that there is room for the terminating NUL from sprintf(). svn path=/trunk/; revision=13256
2005-02-03Add an OIDAnders Broman1-0/+1
svn path=/trunk/; revision=13255
2005-02-03Enable GTK-Wimp only for Windows 2000/XP/2003Ulf Lamping1-0/+28
...as Win9x/ME/NT known to have problems with it! svn path=/trunk/; revision=13254
2005-02-03Copied this file from:Ulf Lamping1-0/+90
http://nsis.sourceforge.net/archive/nsisweb.php?page=15&instances=0,11 Licensing question, as the NSIS homepage states: http://nsis.sourceforge.net/features/license/ so it should be ok to rerelease this file under the GPL svn path=/trunk/; revision=13253
2005-02-03Give a URL for the ERF specification.Guy Harris1-0/+4
svn path=/trunk/; revision=13252
2005-02-03Fix a comment.Guy Harris1-1/+1
svn path=/trunk/; revision=13251
2005-02-03Check in the missing part of Jon Ringle's patch (the part that actuallyGuy Harris2-39/+80
changed the conversation code). svn path=/trunk/; revision=13250
2005-02-03Undo de-UTF-8ification and other damage.Guy Harris1-0/+0
svn path=/trunk/; revision=13249
2005-02-02added %ETHEREAL%\disabled_protosUlf Lamping1-1/+1
svn path=/trunk/; revision=13248
2005-02-02bugfix: the EOT flag detection in a COTP data TPDU was using little endian, ↵Ulf Lamping1-18/+18
although it's big endian in the packet. some other minor output enhancements svn path=/trunk/; revision=13247
2005-02-02Add Jon Ringle, at the moment I don't have the e-mail address.Anders Broman1-0/+0
svn path=/trunk/; revision=13246
2005-02-02From Jon Ringle:Anders Broman1-6/+6
1) Added a setup_frame parameter to conversation_t 2) Used the conversation_t next to maintain a list of conversations with the same src/dest tuple but different setup_frame number. 3) Changed the signature of find_conversation() and conversation_new() to pass in the frame number. 4) Adjusted packet-sdp to select RTP conversation if both m=audio and m=image are present, and T.38 conversation if only m=image is present. I expect that RTP/T.38 dissecting to be better, but I don't have a way to generate T.38 packets. svn path=/trunk/; revision=13245
2005-02-02From Jon Ringle:Anders Broman1-6/+6
1) Added a setup_frame parameter to conversation_t 2) Used the conversation_t next to maintain a list of conversations with the same src/dest tuple but different setup_frame number. 3) Changed the signature of find_conversation() and conversation_new() to pass in the frame number. 4) Adjusted packet-sdp to select RTP conversation if both m=audio and m=image are present, and T.38 conversation if only m=image is present. I expect that RTP/T.38 dissecting to be better, but I don't have a way to generate T.38 packets. svn path=/trunk/; revision=13244
2005-02-02From Jon Ringle:Anders Broman60-243/+209
1) Added a setup_frame parameter to conversation_t 2) Used the conversation_t next to maintain a list of conversations with the same src/dest tuple but different setup_frame number. 3) Changed the signature of find_conversation() and conversation_new() to pass in the frame number. 4) Adjusted packet-sdp to select RTP conversation if both m=audio and m=image are present, and T.38 conversation if only m=image is present. I expect that RTP/T.38 dissecting to be better, but I don't have a way to generate T.38 packets. svn path=/trunk/; revision=13243
2005-02-02From Jon Ringle:Anders Broman2-5/+8
1) Added a setup_frame parameter to conversation_t 2) Used the conversation_t next to maintain a list of conversations with the same src/dest tuple but different setup_frame number. 3) Changed the signature of find_conversation() and conversation_new() to pass in the frame number. 4) Adjusted packet-sdp to select RTP conversation if both m=audio and m=image are present, and T.38 conversation if only m=image is present. I expect that RTP/T.38 dissecting to be better, but I don't have a way to generate T.38 packets. svn path=/trunk/; revision=13242
2005-02-02Add mtp3.pc as suggested by Luis Ontanon.Michael Tüxen1-157/+99
Cleanups svn path=/trunk/; revision=13241
2005-02-02Writing the raw data of a TCP stream to a file isn't printing it, soGuy Harris3-55/+81
don't use the print mechanism for that - do the writing directly in the "follow stream" code. Use "size_t" for character counts. Make the "hexchars" array static and const, as it's not written to, and there's probably no point in copying it to the stack (unless that improves cache locality). There's no need to explain why we're subtracting the number of bytes actually read, rather than the number of bytes asked for, from the data length. Note an issue with printing lines. svn path=/trunk/; revision=13240
2005-02-02Get rid of an unused typedef.Guy Harris4-9/+0
svn path=/trunk/; revision=13239
2005-02-02Use C89 syntax, not C++ syntax, for functions that take no arguments.Guy Harris4-6/+6
svn path=/trunk/; revision=13238
2005-02-02Don't assume that the only blank filter expression is empty - check forGuy Harris1-28/+30
an all-space-character string. Don't use "filter_string" both for the (unfreeable, unmodifiable) value fetched from the text entry and the new filter expression; use it only for the former, and make it a "const" pointer to avoid compiler warnings. Use a GString to construct the stuff to be added to the new filter expression - the old code, when appending stuff to the filter expression in a loop, would leak the pre-append value. svn path=/trunk/; revision=13237
2005-02-02from chris eagleRonnie Sahlberg4-56/+114
add radiobutton to allow saving raw tcpstreams these radiobuttons should, by someone that uses, this feature be changed into a menu instead. svn path=/trunk/; revision=13236
2005-02-02Make sure "comment" is set.Guy Harris1-7/+5
Get rid of an unused variable. svn path=/trunk/; revision=13235
2005-02-02Clean up white space.Guy Harris1-11/+7
Get rid of an unused variable and two #includes that aren't needed. svn path=/trunk/; revision=13234
2005-02-02"filter_string_fwd" is assigned a "const" pointer, so make it a "const"Guy Harris1-1/+1
pointer. svn path=/trunk/; revision=13233
2005-02-02for VoIP Call Analysis:Lars Roland6-116/+143
- make VoIP Call Analysis work if, called from command line - should also work now while capturing with packet list updated in "real time" (to be tested) - give each tap listener a unique identifier, so ethereal won't mix them up - various cleanups - compile by default Todo: - add support for "tap display filter" - reimplement function to add rtp streams to the call flow. svn path=/trunk/; revision=13232
2005-02-01by more specific about unix configuration filesUlf Lamping1-6/+13
svn path=/trunk/; revision=13231
2005-02-01the old netlogon protocol is now called smb_netlogonRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=13230
2005-02-01g_strlcpy does not exist in gtk 1.2Ronnie Sahlberg2-2/+2
use strncpy instead svn path=/trunk/; revision=13229
2005-02-01Improve handling of pinfo->private_dataAnders Broman1-1/+5
svn path=/trunk/; revision=13228
2005-02-01Add boolean to the list of non-portable typesJörg Mayer1-8/+9
svn path=/trunk/; revision=13227
2005-02-01add packet-sdp.hLars Roland3-1/+33
and from Julien Leproust: fix graph_analysis.c svn path=/trunk/; revision=13226