summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2012-01-01Happy New Year!Stig Bjørlykke2-3/+3
svn path=/trunk/; revision=40353
2011-12-31- Update the graphical packagesJörg Mayer2-28/+82
- Newer versions of glib etc require xz. At least Snow Leopard does not provide xz, so (unconditionally) download and install this first. - Put in infrastructure to set up a GTK3 environment instead of GTK2 (not active by default because configure'ing Wireshark still fails for some reason with GTK3 installed). svn path=/trunk/; revision=40352
2011-12-31Put back paragraph break.Guy Harris1-2/+2
svn path=/trunk/; revision=40351
2011-12-31Leave more word-wrapping to the toolkit.Guy Harris1-4/+6
svn path=/trunk/; revision=40350
2011-12-31Add more entries and sort them.Gerald Combs1-20/+40
svn path=/trunk/; revision=40349
2011-12-30Add Gaurav Tungatkar.Chris Maynard1-2/+7
svn path=/trunk/; revision=40348
2011-12-30Fix formatting issues.Stig Bjørlykke1-3/+7
svn path=/trunk/; revision=40347
2011-12-30Fix 'encoding-arg' for ptvcursor_add_with_subtree(): ↵Bill Meier2-7/+7
TRUE=>ENC_LITTLE_ENDIAN, etc svn path=/trunk/; revision=40346
2011-12-30Regenerated packet-h245.c (should have been included in SVN #40311: ↵Bill Meier1-24/+29
add_new_data_source() needed in several places). svn path=/trunk/; revision=40345
2011-12-30From Fred Fierling via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6698Alexis La Goutte2-6/+7
Updates for newest profile identifier database, ZigBee 053298r19 Corrects error in Samsung manufacturer code in r18. svn path=/trunk/; revision=40344
2011-12-30We don't have any links to activate if we don't have pcap.Guy Harris1-0/+2
svn path=/trunk/; revision=40343
2011-12-30Make the links in the "WinPcap doesn't appear to be installed" textGuy Harris1-2/+29
active. Get rid of hard returns, and make it word wrap. svn path=/trunk/; revision=40342
2011-12-30Clean up word wrapping a bit.Guy Harris1-2/+2
svn path=/trunk/; revision=40341
2011-12-30For the "don't have WinPcap" case, put up some stuff in the welcomeGuy Harris1-3/+30
screen discussing that. (XXX - those links should be made live.) svn path=/trunk/; revision=40340
2011-12-30I had a capture_errs.c but capture-wpcap.c eated it.Guy Harris1-1/+0
svn path=/trunk/; revision=40339
2011-12-29Get rid of extra blank line.Guy Harris1-1/+0
svn path=/trunk/; revision=40338
2011-12-29Leave it up to dumpcap to determine whether WinPcap was loaded and, ifGuy Harris2-37/+0
it wasn't, whether it matters; that way you can still capture from a pipe (named or "-" for standard input) even if you don't have WinPcap. svn path=/trunk/; revision=40337
2011-12-29Leave it up to dumpcap to determine whether WinPcap was loaded and, ifGuy Harris1-13/+0
it wasn't, whether it matters; that way you can still capture from a pipe (named or "-" for standard input) even if you don't have WinPcap. svn path=/trunk/; revision=40336
2011-12-29Swallow cant_load_winpcap_err() up into capture-wpcap.c, so thatGuy Harris9-112/+33
anything that uses WinPcap can use that message text in its error messages. svn path=/trunk/; revision=40335
2011-12-29Add an additional DONT_HAVE_PCAP return value from get_interface_list()Guy Harris9-4/+28
and capture_interface_list(). Return it if, on Windows, we ask for the interface list but don't have WinPcap installed. Handle it like CANT_GET_INTERFACE_LIST. svn path=/trunk/; revision=40334
2011-12-29Just hard-code the error for "can't load WinPcap"; the one thatGuy Harris1-7/+15
cant_load_winpcap_err() has some redundant gunk in it. svn path=/trunk/; revision=40333
2011-12-29On Windows, if we can't open a capture device, check whether WinPcap isGuy Harris1-12/+26
loaded and, if not, report that as the problem, rather than suggesting that you didn't specify the proper interface. svn path=/trunk/; revision=40332
2011-12-29Forgot the buffer length argument to g_snprintf().Guy Harris1-2/+4
svn path=/trunk/; revision=40331
2011-12-29If pcap_open_live() or pcap_open() fails due to not having WinPcap,Guy Harris1-0/+4
supply an appropriate error string. svn path=/trunk/; revision=40330
2011-12-29AFAIKT sys/stat.h, sys/types.h, sys/socket.h, winsock2.h, inet_v6_defs.h ↵Bill Meier2-14/+2
#includes aren't needed. also: Add #include <epan/packet.h> (altho included by one of the other includes). svn path=/trunk/; revision=40329
2011-12-29AFAIKT sys/types.h, sys/socket.h, winsock2.h, inet_v6_defs.h #includes ↵Bill Meier1-15/+0
aren't needed. svn path=/trunk/; revision=40328
2011-12-29Do whitespace cleanup; Reformat long lines;Bill Meier1-290/+315
Move proto_register...() to be near the end of the file. svn path=/trunk/; revision=40327
2011-12-29Define GTK_DISABLE_DEPRECATED only if GTK lt 3.2 sinceBill Meier1-1/+5
GTK 3.2 deprecates GtkVBox & GtkHBox which are currently used extensively by Wireshark. svn path=/trunk/; revision=40326
2011-12-29Fix LTP multiple bundle bug and allow LTP/DCCP. Fixes ↵Chris Maynard1-3/+6
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5035 svn path=/trunk/; revision=40325
2011-12-29Set filter text after connecting to filter string callback so theStig Bjørlykke1-5/+6
initial filter will be syntax checked. svn path=/trunk/; revision=40324
2011-12-29Fixed a typo: btyes -> bytesStig Bjørlykke1-2/+2
svn path=/trunk/; revision=40323
2011-12-29Add PLACE_OF_INTEREST_SIGN, a.k.a. the OS X Command key symbol. AnnotateGerald Combs1-4/+18
entries with their decimal and hexadecimal values. Add a modeline blurb. svn path=/trunk/; revision=40322
2011-12-29Add 'extern "C"' wrappers and #include guards to various header files.Gerald Combs28-18/+221
svn path=/trunk/; revision=40321
2011-12-28Prepend the sita_phdr fields with "sita_" to make them lessGerald Combs4-39/+38
collision-prone. svn path=/trunk/; revision=40320
2011-12-28Add some CMake files and directories.Gerald Combs1-0/+7
svn path=/trunk/; revision=40319
2011-12-28Remove some NSIS 1.x cruft.Gerald Combs1-5/+0
svn path=/trunk/; revision=40318
2011-12-28Simplify wireshark.nsi a bit by copying DLLs from the wireshark-gtk2Gerald Combs2-45/+42
directory. This picks up any DEP/ASLR-related changes. Run peflags on more DLLs. svn path=/trunk/; revision=40317
2011-12-28Add "peflags" to the list of required executables. Use it to make sureGerald Combs2-0/+7
the DLLs we use have DEP and ASLR enabled. svn path=/trunk/; revision=40316
2011-12-28Fix Coverity CID 1342: UNUSED_VALUEChris Maynard1-4/+4
svn path=/trunk/; revision=40315
2011-12-28Add missing break; Fixes Coverity CID 1343.Chris Maynard1-15/+17
svn path=/trunk/; revision=40314
2011-12-28min() -> MIN().Chris Maynard1-2/+2
svn path=/trunk/; revision=40313
2011-12-28Fix memory leaks involving tvb_get_string[z]().Chris Maynard11-23/+33
svn path=/trunk/; revision=40312
2011-12-28add_new_data_source() needed in several places.Bill Meier1-0/+5
svn path=/trunk/; revision=40311
2011-12-28Add svn:executable propertyBill Meier1-0/+0
svn path=/trunk/; revision=40310
2011-12-28Add tshark option '-G heuristic-decodes' to dump heuristic dissector tables.Bill Meier4-1/+40
svn path=/trunk/; revision=40309
2011-12-28Remove a not really relevant comment.Bill Meier1-1/+0
svn path=/trunk/; revision=40308
2011-12-28Remove unneeded #includes;Bill Meier1-950/+958
Reformat some long lines; Convert '4 space tabs' to spaces. svn path=/trunk/; revision=40307
2011-12-27Add a "-G ftypes" option, which dumps our supprted FT_… names andGerald Combs12-31/+67
descriptions. Captitalize and fix up the descriptions. Use its output to create the field type list in the wireshark-filter man page. svn path=/trunk/; revision=40306
2011-12-27Tighten up format string used for date/time parse;Bill Meier1-21/+41
Use 'static' in function definitions to match function declarations; Do minor reformatting. svn path=/trunk/; revision=40305
2011-12-27From Jim Young via bug 5580: Only update the time elapsed between the ↵Chris Maynard1-5/+6
previous displayed packet and this packet if the packet is actually displayed. Ref: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5580 svn path=/trunk/; revision=40304