aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2009-09-16Build a few more pluginsJörg Mayer7-7/+482
svn path=/trunk/; revision=29942
2009-09-16Move some of the -I stuff from top level to epan.Jörg Mayer2-9/+13
svn path=/trunk/; revision=29941
2009-09-15Add a couple of updates.Gerald Combs1-1/+7
svn path=/trunk/; revision=29938
2009-09-15Save some memory: Don't statically allocate ett[] arrays used "dynamically".Bill Meier5-6/+6
svn path=/trunk/; revision=29934
2009-09-15Add more summary to top-level item.Martin Mathieson1-10/+24
svn path=/trunk/; revision=29931
2009-09-15Save some memory: Don't statically allocate ett[] arrays used "dynamically".Bill Meier14-32/+33
svn path=/trunk/; revision=29929
2009-09-15Also mark tree as an unmarked parameter.Martin Mathieson1-1/+1
svn path=/trunk/; revision=29928
2009-09-15From Ivan Sy via bug #3931: Add Ivan to the list of authorsStephen Fisher1-0/+7
svn path=/trunk/; revision=29927
2009-09-15if (proto_... == -1) not req'd.Bill Meier1-18/+16
svn path=/trunk/; revision=29926
2009-09-15Remove now unused variables.Anders Broman1-9/+2
svn path=/trunk/; revision=29925
2009-09-15Bearer Context not dissected correctly.Anders Broman1-248/+22
Use the built in IE decoding by calling dissect_gtpv2_ie_common() for the grouped IE:s. svn path=/trunk/; revision=29924
2009-09-15Switch back to normal versioning.Gerald Combs1-4/+4
svn path=/trunk/; revision=29923
2009-09-15Don't call check_col(). Add a space at the end of each COL_INFO entry to ↵Jeff Morriss2-37/+21
make the column more readable when SCTP bundles multiple messages together. svn path=/trunk/; revision=29922
2009-09-15From Jakub Zawadzki:Kovarththanan Rajaratnam1-4/+2
Fix copy/paste error wrt. fdata->col_text_len svn path=/trunk/; revision=29921
2009-09-15Fix:Anders Broman1-1/+8
cleanup_dissection() calls se_free_all(); And after that fdata->col_text (which is allocated using se_alloc0()) no longer points to valid memory. svn path=/trunk/; revision=29920
2009-09-15Build the asn1 plugin. The only problem(?) is, that it isJörg Mayer4-19/+129
name libasn1.so instead of asn1.so svn path=/trunk/; revision=29919
2009-09-15Update 3GPP AVP:sAnders Broman1-39/+211
svn path=/trunk/; revision=29918
2009-09-15From Vladimir Kazansky:Anders Broman1-1/+1
Misspell in mcc_mnc codes in packet-e212.c https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3996 svn path=/trunk/; revision=29917
2009-09-15From Didier Gautheron via ↵Jeff Morriss1-13/+22
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3995 There's a copy and paste error in hf_afp_vol_attribute_CaseSensitive declaration and add kSupportsTMLockSteal svn path=/trunk/; revision=29916
2009-09-15From Florian Forster via ↵Jeff Morriss1-1/+160
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3185 This patch adds statistics information to the collectd dissector. Changes by me: - use ep_alloc for structures being handed to the tap(s) (instead of se_alloc) - Capitalize the Statistics menu item to get it in the sorted list svn path=/trunk/; revision=29915
2009-09-15ssl_association_remove(): free assoc->info tooJeff Morriss1-0/+2
svn path=/trunk/; revision=29914
2009-09-15From Florian Forster via ↵Jeff Morriss1-24/+262
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4002 Version 4.7 of collectd introduces cryptographic features for the network protocol. The current version of the collectd dissector does not know how to handle these segments and flags them as unknown. The following two patches add simple support for the TYPE_SIGN_SHA256 and TYPE_ENCR_AES256 segments. They display the plain text components of these segments but do not try to verify the signatures or decrypt the encrypted payload. Changes by me: - replace tvb_length_remaining() with tvb_reported_length_remaining() - replace proto_tree_add_protocol_format() with tvb_tree_add_text() svn path=/trunk/; revision=29913
2009-09-14Build 1.3.0.Gerald Combs4-10808/+7280
svn path=/trunk/; revision=29912
2009-09-14Fix for bug 4008:Jaap Keuter4-11/+12
Crash on TLSv1.2 packets, caused by ssl_short_name array overrun. svn path=/trunk/; revision=29906
2009-09-14More Finder tweaks.Gerald Combs4-1/+1
svn path=/trunk/; revision=29903
2009-09-14Revert 29889 to stop the fuzz failures.Jeff Morriss1-12/+19
svn path=/trunk/; revision=29902
2009-09-14(Trivial) Fix a typo in a comment.Bill Meier1-1/+1
svn path=/trunk/; revision=29901
2009-09-14Change gtk_pixmap_new() to gtk_image_new_from_pixmap().Anders Broman1-1/+1
svn path=/trunk/; revision=29900
2009-09-14(Trivial) Fix a typo in a commentBill Meier1-1/+1
svn path=/trunk/; revision=29899
2009-09-14Remove usage of check_col() since no longer required.Bill Meier1-28/+12
svn path=/trunk/; revision=29898
2009-09-14Update: Remove references to the use of check_col() since no longer required.Bill Meier1-28/+9
svn path=/trunk/; revision=29897
2009-09-14Remove unneeded #includes (stdio.h & friends);Bill Meier1-252/+241
Remove a call to checkcol(); Use tfs_set_notset instead of a local true_false_string defintion; Use consistent indentation; Adjust some spacing. svn path=/trunk/; revision=29896
2009-09-14Remove unneeded #includes (stdio.h & etc);Bill Meier1-432/+411
Remove a bunch calls to of check_cols(); Use tfs_set_notset from tfs.c instead of a locally defined tfs struct; Use consistent indentation; Adjust spacing on some lines and reformat a few long lines. svn path=/trunk/; revision=29895
2009-09-14Put the parenthesis in the right placeJeff Morriss1-2/+2
svn path=/trunk/; revision=29894
2009-09-14Change proto_tree_add_protocol_format() to proto_tree_add_text() since all ↵Jeff Morriss1-69/+59
that is being added is text. svn path=/trunk/; revision=29893
2009-09-14Show UEId in info column for CCCH frames.Martin Mathieson1-1/+5
svn path=/trunk/; revision=29892
2009-09-14Not yet working:Jörg Mayer1-9/+74
Sync with autofoo: Check for accepted compiler flags. Use identical flags. svn path=/trunk/; revision=29891
2009-09-14Sync to autofooJörg Mayer1-10/+15
svn path=/trunk/; revision=29890
2009-09-14From Didier Gautheron:Anders Broman1-19/+12
optimizations patch http://wiki.wireshark.org/Development/Optimization 'patch.29854.diff.gz" Use "g_realloc". svn path=/trunk/; revision=29889
2009-09-14Add casts to make it compile on Windows.Anders Broman1-2/+2
svn path=/trunk/; revision=29888
2009-09-14From Bruno and Florian Forster via ↵Jeff Morriss3-0/+1047
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3170 This patch adds support to Wireshark for dissecting UDP packets used by collectd's network plugin in order to transmit data from ones host to another host (e.g. centralized storage of statistics while data is collectd on individual systems) The current dissector understands the part types supported by collectd-4.5 series and gracefully processes future part types (flagging them as unknown). In regard to protocol errors or bad packets checks are based on the various length fields used, parts are marked with warning when length is unexpected; marked with error when length breaks minimal rules. svn path=/trunk/; revision=29887
2009-09-14Tweak the Finder windows a bit.Gerald Combs4-4/+6
svn path=/trunk/; revision=29886
2009-09-13From Didier Gautheron via ↵Jeff Morriss1-8/+5
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3417 Don't scale the window if the SYN flag is set. svn path=/trunk/; revision=29885
2009-09-13From Stephane Bryant via ↵Jeff Morriss8-1819/+1817
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2815 but (since the patch no longer applied cleanly) essentially manually re-implemented by me: Rename "stun" to "classic stun" and "stun2" to "stun", to follow the usage defined in draft-ietf-behave-rfc3489bis-18 section 2. svn path=/trunk/; revision=29884
2009-09-13Run checkapi on the dissector header filesJeff Morriss33-32/+36
svn path=/trunk/; revision=29883
2009-09-13s/g_strdown/g_ascii_strdownJeff Morriss1-1/+1
svn path=/trunk/; revision=29882
2009-09-13Don't use SIGUSR1 to tell dumpcap to exit, use SIGINT: SIGINT is traditionallyJeff Morriss2-41/+20
used for this purpose and using it also prevents the 2 signals the child gets: - the user's Ctrl-C (which is sent as a SIGINT to both *shark and its child dumpcap) - the signal *shark generates to shut down the child from colliding (and running 2 signal handlers in the child). It might be possible for tshark to not send the signal at all when it gets SIGINT, but it doesn't do any harm now. Also, do not call g_log() within the signal handler: doing so can cause aborts (if g_log is being called by the process when the signal comes, the 2nd entrance into g_log is detected as a recursion). This fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2767 svn path=/trunk/; revision=29881
2009-09-13From Didier Gautheron:Anders Broman1-139/+126
optimizations patch http://wiki.wireshark.org/Development/Optimization 'patch.29854.diff.gz" Clean up addr_resolv.c svn path=/trunk/; revision=29880
2009-09-13From Didier Gautheron:Anders Broman1-5/+9
optimizations patch http://wiki.wireshark.org/Development/Optimization 'patch.29854.diff.gz" Speed up sorting. svn path=/trunk/; revision=29879
2009-09-13'function' : different 'const' qualifiersAnders Broman1-1/+1
svn path=/trunk/; revision=29878