aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2013-03-30From Michal Labedzki via ↵Evan Huus3-25/+2933
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8509 Round 2 of Bluetooth SDP updates: - replace a lot of proto_tree_add_text with named fields - dissect more of the protocol - misc fixes svn path=/trunk/; revision=48655
2013-03-30Update -2, -R and -Y to behave consistently as per the concensus reached onEvan Huus4-108/+60
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8223 Mention the new -Y flag and associated changes in the release notes. svn path=/trunk/; revision=48654
2013-03-30Move wireshark's display filter flag to -Y for consistency with tshark.Evan Huus2-10/+10
Part of https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8223 svn path=/trunk/; revision=48653
2013-03-30Have 'Capture file' and 'Stop after' extries left aligned in GTK+ 3 as well.Jaap Keuter1-23/+49
svn path=/trunk/; revision=48652
2013-03-30dissect CI+ Protection DescriptorMartin Kaiser1-9/+70
svn path=/trunk/; revision=48651
2013-03-30use proto_mpeg_descriptor_loop_dissect() in the SDT descriptor loopMartin Kaiser1-5/+2
this takes private descriptors into account svn path=/trunk/; revision=48650
2013-03-30list the new file format in the release notesMartin Kaiser1-0/+1
svn path=/trunk/; revision=48649
2013-03-30list the new file format on the manpageMartin Kaiser1-0/+3
svn path=/trunk/; revision=48648
2013-03-30wiretap support for the CAM Inspector file formatMartin Kaiser6-2/+445
svn path=/trunk/; revision=48647
2013-03-30Note to self: stop using 'index' as a variable name, it triggers -Wshadow onEvan Huus1-4/+4
some platforms. You'd think I'd have learned by now. svn path=/trunk/; revision=48646
2013-03-29Implement str_to_val, opposite of val_to_str for value_strings.Evan Huus2-0/+52
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8467 svn path=/trunk/; revision=48645
2013-03-29Bump two guint16 to guint32 to prevent overflow when reassembling a largeEvan Huus1-3/+3
number of fragments, and add an extra bounds check. Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8540 https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8541 svn path=/trunk/; revision=48644
2013-03-29Add items for Bluetooth and GTK3.Gerald Combs1-0/+2
svn path=/trunk/; revision=48643
2013-03-29Convert png → xpm using a higher alpha threshold.Gerald Combs1-32/+32
svn path=/trunk/; revision=48642
2013-03-29Add some missing #includes to hopefully fix check-abi buildbot.Evan Huus2-0/+3
svn path=/trunk/; revision=48641
2013-03-29From Michal Labedzki via ↵Evan Huus2-666/+1703
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8509 First round of fixes for Bluetooth SDP. From me: - rename one call of match_strval to try_val_to_str instead - remove a few hf entries that really belong with the second patch (they weren't used in this one) svn path=/trunk/; revision=48640
2013-03-29Resurrect wsicon32.xpm using 'svn cp' then update it based onGerald Combs3-2/+250
wsicon32.png. This should hopefully preserve its history in SVN. Revert r48565 in debian/. svn path=/trunk/; revision=48639
2013-03-29From Dario Lombardo via ↵Pascal Quantin1-57/+57
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8506 : Fix incompatible display filters using the same name svn path=/trunk/; revision=48638
2013-03-29Add support for new version of the ID which has been adopted as a WG item.Michael Tüxen1-23/+122
The now version will be supported by Firefox soon. svn path=/trunk/; revision=48637
2013-03-29Fix two instances of col_set_str being used with ephemeral memory returnedEvan Huus2-2/+2
from val_to_str. Use col_add_str instead. Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8537 svn path=/trunk/; revision=48636
2013-03-29Remove decode_enumerated_bitfield and decode_enumerated_bitfield_shifted.Evan Huus3-51/+31
Effectively inline the only remain call (and replace a static buffer with ep memory). Much of the NFS dissector needs to be converted to use named fields at which point this code can go away, but that's a much bigger job. Also, add modelines to packet-nfs.c and mark some internal value_string functions as WS_DLL_LOCAL. svn path=/trunk/; revision=48635
2013-03-29Rename value string (and similar) functions to use a consistent pattern. ThisEvan Huus135-493/+442
was done using textual search+replace, not anything syntax-aware, so presumably it got most comments as well (except where there were typos). Use a consistent coding style, and make proper use of the WS_DLL_* defines. Group the functions appropriately in the header. I ended up getting rid of most of the explanatory comments since many of them duplicated what was in the value_string.c file (and were out of sync with the recent updates I made to those in r48633). Presumably most of the comments should be in the .h file not the .c file, but there's enough churn ahead that it's not worth fixing yet. Part of https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8467 svn path=/trunk/; revision=48634
2013-03-28Greatly clean up value_string.cEvan Huus1-342/+380
- use consistent indentation and coding style - add modelines - replace some g_assert calls with DISSECTOR_ASSERT where it makes sense - group related functions together and simplify many comments by referring to the 'normal' value_string as the canonical version svn path=/trunk/; revision=48633
2013-03-28The tshark -R option specifies a read filter, not a display filter.Chris Maynard1-1/+1
svn path=/trunk/; revision=48632
2013-03-28Remove a couple of unneeded lines and fix default execution.Gerald Combs1-4/+1
svn path=/trunk/; revision=48631
2013-03-28Include glib.h in emem.h, it needs the definitionsEvan Huus1-0/+2
svn path=/trunk/; revision=48630
2013-03-28Add some missing tvb_get_'s, proto_tree_add_'s, fix args and change all ↵Chris Maynard1-82/+110
little_endian's to encoding. Some detailed descriptions are still missing though. svn path=/trunk/; revision=48629
2013-03-28Fix incorrectly duplicated display filter for hf_openwire_throwable_linenumber.Chris Maynard1-1/+1
#BACKPORT(1.8) svn path=/trunk/; revision=48628
2013-03-281.9.2 → 1.9.3.Gerald Combs8-14/+14
svn path=/trunk/; revision=48627
2013-03-28The uniqueness bit occurs in 2 different places, so go ahead and use both ↵Chris Maynard1-2/+2
hf_nhrp_flag_U1 and hf_nhrp_flag_U2, but change the common display filter from "nhrp.flag.u1" to simply "nhrp.flag.u". #BACKPORT(1.6, 1.8)??? svn path=/trunk/; revision=48626
2013-03-28Build 1.9.2.Gerald Combs2-59/+125
svn path=/trunk/; revision=48625
2013-03-28Add a little shell script to install all the RPMs necesary to do WiresharkJeff Morriss2-0/+68
development. Both the development and runtime packages are installed although the latter aren't strictly necessary. Ideally this could automatically pull the packages out of packaging/rpm/SPECS/wireshark.spec.in but given the variance in package names between distributions, this seems painful... Tested on Fedora/Redhat and openSUSE. svn path=/trunk/; revision=48624
2013-03-28Register a dissector table for Normal Vendor/Organization Specific ↵Anders Broman2-18/+142
Extension(NVSE) and use it for 3GPP2. svn path=/trunk/; revision=48623
2013-03-28Fix Coverity CID's 280305-280306: Negative loop bound. (These are yet more ↵Chris Maynard1-7/+7
annoying instances of not properly dealing with tvb_reported_length_remaining() possibly returning -1.) #BACKPORT(1.6,1.8) svn path=/trunk/; revision=48622
2013-03-28Fix the remaining instances of Coverity CID's 741992 and 986498, which ↵Chris Maynard2-3/+3
should have been committed with r47073 and r47830, respectively. (I find Coverity doesn't always make it so obvious that there's more than 1 instance for a given CID.) svn path=/trunk/; revision=48621
2013-03-28Fix Coverity CID's 281433 and 281434: Unintended sign extension. (18 instances)Chris Maynard1-20/+22
Fix Coverity CID 702381: Missing break in switch. Add an "XXX" note regarding the framing_rtp assignment, since something appears to be missing. #BACKPORT(1.8) svn path=/trunk/; revision=48620
2013-03-28first_flag should be static.Chris Maynard1-1/+1
#BACKPORT(1.6,1.8) svn path=/trunk/; revision=48619
2013-03-28From Michal Labedzki via ↵Evan Huus1-1/+2
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8536 Fix unrecognised CID session payload in bluetooth if there are multiple sessions with the same DCID. svn path=/trunk/; revision=48618
2013-03-28From Dario Lombardo via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8506Evan Huus1-7/+5
Proper authorship and attribution information for VITA 49 Radio Transport dissector. svn path=/trunk/; revision=48617
2013-03-28Fix the incorrectly duplicated display filter for hf_kdsp_source_name.Chris Maynard1-1/+1
#BACKPORT(1.8) svn path=/trunk/; revision=48616
2013-03-28If wireshark is started with a file and a display filter, apply the displayEvan Huus1-9/+10
filter *after* initially reading the file so that we get the expected multi- pass behaviour and forward-looking filters (like response_in) work properly. svn path=/trunk/; revision=48615
2013-03-28Fix the incorrectly duplicated display filter for hf_gearman_data_content.Chris Maynard1-1/+1
svn path=/trunk/; revision=48614
2013-03-28Properly dissect lat and long according to 3GPP TS 23.032. Fix incorrect ↵Chris Maynard1-15/+20
display filters for hf_gsm_a_geo_loc_deg_of_lat and hf_gsm_a_geo_loc_deg_of_long. Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8532 #BACKPORT(1.6,1.8) svn path=/trunk/; revision=48613
2013-03-28Simplify the check for rpmbuild's version.Jeff Morriss1-6/+12
svn path=/trunk/; revision=48612
2013-03-28Add dissection of Terminal Profile byte 32Pascal Quantin1-0/+64
svn path=/trunk/; revision=48611
2013-03-28Fix distcheck: put wssplash.h in noinst_HEADERS.Jeff Morriss1-0/+1
svn path=/trunk/; revision=48610
2013-03-28-Wmissing-prototypesAnders Broman40-119/+224
svn path=/trunk/; revision=48609
2013-03-28Make that wssplash *underscore* dev dot pngJaap Keuter1-1/+1
svn path=/trunk/; revision=48608
2013-03-28Distribute the shiny new splash screen logos.Jaap Keuter1-2/+2
svn path=/trunk/; revision=48607
2013-03-28Follow up on bug 8416.Jaap Keuter14-73/+73
Remove C++ incompatibilities in GTK+ 3 code. svn path=/trunk/; revision=48606