aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2012-02-12Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-9/+11
svn path=/trunk/; revision=40996
2012-02-12Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-5/+6
svn path=/trunk/; revision=40995
2012-02-12Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-1/+1
svn path=/trunk/; revision=40994
2012-02-12Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-27/+14
svn path=/trunk/; revision=40993
2012-02-12Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-5/+0
svn path=/trunk/; revision=40992
2012-02-12Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-4/+0
svn path=/trunk/; revision=40991
2012-02-12Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-4/+5
svn path=/trunk/; revision=40990
2012-02-12Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-20/+30
svn path=/trunk/; revision=40989
2012-02-12Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-3/+0
svn path=/trunk/; revision=40988
2012-02-12Enhance BGP Notification messageAlexis La Goutte2-67/+112
* Make field filterable (3 proto_tree_add_text less ! but there are still 147 proto_tree_add_text...) * Remove bgp_notify struct * Use expert info to display a unknown error type svn path=/trunk/; revision=40987
2012-02-12Get it compiling.Michael Tüxen1-1/+1
svn path=/trunk/; revision=40986
2012-02-12Get the comment and put it in the textview.Anders Broman3-2/+25
svn path=/trunk/; revision=40985
2012-02-12Try to make the buildbot happy.Anders Broman1-2/+19
svn path=/trunk/; revision=40983
2012-02-12[Automatic manuf, services and enterprise-numbers update for 2012-02-12]Gerald Combs3-18/+198
svn path=/trunk/; revision=40981
2012-02-12Add the edit packet comment menu entry and the empty filesAnders Broman5-2/+96
to actually handel the menu to edit the comments. svn path=/trunk/; revision=40980
2012-02-12From Steve Magnani:Anders Broman2-1/+15
USB: add infrastructure for dissecting class-specific descriptors. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6825 svn path=/trunk/; revision=40979
2012-02-11Use the length-on-the-network, not the captured length, when decidingGuy Harris1-1/+1
how far to dissect. svn path=/trunk/; revision=40978
2012-02-11Don't bail out of a non-heuristic dissector routine just because there'sGuy Harris1-3/+0
not enough captured data in the tvbuff. svn path=/trunk/; revision=40977
2012-02-11Get rid of checkapi warning about %hh.Guy Harris1-2/+2
svn path=/trunk/; revision=40976
2012-02-11mpeg_pat.cur_next_ind looks like a Boolean; make it one. That alsoGuy Harris1-4/+3
fixes checkapi warnings about its value_string not being properly terminated (by replacing it with a true_false_string). svn path=/trunk/; revision=40975
2012-02-11Store drop count if present.Anders Broman1-1/+24
svn path=/trunk/; revision=40974
2012-02-11From Steve Magnani:Anders Broman1-2/+5
USB: support filtering of isochronous packets via usb.bInterfaceClass. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6824 svn path=/trunk/; revision=40973
2012-02-11From Guy Martin:Anders Broman3-0/+221
Dissector for DVB MultiProtocol Encapsulation (DVB-MPE) https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6822 svn path=/trunk/; revision=40972
2012-02-11From Guy Martin:Anders Broman3-0/+207
Dissector for MPEG Program Association Table (PAT) https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6821 svn path=/trunk/; revision=40971
2012-02-11From Guy Martin:Anders Broman3-0/+276
Dissector for MPEG section packets. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6820 svn path=/trunk/; revision=40970
2012-02-11Add the abillity to read and write option comments unedited.Anders Broman7-61/+171
This is POC we may want to have more efficient use of the frame data structure etc. But this allows for work to be done on the GUI to actually add comments. svn path=/trunk/; revision=40969
2012-02-11From David Wei:Anders Broman2-94/+25
Udate AVP:s svn path=/trunk/; revision=40968
2012-02-11Don't use 16-bit integers as counters. The code won't be any faster onGuy Harris1-3/+5
anything that can run Wireshark (it might be slower), and if the maximum count value is 16-bit, you can loop forever if the maximum count value happens to be 65535. (Yes, this means that guint i, j; ... for (i = 0; i < j; i++) ... risks looping forever if j is 2^32-1, and the same applies to 64-bit counters. There are probably fewer protocols with 32-bit counts, and probably even fewer with 64-bit counts, but the way it should be done in those cases, for safety, is i = 0; for (;;) { if (i >= j) break; ... if (i == j - 1) break; } or something such as that.) Fixes bug 6809. #BACKPORT Will schedule for 1.6.x. svn path=/trunk/; revision=40967
2012-02-11It is a complete mistake to have *ANY* messages during packet captureGuy Harris1-10/+6
sent to the standard output if "-w" is specified because, when you capture, you can capture with the output directed to the standard output, and dumping some text crap to the standard output will corrupt your capture file. svn path=/trunk/; revision=40966
2012-02-11Use C89-style comment rather than C++/C99-style comment.Guy Harris1-1/+1
svn path=/trunk/; revision=40965
2012-02-11Get rid of C++/C99-style comment; use #if 0/#endif instead.Guy Harris1-1/+3
svn path=/trunk/; revision=40964
2012-02-11Revert presumably-unintentional turning on of debug messages.Guy Harris1-1/+1
svn path=/trunk/; revision=40963
2012-02-11Global variables considered harmful. Pass pinfo along as a parameter;Guy Harris1-196/+193
this appears to fix bug 6823 (the actual crash was a null pinfo being passed to call_dissector()). svn path=/trunk/; revision=40962
2012-02-11NETLOGON handle different schannel with the same sourceRonnie Sahlberg1-1/+6
ip and dest i from Matthieu Patou <mat@matws.net> svn path=/trunk/; revision=40961
2012-02-11NETLOGON: Fix bugs with netlogon decryption not working in some casesRonnie Sahlberg1-3/+4
If there is only one Authenticatex in the file, decryption is not working. from Matthieu Patou <mat@matws.net> svn path=/trunk/; revision=40960
2012-02-11NETLOGON: improve debugging messagesRonnie Sahlberg1-7/+17
from Matthieu Patou <mat@matws.net> svn path=/trunk/; revision=40959
2012-02-11NTLM show the decrypted data buffer in a separate tabRonnie Sahlberg1-0/+2
from Matthieu Patou <mat@matws.net> svn path=/trunk/; revision=40958
2012-02-11NTLM print the whole string, not just half the stringRonnie Sahlberg1-1/+1
from Matthieu Patou <mat@matws.net> svn path=/trunk/; revision=40957
2012-02-11NTLM: clear the nt_password_unicode buffer.Ronnie Sahlberg1-0/+1
from Matthieu Patou <mat@matws.net> svn path=/trunk/; revision=40956
2012-02-11NTLM make it easier to activate/deactivate debugging code in NTLMRonnie Sahlberg1-3/+7
from Matthieu Patou <mat@matws.net> svn path=/trunk/; revision=40955
2012-02-11NTLM: If we encounter an NTLM blob that is bigger than out fixed maxbuffer,Ronnie Sahlberg1-2/+2
log a warning to the user. from Matthieu Patou <mat@matws.net> svn path=/trunk/; revision=40954
2012-02-11NTLMv2 blobs can be bigger than 256 bytes. Set the limite to 10k for now.Ronnie Sahlberg1-2/+2
From Matthieu Patou <mat@matws.net> svn path=/trunk/; revision=40953
2012-02-10Fix via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6817 :Jeff Morriss2-41/+62
r40200 made ssl_parse()/dtls_parse() post-update-callbacks for those dissector's UATs so that the dissector would be updated when the user changed the UAT. (This allows SSL/DTLS keys to be taken into account without requiring Wireshark to be restarted.) But, those functions also update the UAT themselves if the old-style keys_list preference is used, creating an infinite recursion. Fix this by splitting the *_parse() functions into two: one for the UAT and one for the old-style keys list. svn path=/trunk/; revision=40952
2012-02-10Sean Bright <sean.bright@gmail.com>:Jörg Mayer1-1/+1
In r37159, the following change was made to ui/gtk/rtp_player.c: @@ -1654,9 +1636,7 @@ GtkWidget *dialog; /* we should never be here if we are in PLAY and !PAUSE */ - if(!rtp_channels->stop&& !rtp_channels->pause){ - exit(10); - } + g_assert(!rtp_channels->stop&& !rtp_channels->pause); The logic, however, was not negated properly. The correct assertion should be: g_assert(rtp_channels->stop || rtp_channels->pause); With the current code, the RTP player causes a crash for me when pressing the 'Play' button. svn path=/trunk/; revision=40951
2012-02-10Delete the TH_* defines and use those from epan/dissectors/packet-tcp.h.Chris Maynard1-7/+0
svn path=/trunk/; revision=40950
2012-02-10Since the nonce and reserved bits were added in r34084, tcp.flags is now 12 ↵Chris Maynard2-11/+12
bits, so its type needs to be changed from an FT_UINT8 to an FT_UINT16. This should avoid the crash experienced by Lanell Allen as reported on -dev: http://article.gmane.org/gmane.network.wireshark.devel/24846 (although in my testing on Windows XP SP3 (32-bit), Wireshark did not crash). svn path=/trunk/; revision=40949
2012-02-10Make proper use of esg_tree.Chris Maynard1-43/+37
svn path=/trunk/; revision=40948
2012-02-09Add pcapng variables to wtap_pkthdr.Anders Broman3-8/+24
svn path=/trunk/; revision=40947
2012-02-09From David Wei:Anders Broman3-220/+230
Add a preference to not dissect containers, svn path=/trunk/; revision=40946
2012-02-09Add comments about new IEsAnders Broman1-0/+32
svn path=/trunk/; revision=40945