aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2012-01-18Add some files that didn't get checked in.Guy Harris3-0/+154
svn path=/trunk/; revision=40562
2012-01-18Restructure the recent file code so that recent.c is GUI-independent;Guy Harris41-209/+124
move it to the top-level source directory for now, and move ui/gtk/recent.h to the ui directory. svn path=/trunk/; revision=40561
2012-01-17Add more to dissect_compressed_list()Anders Broman1-25/+135
svn path=/trunk/; revision=40560
2012-01-17Fix warning about a variable that is written to only.Jörg Mayer1-2/+3
svn path=/trunk/; revision=40559
2012-01-17Mark a couple of unused parameters as such.Martin Mathieson1-1/+1
svn path=/trunk/; revision=40558
2012-01-17Enhance dissection of compressed lists.Anders Broman1-11/+217
svn path=/trunk/; revision=40557
2012-01-17Indicate which version of GTK+ is being used to build Wireshark, andGuy Harris1-2/+14
also indicate if we're including the Mac OS X integration library. svn path=/trunk/; revision=40556
2012-01-17Fix typo.Guy Harris1-1/+1
svn path=/trunk/; revision=40555
2012-01-17Fix test (equality in the test command is =, not ==).Guy Harris1-3/+5
Split lines. svn path=/trunk/; revision=40554
2012-01-17Rename the GTK_OK variable to have_gtk; make sure it's always set. TestGuy Harris1-18/+20
it, instead of no_gtk, to see whether we should check for the OS X integration functions; I think no_gtk is an internal detail of the autoconf macros for GTK+, so let's not depend on it. Clean up indentation. svn path=/trunk/; revision=40553
2012-01-16Add packet-lpp.hAnders Broman1-0/+1
svn path=/trunk/; revision=40552
2012-01-16From Pascal Quantin:Anders Broman1-0/+34
Upgrade LTE RRC dissector to v10.4.0 https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6742 Add missing file svn path=/trunk/; revision=40551
2012-01-16From Pascal Quantin:Anders Broman2-1/+51
Upgrade LTE RRC dissector to v10.4.0 https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6742 Add missing files svn path=/trunk/; revision=40550
2012-01-16From Pascal Quantin:Anders Broman9-1563/+10527
Upgrade LTE RRC dissector to v10.4.0 https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6742 svn path=/trunk/; revision=40549
2012-01-16The last GMemChunk usage in Wireshark has been replaced; Error out for any ↵Bill Meier1-16/+16
such usage. svn path=/trunk/; revision=40548
2012-01-16Use GSlice API instead of GMemChunk API for some memory allocation.Bill Meier4-97/+47
svn path=/trunk/; revision=40547
2012-01-16Fix a typo in an error message.Bill Meier1-1/+1
svn path=/trunk/; revision=40546
2012-01-16The frame number is an unsigned integer, so there's no guarantee that itGuy Harris1-3/+3
won't equal (guint32)-1. Fortunately, frame numbers are 1-based, so there *is* a guarantee that it won't equal 0. svn path=/trunk/; revision=40545
2012-01-16The frame number is an unsigned integer, so there's no guarantee that itGuy Harris1-3/+3
won't equal (guint32)-1. Fortunately, frame numbers are 1-based, so there *is* a guarantee that it won't equal 0. svn path=/trunk/; revision=40544
2012-01-16The frame number is an unsigned integer, so there's no guarantee that itGuy Harris1-2/+2
won't equal (guint32)-1. Fortunately, frame numbers are 1-based, so there *is* a guarantee that it won't equal 0. svn path=/trunk/; revision=40543
2012-01-16move alert box for cmake builds as wellJörg Mayer1-1/+1
svn path=/trunk/; revision=40542
2012-01-16Move alert_box.c back up to the top-level directory for now, to fix theGuy Harris2-4/+4
Windows build. We probably want to construct a "ui" (static) library the same way we construct the libwireshark (dynamic) library, out of stuff in the ui directory and the relevant subdirectories. svn path=/trunk/; revision=40541
2012-01-16#include "simple_dialog.h" ==> #include "ui/simple-dislog.h"Bill Meier1-1/+1
svn path=/trunk/; revision=40540
2012-01-16Another fixup for the move of win32 to ui\win32.Guy Harris1-1/+1
svn path=/trunk/; revision=40539
2012-01-16alert_box.c moved to ui/Jörg Mayer1-1/+1
svn path=/trunk/; revision=40538
2012-01-16Just include it from the current directory.Guy Harris1-1/+1
svn path=/trunk/; revision=40537
2012-01-16Another fix for the move of the win32 directory.Guy Harris1-1/+1
svn path=/trunk/; revision=40536
2012-01-16Another change for the move of the top-level win32 directory into the uiGuy Harris1-1/+1
directory. svn path=/trunk/; revision=40535
2012-01-16Fix up for the move from the top-level directory to the ui directory.Guy Harris1-5/+5
svn path=/trunk/; revision=40534
2012-01-16Reflect the move of simple_dialog.h to the ui directory.Guy Harris1-1/+2
svn path=/trunk/; revision=40533
2012-01-16Reflect the move of the top-level win32 directory into the ui directory.Guy Harris6-9/+7
svn path=/trunk/; revision=40532
2012-01-16Make the win32 directory a subdirectory of the ui directory.Guy Harris7-16/+16
svn path=/trunk/; revision=40531
2012-01-16Reflect the move of some header files to the ui directory.Guy Harris6-10/+14
svn path=/trunk/; revision=40530
2012-01-16Move some headers for UI stuff, and the alert_box.c UI-specific file, toGuy Harris125-189/+223
the ui directory. (Perhaps some other files that would be used by all flavors of Wireshark, for any GUI toolkit or for someting such as ncurses, and not for any command-line tool such as TShark, should be moved there as well.) Shuffle some #includes to put the "ui/XXX.h" includes together. svn path=/trunk/; revision=40529
2012-01-16Fix bootstrap parameters for cmakeJörg Mayer1-2/+13
Conditionally display build instructions for the cmake case svn path=/trunk/; revision=40528
2012-01-15Fix a typo in a comment ....Bill Meier1-1/+1
svn path=/trunk/; revision=40527
2012-01-15The name of the target for ui/gtk/libui.lib is "gtk", not "ui\gtk".Guy Harris1-1/+1
svn path=/trunk/; revision=40526
2012-01-15cd ../gtk ==> cd ../ui/gtkBill Meier1-1/+1
svn path=/trunk/; revision=40525
2012-01-15Missed another .. -> ../.. caseJörg Mayer1-1/+1
svn path=/trunk/; revision=40524
2012-01-15More .. -> ../.. changes after gtk/ moveJörg Mayer9-71/+71
svn path=/trunk/; revision=40523
2012-01-15More .. -> ../.. changes after gtk/ moveJörg Mayer1-12/+12
svn path=/trunk/; revision=40522
2012-01-15Clean up after gtk/ move: Makefile.am.inc is now at ../..Jörg Mayer1-1/+1
svn path=/trunk/; revision=40521
2012-01-15Add back revision 40517 which got lost during gtk/ moveJörg Mayer1-18/+12
svn path=/trunk/; revision=40520
2012-01-15Remove gtk-dirJörg Mayer0-0/+0
svn path=/trunk/; revision=40519
2012-01-15Move gtk to ui/gtk.Jörg Mayer322-1271/+1279
This looses the last checkin to gtk, will add this manually back. svn path=/trunk/; revision=40518
2012-01-15Have the time field in the Graph Analyzis windos use the same time format as ↵Anders Broman1-18/+12
used to view the trace. svn path=/trunk/; revision=40517
2012-01-15The warning fix overdid things: It removed functionality.Jörg Mayer2-12/+6
Now I only remove the variable ft and everything looks good. svn path=/trunk/; revision=40516
2012-01-15[Automatic manuf, services and enterprise-numbers update for 2012-01-15]Gerald Combs3-21/+245
svn path=/trunk/; revision=40513
2012-01-15The last commit failed to check in the deleted filesJörg Mayer12-2916/+0
svn path=/trunk/; revision=40512
2012-01-15Rename crypt-xxx to xxxJörg Mayer32-48/+2964
svn path=/trunk/; revision=40511