aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2011-01-31Add dissection of Evolved Allocation/Retention Priority I IE.etxrab1-8/+98
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35723 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-31From Roberto Morro: Fix for Bug #5628wmeier1-4/+11
This patch (against revision 35716) resolves the following bug: [introduced in patch attached to Bug #5518] "Dissector bug, protocol RSVP, in packet 78: More than 1000000 items in the tree -- possible infinite loop" Actually the bug is resolved by the "return" statement that was erased by mistake. The patch fixes another issue: the code didn't take care of the fact that TLVs must be padded to a length multiple of 4. See: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5518 https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5628 From me: Change two bytestring_to_str(tvb_get_ptr(...),...) to tvb_bytes_to_str(tvb,...) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35722 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-31Dissect more IE's in PERFORM-LOCATION-REQUEST.etxrab3-43/+251
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35721 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-31Only define view_menu_auto_scroll_live_cb if HAVE_LIBPCAPetxrab1-0/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35720 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-31Try to fix previous commit.etxrab2-3/+7
- menu.h commited by mistake - new_packet_list.c missing git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35719 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-31From Cal Turney:etxrab7-79/+105
Bug 5621 - With String in Packet details searches, highlight row in tree https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5621 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35718 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-31Added filter autocomplete to "Edit Column Details".stig1-0/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35717 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-31Put back a 'return' statement so GCC doesn't generate a warning...wmeier1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35716 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-31Describe in more detail some of the fields that may be filled in for an LTE ↵martinm1-6/+21
MAC frame. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35715 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-31Clean up white space.guy1-118/+128
Use the bssgp_perform_loc_request() routine for PERFORM-LOCATION-REQUEST (fixes a "defined, but not used" warning). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35714 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-30Fix various instances of "unreachable code".wmeier8-9/+5
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35713 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-30Don't compile non-used (unreachable) code on Windows.wmeier1-6/+10
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35712 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-30Whitespace cleanup (remove trailing blanks from lines).wmeier3-182/+182
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35711 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-30Add a comment about some "unreachable code" indicating possible incorrect ↵wmeier1-230/+230
code someplace. Fix some spelling.. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35710 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-30Fix a number of msvc level 4 "Unreachable code" warnings by removing unneededwmeier7-21/+6
return statements. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35709 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-30Don't compile unused non-Windows code when on Windows.wmeier1-28/+51
(Found by msvc level 4 warning "unreachable code"). Also: - suppress an invalid msvc level 4 warning by initializing a variable. - Use #ifdef _WIN32 iso #if _WIN32 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35708 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-30Add more MSG dissection.etxrab1-21/+157
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35707 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-30When searching a list, validate pointer before (not after) trying to use it.wmeier1-4/+6
In this particular case, the code logic may ensure that the search thru the list never hits the end of the list so that a crash because of an attempt to deref a NULL pointer never happens. Issue found via msvc level 4 warning "code not reachable". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35706 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-30Introduce "Fragment count" filter element for all protocols doing reassembly.stig63-12/+390
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35705 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-30Moved packet-t38.c to the ASN.1 section.stig1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35704 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-30From Alexis La Goutte:etxrab1-26/+33
Cleanup 802.11 Dissector : Make checkhf Happy https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5636 Pach #1,#2;#3 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35703 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-30[Automatic manuf, services and enterprise-numbers update for 2011-01-30]gerald2-16/+272
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35700 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-30From Grzegorz Szczytowski:etxrab2-10/+30
Add Bearer Control Mode selection support in gtpv1 dissector. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5634 Sligtly reworked by me: - prefix names with gtp - Use proto_tree_add_item() - remove ref to specific protocol version, as it's probably a mix. - Changed the update to the AUTHORS file. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35699 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-29From Alexis La Goutte:etxrab1-149/+271
Cleanup 802.11 Dissector : Rework Prism Header https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5631 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35698 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-29Improve r35695/35696 by repeating the whole function call in eachsfisher1-4/+2
block of the #if / #else / #endif for clarity. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35697 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-29Fix Windows compile error(s);wmeier1-4/+4
{Compiles OK on Windows but not tested). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35696 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-29If we're compiling with GTK+ 2.14 or higher, use accessor functionsfisher1-0/+4
gtk_color_selection_dialog_get_color_selection() instead of accessing the struct member directly. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35695 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-28I believe 0 was meant instead of sizeof(0)....wmeier1-2/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35694 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-28Move protocol details from above the copyright notice to below.sfisher1-14/+17
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35693 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-28Remove the remaining tvb_fake_unicode() calls in the dissector source. sfisher1-10/+5
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35692 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-28Fix r35690: tvb_get_unicode_string() takes length in 8-bit bytes, notsfisher2-2/+2
16-bit UTF-16 characters as tvb_fake_unicode() did. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35691 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-28Change tvb_fake_unicode() to tvb_get_unicode_string() in the DCERPCsfisher2-2/+2
DRSUAPI dissector. Updated the packet-dcerpc-drsuapi.c file manually because it used to be auto-generated, but appears to have had changes since then. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35690 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-28Mention that the fake tvb unicode functions have been supercededsfisher2-0/+4
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35689 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-28Add an option to enable Code Analysis for C/C++ (MSVC's static analyzer).gerald1-0/+7
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35688 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-28Use the correct processor architecture in our manifest. This lets usgerald3-8/+17
create a usable wireshark.exe for x64 using Visual C++ 10. Change the name of VCREDIST_DLL to PROCESSOR_ARCHITECTURE to more accurately reflect what it's used for. Allow MSVC_VARIANT to be set from the system environment, mainly to keep me from accidentally clobbering it in the future. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35687 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-28Fix bug #5627: DHCPv6 dissector formats DUID_LLT time incorrectly sfisher1-2/+2
Add 30 years of seconds, not 20 years, since the DHCP_LLT time is seconds since Jan 1 2000 and epoch is 30 years before that. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35686 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-27Fix chekcAPIs.gerald1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35685 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-27From Johannes Berg via bug 5625:gerald3-1/+123
The radiotap standard just adopted the new MCS field to display MCS information. The attached patch allows wireshark to parse that field. From me: Terminate value_strings. Move the IEEE80211_RADIOTAP_XCHANNEL definition to packet-radiotap-defs.h. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35684 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-27Use g_error() (with a hopefully-useful error message) instead of g_assert() ↵morriss1-5/+8
to report problems with preference registrations. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35683 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-27Improve/rework the way we look for the original frame when there is a DL. ↵martinm1-68/+39
retransmission. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35682 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-27From Roberto Morro: RSVP dissector enhancementswmeier2-303/+995
- add new PROTECTION obj c-type 2 (RFC4872) - add new TLVs for IF_ID (RFC4920) - add Path Key subobj in ERO (RFC5520) - add new ASSOCIATION obj c-type 4 (oif2008.389) - add new LSP_ATTRIBUTES and LSP_REQUIRED_ATTRIBUTES objects (RFC5420) - improved ERROR object dissection and new error values added - ADMIN_STATUS transformed to filter and new flags added - minor fix to conversation (not applied to ACK, SREFRESH and HELLO messages) to resolv displaying of "Unknown session type" string in such messages Moreover, I've deleted some "enum" statements for error values that I thought they were useless since they were used only once throughout the RSVP dissector code. See https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5518 From me: fix two typos. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35681 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-27Don't treat the aligned and unaligned bit strings differentlyetxrab1-52/+30
always padd LSBs. Hopfully this does not break anything else... git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35680 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-27The attemt to pretify MSISDN and IMSI breaks the dissection.etxrab2-92/+11
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5593 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35679 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-27From Masatake YAMATO: Updating value_string for dlm3.m.resultwmeier1-0/+15
... some values are added to value_string table for dlm3.m.result. It reflects the latest dlm code in linux kernel. See https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5623 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35678 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-27Fix a typo and prettify some printouts.etxrab1-2/+23
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35677 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-27Removed duplicate hf_gsm_a_bssmap_lsa_only registry.stig1-5/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35676 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-27Missing a Users Guide graphic.jake1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35675 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-27From Stéphane Bryant: bug fixes and improvements in RELOAD dissector:wmeier1-371/+401
*Bug Fixes *NodeId length is now configurable *Added missing messages See: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5620 From me: -Remove trailing blanks from a few lines; -Put "editor mode lines" at the end of the source file. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35674 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-26Fix compilation errorssfisher2-4/+4
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35673 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-26Add expert info related to gap ack blocks.tuexen1-2/+35
Based on a patch submitted by Thomas Dreibholz. See https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5616 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35672 f5534014-38df-0310-8fa8-9805f1628bb7