aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2007-12-05The first component of a "wtap_nstime" is a "time_t", which could be anGuy Harris1-1/+1
"int" or a "long"; initialize it with LONG_MAX cast to "time_t". The second argument is an "int"; initialize it with INT_MAX. svn path=/trunk/; revision=23764
2007-12-05Use G_GINT64_MODIFIER for gint64 and guint64 values.Guy Harris1-2/+2
svn path=/trunk/; revision=23763
2007-12-05Clean up indentation.Guy Harris1-184/+184
Use G_GINT64_MODIFIER for gint64 and guint64 values. Use "u", rather than "d", for unsigned values. Put whitespace in the proper place in format strings. svn path=/trunk/; revision=23762
2007-12-05Make the "protocol" field big enough to hold the 3-characterGuy Harris1-1/+1
null-terminated string that the format item used when scanning says it is - i.e., 4 "char"s, including the null terminator. (Thanks and a tip of the hat to "gcc (GCC) 3.3.5 (propolice)" on OpenBSD 4.2 for finding this.) svn path=/trunk/; revision=23761
2007-12-05At least on some LP64 platforms (such as OpenBSD 4.2 on x86-64),Guy Harris1-2/+2
PRI[dux]64 use "ll", but gint64 and guint64 are "long" and "unsigned long", not "long long" or "unsigned long long", and the compiler warns about using "%ll[doux]" with "long" or "unsigned long". Use G_GINT64_MODIFIER instead. svn path=/trunk/; revision=23760
2007-12-05the GSS Checksum in secure onc-rpc contains the same blobs as GSS Tokens Ronnie Sahlberg1-10/+13
does. make wireshark decode these blobs svn path=/trunk/; revision=23759
2007-12-05svn path=/trunk/; revision=23758Mike Duigou1-12/+1
2007-12-05Add missing profinet to maintainer-cleanBill Meier1-0/+3
svn path=/trunk/; revision=23757
2007-12-04Do not create an illegal filter when having an empty display filter andStig Bjørlykke3-16/+52
selecting Apply/Prepare "and/or (not) Selected" in Conversations, Endpoints and Service Response Time. svn path=/trunk/; revision=23756
2007-12-04Only define oid_get_default_mib_path() if we have libsmi.Guy Harris2-2/+6
Explicitly mark it as having no arguments. svn path=/trunk/; revision=23754
2007-12-04Add an oid_get_default_mib_path() function, and use it to display the MIBGerald Combs4-159/+209
path in About->Folders. svn path=/trunk/; revision=23753
2007-12-04Display textual explanation for printer and job values from RFC 2911.Greg Morris1-4/+56
svn path=/trunk/; revision=23752
2007-12-04Duplicate packet # -> Retransmission #Stig Bjørlykke1-10/+10
svn path=/trunk/; revision=23751
2007-12-04Support for RPCAP features in GUI (from Boris Misenov, see Bug 1366)Tomas Kukosa19-6/+1105
- retrieving the list of remote PCAP interfaces - password authentication support - UDP data fransfer - packet sampling (available in WinPcap 4.x) etc. fix problem if non-default rpcap port is used svn path=/trunk/; revision=23750
2007-12-04Next try.Jörg Mayer1-1/+1
svn path=/trunk/; revision=23749
2007-12-04add missing emem.h include (prefs-int.h uses emem structures now)Tomas Kukosa1-0/+1
svn path=/trunk/; revision=23748
2007-12-04Add macros for various filter actions and types, and to combine themGuy Harris1-67/+86
into a callback argument and split a callback argument up. svn path=/trunk/; revision=23747
2007-12-04More whitespace cleanup.Guy Harris1-8/+7
svn path=/trunk/; revision=23746
2007-12-04Clean up indentation.Guy Harris2-6/+6
svn path=/trunk/; revision=23745
2007-12-04Add a break statement - not necessary in this case, but cleaner, andGuy Harris1-0/+1
matches similar code in other files. svn path=/trunk/; revision=23744
2007-12-04Make mpeg2ts over UDP possible. Heuristic and Decode as.Jaap Keuter1-53/+76
svn path=/trunk/; revision=23743
2007-12-04Remove superfluous buffer allocation.Jaap Keuter1-1/+0
svn path=/trunk/; revision=23742
2007-12-04Use common code for ASCII -> tvb.Anders Broman1-72/+10
svn path=/trunk/; revision=23741
2007-12-04Note in a comment the sad truth that CFURLCreateWithString() failsGuy Harris1-0/+6
either because of a bad URL string or a failure to allocate memory, and that we can't easily determine which of those happened. svn path=/trunk/; revision=23740
2007-12-04Fix for http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1413Jörg Mayer1-1/+5
Print "SVN Rev unknown" in case the svn command was not found. svn path=/trunk/; revision=23739
2007-12-04get rid of GTree and use emem trees insteadRonnie Sahlberg2-49/+35
svn path=/trunk/; revision=23738
2007-12-04update to new signature for string keyed treesRonnie Sahlberg1-5/+5
svn path=/trunk/; revision=23737
2007-12-04rework how emem trees indexed by strings so that traversing the tree Ronnie Sahlberg2-75/+96
will traverse the entries in the lexical order of the key. add a flag to lookup/insert for strings to specify whether a case insensitive key should be used instead of a (default) case sensitive key. svn path=/trunk/; revision=23736
2007-12-04reverse previous patchRonnie Sahlberg2-35/+49
svn path=/trunk/; revision=23735
2007-12-04remove the use of GTrees and replace these with emem trees insteadRonnie Sahlberg2-49/+35
svn path=/trunk/; revision=23734
2007-12-04for nested trees, teach emem about which nodes contain a pointer to a Ronnie Sahlberg2-14/+30
subtree and which nodes that contain a pointer to user data teach emem to be able to traverse nested trees svn path=/trunk/; revision=23733
2007-12-04- Added three more y axis scale values to be able to draw time valuesStig Bjørlykke1-53/+5
up to 2000 seconds (maximum when using guint32). - Combined some common code to draw the y axis values. svn path=/trunk/; revision=23732
2007-12-04Reserve 20 bits for expert "event groups", to leave room for more. Guy Harris1-15/+20
Shuffle the expert severities down, and note that we have only 8 bits available for FI_ flags unless you shrink the set of event groups and shuffle them and the expert severities up. svn path=/trunk/; revision=23731
2007-12-04#if out a function that is only used when building with glib 2 or laterRonnie Sahlberg1-0/+2
svn path=/trunk/; revision=23730
2007-12-04Simplified y-positions for FBAR and DOT to ensure out-of-graph values areStig Bjørlykke1-3/+3
drawn as they should be. I hope this is the last fix this time... svn path=/trunk/; revision=23729
2007-12-04If we're using the native Windows file dialog, don't bother to see if the Gerald Combs1-1/+8
file exists before we try to save it. The Windows file dialog code does that for us. svn path=/trunk/; revision=23728
2007-12-03Severities are unsigned.Guy Harris2-2/+2
svn path=/trunk/; revision=23727
2007-12-03Make the flags field a guint32, to make it clear that it's 32 bits.Guy Harris1-19/+26
Move the expert information bits to the top of that field, to avoid collisions (we had a collision with the 0x00000004 bit). svn path=/trunk/; revision=23726
2007-12-03add tree traversal functionsRonnie Sahlberg2-0/+49
svn path=/trunk/; revision=23725
2007-12-03Fetch all fmtp parameters.Anders Broman1-17/+8
svn path=/trunk/; revision=23724
2007-12-03Fix bug http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2057Anders Broman3-8/+8
The tag for PSTNTermination is [95]. svn path=/trunk/; revision=23723
2007-12-03Use same notation for all y axis time labels, so we don't end up having oneStig Bjørlykke1-9/+9
in seconds, one in milliseconds and one in microseconds. svn path=/trunk/; revision=23722
2007-12-03Fix indentation.Guy Harris1-3/+3
svn path=/trunk/; revision=23720
2007-12-03Clean up indentation. Guy Harris1-106/+106
svn path=/trunk/; revision=23719
2007-12-03add end of line to the last line of the fileRonnie Sahlberg1-1/+1
svn path=/trunk/; revision=23718
2007-12-03mark two unused parameters as _U_Ronnie Sahlberg1-1/+1
svn path=/trunk/; revision=23717
2007-12-03If CoreFoundation create calls fail, fail, don't drive on.Guy Harris1-0/+6
svn path=/trunk/; revision=23716
2007-12-03Parenthesize the operand of the cast, to make it clearer that we'reGuy Harris1-1/+1
casting the result of the entire computation. svn path=/trunk/; revision=23714
2007-12-03Mark pinfo as unused.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=23713
2007-12-03Add another cast.Anders Broman1-1/+1
svn path=/trunk/; revision=23712