aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2012-02-25Initial version of a Motorola Mo-bis dissectormobis_newHarald Welte3-1/+621
WARNING: This deactivates the A-bis RSL dissector!
2012-02-08gsmtap: Add definitions for GPRS/EDGE CS / MCS coding schemesHarald Welte1-1/+9
2012-02-08gsmtap: fix indent / whitespaceHarald Welte1-3/+3
2012-02-08lucent-hnbHolger Hans Peter Freyther3-0/+105
Add lucent hnb patch from OpenBSC
2012-02-08SCCP: add a preference to display the raw SCCP payload as hexHarald Welte1-0/+7
2012-02-08GSMTAP: use a dissector_table for new dissectors like SIMHarald Welte2-5/+11
2012-02-08Add new dissector for Ericsson OM2000 A-bis OMLHolger Hans Peter Freyther6-12/+1788
2012-02-08From Sylvain Munaut:etxrab2-16/+117
Fix the windows build by filling up stuct with dummy member https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6798 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40932 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-08Fix set-but-not-used warnings turned errors.jmayer1-4/+4
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40931 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-08As suggested by Joerg on the -dev list yesterday: count up the number ofmorriss1-1/+39
proto_tree_add_text() calls and compare that to the number of proto_tree_add_<something else>() calls and complain if more than 50% of the calls are add_text()'s. proto_tree_add_text() calls whose returned proto_item is used are not counted as hanging a subtree off a text item is an appropriate use for text items. I chose 50% because even at that level there are many dissectors with "too many" proto_tree_add_text()'s. The function to do all of this is commented out for now for the same reason plus the fact that it's pretty slow. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40930 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-08Fixed bug with calculation of bytes in flight.grahamb1-0/+5
A corner case was posted to the Q&A site showing incorrect calculation of bytes in flight (http://ask.wireshark.org/questions/8843/bytes-in-flight-problems-with-retransmissions) The capture in question has a tcp segment (frame 12) that is a retransmission of unacked earlier data (frames 4, 9, 10) and also contains some new data. Eventually an ACK is received for the earlier segments (frame 16) but the code doesn't remove frame 12 from the linked list of unacked segments because it extends past the received ACK. When more data is received in frame 17, the bytes in flight is calculated from the start of frame 12 rather than from the unacked portion of it, leading to a larger incorrect value. The change simply updates the starting sequence number in the unacked segment list for any partially acked segment to be the start of unacked data. The capture in question now shows correct information for bytes in flight, and hopefully the nature of the change won't cause issues elsewhere. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40929 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-08Fix reporting of duplicate IP addresses by creating a hash table ofmartinm1-60/+115
results when first visited. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40928 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-08Disable the File->Merge... menu item if we cannot save-as,stig1-1/+1
because this will assert. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40927 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-08Small whitespace fix.jmayer1-3/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40926 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-08Last fix to the wrong approach.jmayer1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40925 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-08From Sylvain Munaut:etxrab3-0/+1403
Add support for GMR-1 BCCH dissection. I #if 0'd out incomplete code. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6798 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40924 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-08Heuristic standard detection:morriss1-0/+12
- Grab optional parameters for LUDT/LUDTS - Fix processing of the 2-octet pointers git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40923 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-07From Guy Martin via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6795 :morriss1-4/+0
Remove some duplicate checks. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40922 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-07Initialize felica_tree to NULL to avoid a false warning.cmaynard1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40921 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-07Make some minimally required changes as pointed out in bug6758[1].cmaynard1-153/+159
In addition: -> I didn't think using tvb_new_subset_remaining() in order to iterate through the blocks was the best way to implement this, so I changed it to the method I had proposed earlier[2]. -> Some whitespace cleanup. -> Noted some "TODO"'s for potential further improvements. [1]: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6758#c9 [2]: http://article.gmane.org/gmane.network.wireshark.devel/24721 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40920 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-07Fix the fuzz failure reported in in ↵morriss1-9/+21
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6799 : Ensure that the payload length handed to the reassembly routines doesn't go negative/very-large-positive. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40919 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-07small whitespace fixjmayer1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40918 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-07Initiliase another variable.martinm1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40917 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-07Initialise a variable to avoid warning.martinm1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40916 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-07packet-gsm_sim.c was the wrong file to check in.jmayer2-7/+6
I meant ui/gtk/voip_calls_dlg.c. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40915 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-07Fix "variable set but not used" warnings turned error. In at leastjmayer2-17/+20
one case this looks like a logic bug and should be investigated. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40914 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-07Make sure that we only have to set (or pick up) the docdir environmentjmayer1-1/+1
variable on the initial cmake run and not on later re-runs (like when some cmakelists.txt file changed and we call make). Of course this value should really be passed as an option instead of an environment variable but I want to document how to get the current approach working properly before switching to the proper approach. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40913 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-07Allways use g_list_prepend().etxrab1-16/+16
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40912 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-07Update the documentation to match the sort order. This documentation error ↵cmaynard1-1/+1
was pointed out by Markus Amend on -users. Reference: http://article.gmane.org/gmane.network.wireshark.user/14477 (BTW, I quickly scanned through tap-iousers.c:iousers_draw() and the sorting seems to be very inefficient.) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40911 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-07Export the mtp3_heuristic_standard preference and mtp3_standard_vals[].morriss2-5/+11
Set mtp3_standard back to the preference value after each packet (in addition to in the frame-end function) in case there are multiple packets of different standards in the same frame. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40910 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-06Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clangalagoutte1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40909 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-06Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clangalagoutte1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40908 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-06Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clangalagoutte1-3/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40907 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-06Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clangalagoutte1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40906 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-06Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clangalagoutte1-7/+8
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40905 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-06Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clangalagoutte1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40904 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-06Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clangalagoutte1-20/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40903 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-06Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clangalagoutte1-22/+14
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40902 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-06Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clangalagoutte1-13/+17
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40901 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-06Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clangalagoutte1-4/+6
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40900 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-06Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clangalagoutte1-3/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40899 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-06Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clangalagoutte1-27/+27
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40898 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-06Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clangalagoutte1-27/+5
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40897 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-06Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clangalagoutte1-4/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40896 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-06Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clangalagoutte1-2/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40895 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-06Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clangalagoutte1-7/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40894 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-06Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clangalagoutte1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40893 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-06Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clangalagoutte1-3/+6
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40892 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-06Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clangalagoutte1-7/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40891 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-06Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clangalagoutte1-9/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40890 f5534014-38df-0310-8fa8-9805f1628bb7