aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2011-03-08Removal of the old packet-list in favor of the new packet list.Sake Blok36-2617/+11
It compiles with "./configure without options" on my Mac. Let's see what the buildbots have to say about it :-) svn path=/trunk/; revision=36161
2011-03-07Allow <interval> to be successfully sscanf'd no matter the locale for theChris Maynard1-2/+5
decimal symbol. Similar to the fix made to tap-iostat.c to resolve bug 2880. Motivated by the discussion started from this thread on the user list: http://www.wireshark.org/lists/wireshark-users/201103/msg00018.html svn path=/trunk/; revision=36160
2011-03-07Don't pass retransmitted chunks to subdissectors. Instead just mark them asJeff Morriss1-17/+34
retranmissions (in COL_INFO). (Obviously this only works if TSN analysis is enabled.) This should make it more obvious to users which chunks are retransmissions and will help avoid confusing the subdissector(s). svn path=/trunk/; revision=36159
2011-03-07From Alexis La Goutte:Anders Broman1-64/+166
enhance tag Power Constraint/Capability, TPC Request/Report, Supported Channel, csa https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5660 svn path=/trunk/; revision=36158
2011-03-07Squelch compiler warning:Stephen Fisher1-1/+1
packet-dvbci.c: In function 'dissect_dvbci_lpdu': packet-dvbci.c:1153: warning: 'hdr_tag' may be used uninitialized in this function packet-dvbci.c:1153: note: 'hdr_tag' was declared here By setting hdr_tag = 0, but see question on bug #5654 on whether 0 is a good default value or not. svn path=/trunk/; revision=36157
2011-03-07From Stefan Metzmacher: smb2 multi-credit / large mtu supportBill Meier1-6/+32
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5729 From me: Update a comment re the "epoch" field: It's now called "credit charge". svn path=/trunk/; revision=36156
2011-03-07Remove a no longer needed struct.Anders Broman1-12/+0
svn path=/trunk/; revision=36155
2011-03-07Remove more obsolete code.Anders Broman1-92/+0
svn path=/trunk/; revision=36154
2011-03-07Fix packet-bssgp.c:125: warning: 'hf_bssgp_tmsi_ptmsi' defined but not usedAnders Broman1-1/+0
svn path=/trunk/; revision=36153
2011-03-07Remove the old code.Anders Broman1-5909/+80
svn path=/trunk/; revision=36152
2011-03-07Fix compiler error on Windows 64: cast strlen() to (int);Bill Meier1-4/+4
Also: Apparently the length of an address of type AT_STRINGZ must include the NULL. svn path=/trunk/; revision=36151
2011-03-07Set propertiesBill Meier0-0/+0
svn path=/trunk/; revision=36150
2011-03-07From Martin Kaiser: dissector for DVB-CI (Common Interface)Bill Meier7-1/+1560
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5654 From me: - Entry for DVBCI added to wtap.c encap_table_base[]; - Some code simplification with respect to the use of col_...() for COL_INFO; - Certain tests for "enough bytes available" not really needed; - (Other minor tweaks); - #include<stdio.h> not req'd; - Minor reformatting and whitespace cleanup; svn path=/trunk/; revision=36149
2011-03-06Remove some instances of _U_ where the parameter is now used.Martin Mathieson3-12/+12
svn path=/trunk/; revision=36148
2011-03-06Improve expert info output when detect Scheduling Request 'state machine' ↵Martin Mathieson1-9/+11
problem. svn path=/trunk/; revision=36147
2011-03-06Mark value_string_ext bssgp_cause_vals_ext as WS_VAR_IMPORT.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=36144
2011-03-06[Automatic manuf, services and enterprise-numbers update for 2011-03-06]Gerald Combs3-16/+263
svn path=/trunk/; revision=36143
2011-03-06Prepare to remove old bssgp code by changing exports.Anders Broman5-29/+22
svn path=/trunk/; revision=36142
2011-03-04From Alexis La Goutte:Anders Broman1-156/+306
Enhance tag fh_hopping_.., tclas, tspec, challenge_text... https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5660 svn path=/trunk/; revision=36141
2011-03-04From Stefan Metzmacher: Patch that fixes false positives and allows large ↵Bill Meier1-10/+22
smb1/2 pdus https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4914 svn path=/trunk/; revision=36140
2011-03-04Fix warningTomas Kukosa1-2/+3
svn path=/trunk/; revision=36139
2011-03-04Check only first 14 digits of GeneralizedTime which are fixed, next parts ↵Tomas Kukosa1-2/+5
are optional svn path=/trunk/; revision=36138
2011-03-04All messages converted to the "GSM style" dissection.Anders Broman1-88/+681
svn path=/trunk/; revision=36137
2011-03-04Change descriptions of NTP Reference Identifier Codes for stratum 1Stephen Fisher1-16/+22
servers to match IANA assignment / RFC 5905. A number of codes already in Wireshark that aren't assigned were left intact. svn path=/trunk/; revision=36136
2011-03-04Correct the usage of tvb_memeql() after r35558: it doesn't return trueStephen Fisher1-1/+1
if the values are the same; we have to check for "== 0" to see if they are the same. svn path=/trunk/; revision=36135
2011-03-03Change "Reference Clock ID" to "Reference ID" to match RFC5905 (alsoStephen Fisher1-3/+3
mention this RFC in the comments). svn path=/trunk/; revision=36134
2011-03-03Clarify / add explanations for the fieldsStephen Fisher1-24/+26
svn path=/trunk/; revision=36133
2011-03-03Add more duplicate fragment tests.Jeff Morriss1-14/+212
svn path=/trunk/; revision=36132
2011-03-03When reassembling fragments, don't stop looking at fragments just because theJeff Morriss2-40/+242
current fragment pushes us past the reassembled size: it may be that the current fragment is a duplicate/retransmission and will be ignored. Also, if we detect a conflict between a previous and the current fragment, flag the current (conflicting) fragment as FD_OVERLAPCONFLICT. Do *not* flag the fragment that got us into the reassembly routine (probably the final fragment): it is not (may not be) the guilty fragment. Clean up some spacing. Also add reassembly tests for duplicate/retransmitted fragments. svn path=/trunk/; revision=36131
2011-03-03Export SONtransferRequestContaine, SONtransferResponseContainerand and ↵Anders Broman3-27/+35
Global-ENB-ID svn path=/trunk/; revision=36130
2011-03-03There's no need to pass the result of tvb_get_ptr() as the 'value' inJeff Morriss1-32/+17
proto_tree_add_*(): just use proto_tree_add_item(). Use tvb_ether_to_str(). Remove some unnecessary includes. svn path=/trunk/; revision=36129
2011-03-03There's no need to pass the result of tvb_get_ptr() as the 'value' inJeff Morriss1-17/+12
proto_tree_add_*(): just use proto_tree_add_item(). Use tvb_ether_to_str(). svn path=/trunk/; revision=36128
2011-03-03Use tvb_memcpy() instead of tvb_get_ptr() + memcpy().Jeff Morriss1-8/+4
Remove a few unnecessary includes. svn path=/trunk/; revision=36127
2011-03-03Use tvb_ether_to_str().Jeff Morriss1-8/+8
svn path=/trunk/; revision=36126
2011-03-03Use tvb_get_guint8() instead of tvb_get_ptr().Jeff Morriss1-8/+2
Remove a few unnecessary includes. svn path=/trunk/; revision=36125
2011-03-03Use tvb_ether_to_str().Jeff Morriss1-13/+13
svn path=/trunk/; revision=36124
2011-03-03Make the _to_str() functions in here take a pointer to a TVB and an offsetJeff Morriss1-34/+29
rather than (generally) a pointer into the TVB. Replace some tabs with spaces (for consistency). Remove a couple unnecessary includes. svn path=/trunk/; revision=36123
2011-03-02As suggested by Anders: when we detect non-ASCII characters, print the lineJeff Morriss1-7/+10
number on which we found them. svn path=/trunk/; revision=36122
2011-03-02Fix Error: Found non-ASCII characters in packet-ieee80211.cAnders Broman1-1/+1
svn path=/trunk/; revision=36121
2011-03-02From Alexis La Goutte:Anders Broman1-112/+141
* Add 802.11 Standard Reference * Reorder IE (Information Element) and define in decimal (the standard use decimal...) https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5660 svn path=/trunk/; revision=36120
2011-03-02Allow linking back to previous UL tx 32 ms ago.Martin Mathieson1-3/+3
svn path=/trunk/; revision=36119
2011-03-02Don't overwrite isPhyRetx field for UL frames with DL check.Martin Mathieson1-1/+3
svn path=/trunk/; revision=36118
2011-03-01Update some of the "Details" properties in the installer. Remove theGerald Combs4-0/+16
32-bit BMPs from the installer icon; they don't appear to render properly. svn path=/trunk/; revision=36113
2011-03-01Make HAVE_PCAP_REMOTE and HAVE_PCAP_SETSAMPLING independentMichael Tüxen2-36/+35
as in other places of the code. Such that this is consistently used. While there, clean up some whitespaces. This fix was provided by Irene Ruengeler which testing remote capturing (with multiple interfaces). svn path=/trunk/; revision=36112
2011-03-01After SR failure, allow for another attempt in SR state machine (presumably ↵Martin Mathieson1-4/+6
with a subsequent RACH happening in-between...) svn path=/trunk/; revision=36109
2011-03-01QSIG: decoding of PSS1InformationElementTomas Kukosa3-8/+39
svn path=/trunk/; revision=36108
2011-03-01Tweak the way we setup FP R8 info.Martin Mathieson1-2/+9
svn path=/trunk/; revision=36107
2011-03-01Was reading F in mac-is descriptors the wrong way around...Martin Mathieson1-1/+3
svn path=/trunk/; revision=36106
2011-03-01If we encounter an excessively long filter string or one with too manyGerald Combs3-16/+50
elements, add an expert item and throw a ReportedBoundsError. We may want to handle this more cleanly in the future but this avoids allocating a huge amount of memory. svn path=/trunk/; revision=36101
2011-02-28Define some globals as static; Remove uneeded #includes; Whitespace cleanup.Bill Meier2-176/+170
svn path=/trunk/; revision=36100