aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2011-07-11Having a non-NULL capture_opts->save_file might make us crash less.Gerald Combs1-0/+1
svn path=/trunk/; revision=37983
2011-07-11Use the proper function name.Gerald Combs1-1/+1
svn path=/trunk/; revision=37982
2011-07-11Fix more tooltips.Anders Broman2-31/+19
svn path=/trunk/; revision=37980
2011-07-11More GLIB_CHECK_VERSION cleanups. Update the minimum GLib/GTK+ versionsGerald Combs28-422/+31
in README.devloper. Remove g_gnuc.h since it's no longer needed. Remove tvbuff_init(), tvbuff_cleanup(), reassemble_init(), and reassemble_cleanup() since they were only used for older GLib versions which didn't support GSlices. Assume we always support the "matches" operator. svn path=/trunk/; revision=37978
2011-07-11Fix more tooltips, mark gtk_tooltips_new with 'E' in checkapi.Anders Broman4-35/+25
svn path=/trunk/; revision=37976
2011-07-11Fix a couple of tooltips.Anders Broman3-34/+9
svn path=/trunk/; revision=37975
2011-07-11In version_info.c, assume we always have the "matches" operator. InGerald Combs2-12/+0
capture_opts.c, assume our output filename has been passed through arg_list_utf_16to8(). svn path=/trunk/; revision=37974
2011-07-11Remaining GLIB_CHECK_VERSION and GTK_CHECK_VERSION in the gtk directory.Gerald Combs16-653/+29
svn path=/trunk/; revision=37973
2011-07-11GTK_CHECK_VERSION cleanup.Anders Broman5-43/+0
svn path=/trunk/; revision=37972
2011-07-11More GLIB_CHECK_VERSION and GTK_CHECK_VERSION cleanup.Gerald Combs11-224/+26
svn path=/trunk/; revision=37971
2011-07-11More GLIB_CHECK_VERSION, GTK_CHECK_VERSION, and related whitespaceGerald Combs12-215/+112
cleanup. svn path=/trunk/; revision=37970
2011-07-11Remove a lot of instances of GTK_CHECK_VERSION. Clean up whitespace in aGerald Combs9-267/+188
couple of places. svn path=/trunk/; revision=37969
2011-07-11Make the minimum GLib version 2.14 and the minimum GTK+ version 2.12.Gerald Combs1-45/+11
svn path=/trunk/; revision=37967
2011-07-11Change encoding type from FALSE to ENC_BIG_ENDIAN.Anders Broman1-18/+18
svn path=/trunk/; revision=37963
2011-07-11From qgj:Anders Broman1-133/+133
when dissect the capwap control header,the sequence's value is decoded improperly,it tooks the wrong offset value,so the control messages' sequence is showed improperly. Changed to uset proto_add_item and encoding type changed from FALSE to ENC_BIG_ENDIAN. svn path=/trunk/; revision=37962
2011-07-11Change encoding type from FALSE to ENC_BIG_ENDIAN.Anders Broman1-135/+135
svn path=/trunk/; revision=37961
2011-07-11From Ludovic Haessler:Anders Broman2-3/+22
Add 3GPP TS44.060 RLC/MAC control blocks management in GSMTAP dissector. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6103 svn path=/trunk/; revision=37960
2011-07-11Make sure consumed is set.Anders Broman1-2/+1
svn path=/trunk/; revision=37959
2011-07-11From Michael Mann:Anders Broman1-1462/+1727
Added filters for BOOTP options of "basic" types (modeled after packet-wssap.c) "bootp.option.length" only used when specific option filter can't be found. "bootp.option.value" expanded to support multiple types Converted "custom options string" to UAT replacing many proto_tree_add_text() calls with proto_tree_add_item(), so the BOOTP dissector is considerably more filterable svn path=/trunk/; revision=37958
2011-07-11As noted by Jaap Keuter on -dev, be sure to use message_size instead ofChris Maynard1-1/+1
header->message_size for a correct host endianness comparison. svn path=/trunk/; revision=37957
2011-07-10Move the definitions of LANalyzer records to lanalyzer.c.Guy Harris2-160/+155
Use LA_RecordHeaderSize rather than sizeof, to squelch some compiler complaints. svn path=/trunk/; revision=37956
2011-07-10From Jaap:Anders Broman1-2/+2
Limit the search to the line. svn path=/trunk/; revision=37955
2011-07-10Define a structure for the record header, and read into that, and thenGuy Harris1-33/+18
extract values from it. svn path=/trunk/; revision=37954
2011-07-10At that point in the code, bytes_read isn't the total number of recordGuy Harris1-3/+3
header bytes read, as we're reading the two header fields separately and checking the byte count for each read. We *do*, however, know that the record header is 4 bytes long, so we can just seek back 4 bytes. svn path=/trunk/; revision=37953
2011-07-10Add port 2710 for the XBT BitTorrent tracker (and note why it's added;Guy Harris1-1/+3
the other unusual ports should be mentioned as well). svn path=/trunk/; revision=37952
2011-07-10Make sure the SID string attached to a dcerpc_call_value has sessionGuy Harris1-1/+7
duration, just as the dcerpc_call_value itself does. svn path=/trunk/; revision=37951
2011-07-10[Automatic manuf, services and enterprise-numbers update for 2011-07-10]Gerald Combs2-11/+105
svn path=/trunk/; revision=37948
2011-07-09Put Modbus/UDP support back.Guy Harris1-1/+27
svn path=/trunk/; revision=37947
2011-07-09If the reply length is < 32, that's an overflow, not a bug in theGuy Harris1-1/+3
dissector (unless you consider the calculation not being done in 64 bits as a bug). For now, toss a ReportedBoundsError. svn path=/trunk/; revision=37946
2011-07-09Per README.developer, we must call subdissectors regardless of whether "tree"Chris Maynard1-1/+7
is NULL or not. With this change, GRE-encapsulated packets (such as IP) should now appear in then endpoint and conversation lists. This was essentially the request made at Sharkfest '11. The actual request was for a "GRE" tab to be added, but that doesn't really make much sense to me. I believe this change should fulfill that request. svn path=/trunk/; revision=37945
2011-07-09Point to the right place.Guy Harris1-1/+1
svn path=/trunk/; revision=37944
2011-07-09Show a hint to read http://wiki.wireshark.org/CaptureSetup/CapturePrivilegesBalint Reczey1-1/+4
when showing the warning about running Wireshark as root Thanks to Evan Huus for the suggestion. svn path=/trunk/; revision=37943
2011-07-08Use a pixbuf for widgets used for icons.Michael Tüxen1-3/+5
svn path=/trunk/; revision=37942
2011-07-08Trivial: add a couple of newlines.Martin Mathieson2-0/+2
svn path=/trunk/; revision=37941
2011-07-08Change the way we scan past characters before the direction indicator.Martin Mathieson1-6/+9
svn path=/trunk/; revision=37940
2011-07-08If no interface is specified on the command line, use the defaultMichael Tüxen1-0/+35
capture interface if given. This patch is provided by Irene Ruengeler. svn path=/trunk/; revision=37939
2011-07-08You can't select/deselct interfaces in the capture/interfacesMichael Tüxen1-3/+23
dialog while you are capturing. This patch is provided by Irene Ruengeler. svn path=/trunk/; revision=37938
2011-07-08Try to make non-libpcap builds compiling.Michael Tüxen1-0/+2
svn path=/trunk/; revision=37937
2011-07-08Use the interfaces from the last capturing process as a starting pointMichael Tüxen1-2/+30
for the next one. Obtained from Irene Ruengeler. svn path=/trunk/; revision=37936
2011-07-08Avoid 'variable set but no used' error from compiler.Jaap Keuter1-1/+4
svn path=/trunk/; revision=37935
2011-07-08Alas, the libpcap API didn't use "void *" where it should have; squelchGuy Harris1-2/+2
some warnings from Clang. svn path=/trunk/; revision=37934
2011-07-08%u suffices, as varargs are widened. (It aslso doesn't cause Clang toGuy Harris1-2/+2
complain.) svn path=/trunk/; revision=37933
2011-07-07The argument of capture_get_if_icon() is used.Michael Tüxen1-1/+1
svn path=/trunk/; revision=37932
2011-07-07Try to unbreak the Mac OS X 10.5 buildbots.Michael Tüxen1-1/+1
svn path=/trunk/; revision=37931
2011-07-07In elem_cell_id_aux(), in the case of an unknown/invalid disc, be sure toChris Maynard1-2/+2
increment the curr_offset by the correct number of bytes; otherwise we can run into an infinite loop condition such as was the case for bug 6044. Reference: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6044 svn path=/trunk/; revision=37930
2011-07-07Bring back interface icons.Michael Tüxen1-7/+23
Obtained from Irene Ruengeler. svn path=/trunk/; revision=37929
2011-07-07Use the interface descriptions again.Michael Tüxen1-10/+43
This patch is from Irene Ruengeler. svn path=/trunk/; revision=37928
2011-07-07From Ali Bahar via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6093Alexis La Goutte1-92/+77
802.11 Association Response Packet's "Status Code" field is imprecisely decoded/described. From me : * Display Reason code in decimal (not Hexa) * Check list from last standard (802.11-2007, 802.11r-2008, 802.11n-2009, 802.11w-2009 & 802.11z-2011) * Add link to 802.11z-2010 documentation svn path=/trunk/; revision=37927
2011-07-07From Ludovic Haessler:Anders Broman2-2/+17
CSN Ack/Nack Description wrongly handled in gsm_rlcmac_dl dissector (3GPP TS 44.060) https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6101 svn path=/trunk/; revision=37926
2011-07-06Fix a crash when using hidden interfaces.Michael Tüxen1-4/+2
svn path=/trunk/; revision=37925