aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
AgeCommit message (Collapse)AuthorFilesLines
2006-11-14A fix bug #1138: "Follow TCP Streams gets stream direction wrong if startedStephen Fisher1-10/+33
from a server->client frame." svn path=/trunk/; revision=19898
2006-11-14New feature to automatically highlight the field found when doing a find.Stephen Fisher3-5/+60
This works for both string and hex searches. This resolves feature request bug #776. svn path=/trunk/; revision=19897
2006-11-14nikai@nikai.net:Jörg Mayer5-6/+0
Remaining fixes from: http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1225 svn path=/trunk/; revision=19895
2006-11-14nikai@nikai.net:Jörg Mayer1-1/+0
http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1225 Attempting a simple cleanup of duplicated includes, will attach patch. svn path=/trunk/; revision=19894
2006-11-14From Simon Munton as pointed out by Stephen Fisher:Anders Broman1-0/+4
patch on bug #220 (to main.c. the second part to packet_list.c was done separately for bug 1159 in rev 19735). That patch fixes bug #1205 coincidentally. svn path=/trunk/; revision=19888
2006-11-07Warning fixes (void) instead of (), no newline at end of file.Jörg Mayer3-3/+4
svn path=/trunk/; revision=19845
2006-11-07From Albert Chin:Jaap Keuter1-2/+2
Patch attached to convert usage of ntohl() -> g_ntohl(). On HP-UX, ntohl() isn't available unless you -D_XOPEN_SOURCE_EXTENDED but there are other uses of g_ntohl(). svn path=/trunk/; revision=19844
2006-11-05change all file offsets from long to gint64 so we can - theoretically - ↵Ulf Lamping6-14/+14
handle files > 2GB correct. Please distclean Win32 builds! svn path=/trunk/; revision=19814
2006-11-05it is GtkText in gtk-1.x not GtkTextViewRonnie Sahlberg1-1/+1
svn path=/trunk/; revision=19799
2006-11-05Make the routines that manipulate the hex/text display window take aGuy Harris4-483/+373
GtkWidget * as an argument, rather than a version-of-GTK+-dependent pointer; that way, we need fewer #ifdefs. Use WIDGET_SET_SIZE() instead of #ifdeffed code using gtk_widget_set_usize() or gtk_widget_set_size_request() - WIDGET_SET_SIZE() was created to encapsulate that GTK+ 1.2[.x] vs. 2.x difference. Make some variables not used outside gtk/main.c static. Clean up white space. Clean up handling of return value from load_airpcap() a bit. Use one big #ifdef HAVE_AIRPCAP/#endif for all the AirPcap stuff in gtk/main.c. Attach _U_ to the unused arguments to driver_warning_dialog_cb(), not to the arguments that are being used - and don't include it at all if HAVE_AIRPCAP isn't defined, as it's not used in that case. svn path=/trunk/; revision=19798
2006-11-02Try to fix bug 1043.Jörg Mayer1-2/+2
svn path=/trunk/; revision=19773
2006-10-31From Giorgio Tino: Add a "Don't show this message again" option to an Gerald Combs4-13/+66
AirPcap warning dialog. Fix a callback bug in simple_dialog.c. svn path=/trunk/; revision=19747
2006-10-30Fix for bug 1164 from Stephen Fisher: In the coloring rules edit dialog, setGerald Combs1-19/+1
the foreground color correctly. svn path=/trunk/; revision=19740
2006-10-30From Giorgio Tino: Add support for version 2.0 of the AirPcap driver, Gerald Combs5-67/+327
which has an updated API for WEP key handling. svn path=/trunk/; revision=19736
2006-10-30fix #1159 from Jim Young (should go into 0.99.4): Ulf Lamping1-0/+1
I think I have a fix for this problem. The procedure packet_list_set_selected_row()would do a clist freeze but not a corresponding clist thaw if the list was empty. A one line fix to gtk/packet_list.c appears to fix this problem. svn path=/trunk/; revision=19735
2006-10-26don't use custom build buttons for standard tasks like: Ok, Apply, Cancel.Ulf Lamping1-91/+18
It might be a good idea to add tooltips to the various GUI elements - this makes understanding the GUI *much* faster. svn path=/trunk/; revision=19694
2006-10-25the labels of the airpcap toolbar, e.g. "Not a valid Wireless Interface" are ↵Ulf Lamping1-6/+8
pretty misleading. I've changed it to "AirPcap interface: Not selected" which might be more helpful svn path=/trunk/; revision=19693
2006-10-25Unreffing rci->cursor_pixbuf should cause the pixbuf to be released, soGuy Harris1-0/+1
null out the pointer to it. This prevents a freed pixbuf from being used. svn path=/trunk/; revision=19687
2006-10-25Include the top-level header for CoreFoundation, to see whether it'llGuy Harris1-3/+1
fix a build failure I've seen on L**p*rd. svn path=/trunk/; revision=19685
2006-10-24Put a trailing ellipsis behind the wireless toolbar buttons since they openGerald Combs1-4/+4
a new window. svn path=/trunk/; revision=19673
2006-10-24From Alejandro Vaquero:Anders Broman2-1/+375
For the Radius dissector to add statistics in the "Service Response Time" menu and the tshark stats. svn path=/trunk/; revision=19668
2006-10-24From Alejandro Vaquero:Jaap Keuter1-4/+8
Find attached a patch for this bug. The problem was actually in the "Voip Calls" logic, when the first RTP packet was after the last signaling packet (e.g. a call connected and the release not captured), that caused the RTP to not be added to the graph list and therefor to the player. svn path=/trunk/; revision=19667
2006-10-23Fix for bug 1178. Allow FT_?INT24 BASE_DEC VALs in the expression selection ↵Jaap Keuter1-1/+3
dialog. svn path=/trunk/; revision=19666
2006-10-21Put the ", " before the PortAudio item regardless of whether we haveGuy Harris1-1/+1
PortAudio or not; this fixes 1174. svn path=/trunk/; revision=19653
2006-10-21the text in the about box license page was hard to read because of line ↵Ulf Lamping1-0/+2
breaks at the wrong places. set the minimum size of the widget to 600 pixels - this is working well on my machine. If anyone has problems even with this width (e.g. because of using a larger font) we might increase the size even further. Of course, this increases the overall size of the about dialog, but the other tabs seem to be working well with it. svn path=/trunk/; revision=19652
2006-10-20AirPcap fixes from Giorgio Tino:Gerald Combs4-2/+79
1) When choosing to Merge, Import or Keep decryption keys, key lists will be saved to the preferences file AND into the registry. 2) Now if you check/uncheck the WEP deccryption checkbox in the Preferences..., the AirPcap toolbar will be modified as well. svn path=/trunk/; revision=19646
2006-10-20Don't display the Play button if we're not built with the RTP player.Guy Harris2-12/+27
In tests for whether we're built with the RTP player, test HAVE_LIBPORTAUDIO first - hopefully we can eventually get rid of the test for the GTK+ version number. svn path=/trunk/; revision=19641
2006-10-20Put the period into ITU-T Recommendation names.Guy Harris1-4/+4
Clean up indentation. svn path=/trunk/; revision=19635
2006-10-20Add #defines for the column numbers, and use them.Guy Harris1-48/+57
Clean up indentation. svn path=/trunk/; revision=19634
2006-10-20Clean up indentation.Guy Harris1-41/+42
Fix typos. Null out "pa_stream" when the stream is closed; this appears to prevent some crashes. svn path=/trunk/; revision=19633
2006-10-20Don't destroy something if it doesn't exist.Guy Harris1-1/+2
svn path=/trunk/; revision=19632
2006-10-20Don't pass an uninitialized string to gtk_widget_create_pango_layout();Guy Harris1-1/+1
it supports NULL for "no text". svn path=/trunk/; revision=19631
2006-10-20Don't do things with the RTP channels hash table if it hasn't beenGuy Harris1-10/+15
created yet. svn path=/trunk/; revision=19630
2006-10-20Fix the progress bars.Guy Harris1-7/+18
svn path=/trunk/; revision=19629
2006-10-20Do the word-wrapping in end_string(), once the string is completelyGuy Harris1-2/+6
constructed. Clean up the insertion of ", ". Put the runtime libpcap version into the runtime version info. svn path=/trunk/; revision=19625
2006-10-20Make dumpcap complile again and other minor improvements.Jaap Keuter1-2/+0
svn path=/trunk/; revision=19624
2006-10-19Rename get_epan_and_portaudio_version_info() to get_gui_compiled_info()Gerald Combs1-35/+54
and add version info for AirPcap. Add a corresponding get_gui_runtime_info(). Fix up whitespace. svn path=/trunk/; revision=19620
2006-10-19From Stephen Fisher:Jaap Keuter1-2/+1
Attached is a patch to fix bug #1165. To summarize: "if you click on the button to change the background color and hit ok, it changes not only the name field but also the string field's color away from the red/green [syntax check]." svn path=/trunk/; revision=19619
2006-10-19Clean up the word wrap stuff a bit. (Arguably, that should be done inGuy Harris1-2/+5
the code that displays it - we might, for example, be able to have the About dialog word-wrap to the appropriate size, and word-wrap text printed to the standard output to the terminal width if it's going to a terminal and to 80 or whatever columns otherwise.) Don't report anything in dumpcap about libraries not used by dumpcap. (It was printing a blank, which looked a bit weird.) Fix the handling of _MSC_VER as per Gerald's fix for _MSC_FULL_VER. svn path=/trunk/; revision=19618
2006-10-19Fix up the changes to put the Portaudio information at the end of theGuy Harris1-14/+16
version string, so the information comes out right for applications that don't use Portaudio. Get rid of an extra "with" in the version string for dumpcap. Get rid of an extra blank after the libpcap version string, and get rid of an extra newline before it. Attempt to add more compiler version information and to prettify the MSVC++ version information (both untested). svn path=/trunk/; revision=19613
2006-10-19Include gtk/main.h to declare main_filter_packets().Guy Harris1-0/+1
svn path=/trunk/; revision=19603
2006-10-19Adding license tab to about dialogJaap Keuter1-2/+21
svn path=/trunk/; revision=19601
2006-10-19Add support for:Gerald Combs7-1199/+3417
- The AirPcap Multi-Channel Aggregator (which is marketspeak for an "any" device) - Merging the 802.11 dissector WEP key list with AirPcap's - Decrypting WEP in the adapter, in Wireshark, or not at all Update the release notes. svn path=/trunk/; revision=19599
2006-10-17From Stephen Fisher:Jaap Keuter1-2/+2
While researching another bug in follow_dlg.c, I spotted a different one that causes the from and to hostnames/ip addresses to be the same in the follow tcp stream dialog only with IPv6. svn path=/trunk/; revision=19583
2006-10-17Hide the "Tools" menu if it has no items .Luis Ontanon1-1/+17
svn path=/trunk/; revision=19578
2006-10-17from Stephen Fisher:Ulf Lamping10-15/+15
Here is a patch for spelling typos in comments and strings in the gtk/ directories. svn path=/trunk/; revision=19568
2006-10-16Hide the "Tools" menu if unused.Luis Ontanon1-5/+3
svn path=/trunk/; revision=19559
2006-10-14as Stephen Fisher noted: fix the files header commentUlf Lamping1-2/+2
svn path=/trunk/; revision=19520
2006-10-13remove the experimental display of the highest expert level in the statusbar ↵Ulf Lamping1-0/+27
for now. as long as we haven't solved that TCP checksum offload problems causing checksum errors all the time, this will display the error level for almost every capture done on a local machine - rendering this display pretty useless in it's current form. svn path=/trunk/; revision=19516
2006-10-11When dumping the graph data to a file, don't walk past the end of a buffer.Gerald Combs1-1/+1
Should fix bug 396. svn path=/trunk/; revision=19499