aboutsummaryrefslogtreecommitdiffstats
path: root/epan
AgeCommit message (Collapse)AuthorFilesLines
2011-04-21Fix ep_check_canary_integrity to use proper variable.Jakub Zawadzki1-2/+2
Previously it would sigsegv (accessing (void *) -1), instead of displaying error. svn path=/trunk/; revision=36745
2011-04-20Simplify the test in a loop.Martin Mathieson1-5/+1
This was in response to a VS Code Analysis warning. Not sure if it was confused by lack of parenthesis, or if it detected that we had an && where both sides would always have the same value, but it was confusing. svn path=/trunk/; revision=36743
2011-04-20Add code to dissect "original uTP header format"Bill Meier1-45/+188
as described in the LibuTP utp.cpp source code; Add a kludgy heuristic to differentiate between original and "V1" header formats. TBD: validity of the heuristic; is there a better way ? svn path=/trunk/; revision=36742
2011-04-20Use [hi|lo]_nibble macros, leave room in str[] for invalid BCD digits to beChris Maynard1-31/+26
displayed as blanks. Since imsi_to_str() and ip_to_str() do the same thing, just have imsi_to_str() call ip_to_str() rather than having two different implementations of the same thing. Use a BCD2CHAR macro instead of doing a table lookup. svn path=/trunk/; revision=36740
2011-04-20- New-style dissectors need to always return "bytes dissected" (not just ↵Bill Meier1-13/+14
when tree != NULL); - The dissector probably shouldn't return a value for "bytes dissected" which is larger than the tvb length (altho there's actually no harm given the current implementation). - Don't try to do an 'add_item' with an offset past the end of the tvb (altho again there's no actual harm in this case). ToDo: Handle "original format" uTP headers. svn path=/trunk/; revision=36737
2011-04-20Add Makefile.common to the dependency list for register.c.Gerald Combs2-2/+2
svn path=/trunk/; revision=36736
2011-04-20Fix a typo in a text string; use consistent indentation.Bill Meier1-11/+11
svn path=/trunk/; revision=36735
2011-04-20Properly (re)initialise structs used for keeping track of UEs/TTI.Martin Mathieson1-2/+7
svn path=/trunk/; revision=36734
2011-04-20From Vladimir Kazansky via bug 5849: Fix msisdn_to_str() so it converts all BCDChris Maynard1-1/+1
digits and not just 1. svn path=/trunk/; revision=36727
2011-04-19From Georg Mueller via bug #5851: Add not handled IDs to BitTorrentStephen Fisher1-1/+27
dissector svn path=/trunk/; revision=36726
2011-04-19Whitespace cleanup; Remove an uneeded col_clear().Bill Meier1-25/+23
svn path=/trunk/; revision=36720
2011-04-19This file had an identical copy appended to the end of it. RemoveStephen Fisher1-355/+1
duplicate. svn path=/trunk/; revision=36719
2011-04-19From Xiao Xiangquan via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5846Alexis La Goutte1-0/+710
A new dissector for uTorrent Transport Protocol From me : * Add link to spec BEP-0029 * Add note about type/version * Rework extensions loop * Use 2-space indenting svn path=/trunk/; revision=36716
2011-04-19From Xiao Xiangquan via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5846Alexis La Goutte2-0/+2
A new dissector for uTorrent Transport Protocol From me : * Add link to spec BEP-0029 * Add note about type/version * Rework extensions loop * Use 2-space indenting svn path=/trunk/; revision=36715
2011-04-19From Michael Mann via bug 2794:Stig Bjørlykke16-30/+30
Fixed display filters with obvious typos. svn path=/trunk/; revision=36713
2011-04-18We don't have any preferences, so remove the prefs.h include. It doesn'tGerald Combs1-9/+0
look like we need a reg_handoff routine either so remove it as well. Fixes Coverity CID 1189. svn path=/trunk/; revision=36709
2011-04-18Fix Dead Store (Dead assignement/Dead increment) Warning found by Clang Alexis La Goutte1-2/+0
svn path=/trunk/; revision=36708
2011-04-18Fix Dead Store (Dead assignement/Dead increment) Warning found by Clang Alexis La Goutte1-5/+1
svn path=/trunk/; revision=36707
2011-04-18Fix Dead Store (Dead assignement/Dead increment) Warning found by Clang Alexis La Goutte1-2/+1
svn path=/trunk/; revision=36705
2011-04-18Fix 100(!) Dead Store (Dead assignement/Dead increment) Warning found by Clang Alexis La Goutte1-16/+14
svn path=/trunk/; revision=36704
2011-04-18Fix Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-8/+8
svn path=/trunk/; revision=36703
2011-04-18Fix Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-4/+5
svn path=/trunk/; revision=36702
2011-04-18Fix Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-4/+3
svn path=/trunk/; revision=36701
2011-04-18Fix Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-16/+0
svn path=/trunk/; revision=36700
2011-04-18Fix Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-6/+1
svn path=/trunk/; revision=36699
2011-04-18Removed some unneeded assignments.Stig Bjørlykke15-33/+24
Found by clang. svn path=/trunk/; revision=36698
2011-04-18Make it build.Stig Bjørlykke1-9/+8
svn path=/trunk/; revision=36697
2011-04-18Start merging from packet-pdcp-lte.cAnders Broman1-51/+222
svn path=/trunk/; revision=36696
2011-04-18Update Motonori Shindo's email address at the author's request. Fixes bug 5840.Chris Maynard1-1/+1
svn path=/trunk/; revision=36695
2011-04-17Retire a preference that can be always on now.Martin Mathieson1-9/+2
svn path=/trunk/; revision=36693
2011-04-17Allow signaling protocol (e.g. RRC) to set number of SN bitsMartin Mathieson2-1/+18
PDCP should use for DRB channels. Not yet called by RRC. svn path=/trunk/; revision=36692
2011-04-17Decode the SI value in DATA messages correclty.Michael Tüxen1-1/+1
This fixes bug 5834. svn path=/trunk/; revision=36691
2011-04-17One more unused argument.Stig Bjørlykke1-2/+1
svn path=/trunk/; revision=36690
2011-04-17Removed unneeded assignments.Stig Bjørlykke1-2/+0
Found by clang. svn path=/trunk/; revision=36689
2011-04-17Mark unused arguments with _U_.Stig Bjørlykke1-22/+11
svn path=/trunk/; revision=36688
2011-04-17Removed unneeded assignments to self.Stig Bjørlykke1-2/+0
Found by clang. svn path=/trunk/; revision=36687
2011-04-17Removed an unneeded assignment, they are both always 0.Stig Bjørlykke1-2/+0
Found by clang. svn path=/trunk/; revision=36686
2011-04-17Corrected equality check in frag_equal().Stig Bjørlykke1-4/+4
Found by clang. svn path=/trunk/; revision=36685
2011-04-17Check for valid docsis_handle, and use data_handle if not.Stig Bjørlykke1-1/+4
This fixes bug 5839. svn path=/trunk/; revision=36681
2011-04-17Add QoS Capability element (46) and Extended Supported Rates element (50) Alexis La Goutte1-99/+141
Enhance RSN Info (48), Extended Capabilities information element (127) * Replace proto_tree_add_uint*/boolean/text by proto_tree_add_item * use ENC_* macro for encoding svn path=/trunk/; revision=36680
2011-04-17[Automatic manuf, services and enterprise-numbers update for 2011-04-17]Gerald Combs1-12/+144
svn path=/trunk/; revision=36677
2011-04-17Add a way for configuration protocol (e.g. RRC) to configure MAC-> RLC ↵Martin Mathieson2-41/+159
mappings, and add a preference to use this or the static UAT. API is not yet called by RRC. svn path=/trunk/; revision=36676
2011-04-17Using the routing subtree (Miss in my last patch)Alexis La Goutte1-5/+5
Fix a typo error (shoubl => should) svn path=/trunk/; revision=36674
2011-04-16Remove another unneeded NULL check. Fixes Coverity CID 605.Gerald Combs1-2/+2
svn path=/trunk/; revision=36673
2011-04-16Fix Coverity CIDs 603 & 604.Gerald Combs1-2/+2
svn path=/trunk/; revision=36672
2011-04-16Fix the warnings in Coverity CIDs 606-608.Gerald Combs3-4/+3
svn path=/trunk/; revision=36671
2011-04-16Add NULL checks. Fixes Coverity CIDs 509 and 510.Gerald Combs1-3/+9
svn path=/trunk/; revision=36670
2011-04-16Try to make the OSX buildbot happy.Anders Broman1-1/+1
svn path=/trunk/; revision=36669
2011-04-16Convert ICMPv6 dissector to "new-style" dissectorAlexis La Goutte1-48/+99
Fix Dead Store Warning ( warning: Value stored to '*offset*' is never read ) svn path=/trunk/; revision=36668
2011-04-16From Edwin Groothuis via bug 5813:Gerald Combs1-4/+4
In the explanation of TCP Option 78 (Riverbed Transparency), the labels are "CSH IP Addr/Port" and "SSH IP Addr/Port". This should be "Src SH IP Addr/Port" and "Dst SH IP Addr/Port". The filter keys for these labels are correct. svn path=/trunk/; revision=36667