aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
AgeCommit message (Collapse)AuthorFilesLines
2007-10-08VoIP Calls changes: Add the file name to the title window in VoIP calls, ↵Alejandro Vaquero3-30/+124
Voip graph and RTP player windows. Make the calls selection using standard multiple selection using the GTK buildin functions. Add a 'Select All' buttom to the VoIP calls window. svn path=/trunk/; revision=23089
2007-10-05export more types from H.225.0 and H.245 which will be necessary for ↵Tomas Kukosa1-1/+1
H.460.x, H.323 (Annex M,R), H.501 svn path=/trunk/; revision=23069
2007-09-26- Added Tick interval 1 min and 10 min.Stig Bjørlykke1-19/+25
- Draw an empty graph if no items in given tick interval. - Initialize interval_delta so we don't get overlaping x-scale labels. - Some whitespace cleanup. svn path=/trunk/; revision=22992
2007-09-26"fix" some warnings about "might be used uninitialized" variablesJörg Mayer1-2/+2
svn path=/trunk/; revision=22983
2007-09-25In newer versions of GTK+ 2.x, if you have the mouse positioned above aGerald Combs2-55/+49
button that goes from insensitive to sensitive, the button won't respond to mouse clicks. This caused the Coloring Rules dialog behavior reported in bug 699. Work around it by not making the up/down buttons insensitive while we're moving a rule. Fixup whitespace. svn path=/trunk/; revision=22946
2007-09-24Fix bug #1457: Undersized array causing "smashed stack".Bill Meier1-1/+1
svn path=/trunk/; revision=22942
2007-09-24Get rid of the remains of NET-SNMP in the build process.Jörg Mayer1-1/+1
svn path=/trunk/; revision=22934
2007-09-24Get rid of the last warning.Jaap Keuter1-1/+1
svn path=/trunk/; revision=22930
2007-09-24From Chad Singer:Jaap Keuter1-0/+86
I fixed a bug in packet_unistim.c which was causing a 'malformed packet' to appear when an open stream command is read with no endpoint ip (as is sometimes done) I added a simple msg_len check to avoid this. I also added UFTP to the unistim dissector and adjusted the unistim call-detection in voip-info.c to start on an open stream as well as keypresses.. svn path=/trunk/; revision=22929
2007-09-21Spell out each of the units in the status bar. A few people have remarkedGerald Combs1-4/+4
that this would be helpful for new users. svn path=/trunk/; revision=22922
2007-09-17Added functionality to highlight the FCS bytes in Ethernet and IEEE 802.11Stig Bjørlykke2-22/+34
packets in the Packet Details View. This "appendix" bytes are not copied with the Copy functions or in the Export Selected Packet Bytes. svn path=/trunk/; revision=22887
2007-09-16Free some recently added strings when we are done with them.Stephen Fisher2-0/+8
svn path=/trunk/; revision=22878
2007-09-15Add routines under Windows to check if npf.sys is running, and toGerald Combs3-0/+34
fetch the major OS version. If we're running Windows >= 6 (Vista) _and_ npf.sys isn't running, warn the user in Wireshark and TShark. Add a recent prefs item to disable the warning in Wireshark. svn path=/trunk/; revision=22877
2007-09-13Standardize filenames and function names for Follow TCP & SSL stream functionsStephen Fisher10-37/+41
svn path=/trunk/; revision=22870
2007-09-13Finish the major part of merging duplicate code between follow TCP & SSLStephen Fisher4-250/+161
stream functions. svn path=/trunk/; revision=22869
2007-09-11Make the splash screen look just a little bit better.Jaap Keuter1-2/+2
svn path=/trunk/; revision=22843
2007-09-10Some more code merging / cleanup in the Follow TCP & SSL Stream featuresStephen Fisher4-515/+399
svn path=/trunk/; revision=22841
2007-09-10Fix bug in View ! Color Filter ! New ! (Fore|Back)ground Color & etc code Bill Meier1-1/+4
which resulted in a GtkCritcal msg and in disabling the "(Fore|Back)ground Color" button when esc used to close the widget. svn path=/trunk/; revision=22840
2007-09-10From Chad Singer:Jaap Keuter3-3/+441
UNISTIM Tap interface plus call grapher. svn path=/trunk/; revision=22834
2007-09-09translate some german to englishUlf Lamping1-3/+3
svn path=/trunk/; revision=22832
2007-09-09start an experiment to provide MS Visual Studio 2005 solution / project ↵Ulf Lamping1-0/+1030
files for a lot easier debugging. They still use the underlying Makefile.nmake files for the actual build process. svn path=/trunk/; revision=22831
2007-09-06Enable esc key for SCTP Associations window.Bill Meier1-2/+4
svn path=/trunk/; revision=22804
2007-09-05Prevent Gtk-Critical msg when invoking "+Expression" from Filter Toolbar in ↵Bill Meier1-2/+4
main window; Fixes bug reported by Toralf Förster svn path=/trunk/; revision=22795
2007-09-04enable esc for new/edit/delete dialogs; remove some redundant code; Bill Meier1-22/+7
svn path=/trunk/; revision=22782
2007-09-04From Stas Maximov:Anders Broman1-1/+2
RTP analysis' jitter values are thrown off by RTP events http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1076 a) Ephemeral string (packet duration) was inserted into long-term hash of dynamic payloads b) There was no clock_rate mapping for MIME type "telephone-event". svn path=/trunk/; revision=22780
2007-09-03default window_cancel_butoon_cb is not appropriate since a specific cancel ↵Bill Meier1-1/+1
cb is specified. svn path=/trunk/; revision=22774
2007-09-02Fix my previous patch to enable esc on windowBill Meier1-1/+1
svn path=/trunk/; revision=22772
2007-08-31Enable <esc> to cancel window; remove some redundant codeBill Meier1-25/+6
svn path=/trunk/; revision=22763
2007-08-31This patch fixes the following two errors that appear whenSake Blok1-1/+5
configure is run with "--without-plugins" cc1: warnings being treated as errors about_dlg.c: In function ‘about_wireshark_cb’: about_dlg.c:426: warning: unused variable ‘plugins_page’ make[2]: *** [about_dlg.o] Error 1 editcap.c: In function ‘main’: editcap.c:663: error: ‘check_ts’ undeclared (first use in this function) editcap.c:663: error: (Each undeclared identifier is reported only once editcap.c:663: error: for each function it appears in.) make[2]: *** [editcap.o] Error 1 svn path=/trunk/; revision=22761
2007-08-30It seems like capture_stats is working as a correctly implemented pcap_stats.Stig Bjørlykke1-14/+7
Update the Packets count in Capture Interfaces according to this. svn path=/trunk/; revision=22755
2007-08-30Update to reflect new iteration verb 0x6e.Greg Morris1-9/+57
svn path=/trunk/; revision=22748
2007-08-30Added #include <sys/types.h>Stig Bjørlykke1-0/+4
svn path=/trunk/; revision=22745
2007-08-30Change the "--enable-setuid-install" option to install dumpcap and TSharkGerald Combs9-34/+98
setuid instead of Wireshark. Remove the "DANGEROUS" notices, but leave it disabled by default. Whine if the user runs Wireshark or TShark as root. Add a preference to disable the whining. Add a "setuid-root" script that can be used to switch dumpcap and TShark's setuid-ness on and off for development and testing. Update the release notes and README.packaging. svn path=/trunk/; revision=22733
2007-08-26Added "Dot" as new style in IO Graph.Stig Bjørlykke1-2/+13
svn path=/trunk/; revision=22666
2007-08-25Cast as (gfloat)Anders Broman1-1/+1
io->scrollbar_adjustment->value=(gfloat)first_interval; svn path=/trunk/; revision=22653
2007-08-24The code for resizing the scrollbar page_size was a bit strange and didStig Bjørlykke1-6/+2
some strange justifications when having high "tick values" in the graph. Simplified this to fix a problem with scrolling to X Axis zero and a problem with interval values printed in the wrong time position. svn path=/trunk/; revision=22645
2007-08-24Print the first interval in the graph.Stig Bjørlykke1-14/+21
Print zero label string in the X Axis (not centered). Always start the graph with the first interval, not at zero x value. svn path=/trunk/; revision=22644
2007-08-24fix log msg typoRichard van der Hoff1-1/+1
svn path=/trunk/; revision=22637
2007-08-23Move follow_infos into folow_stream.c and initialize it.Gerald Combs2-12/+14
svn path=/trunk/; revision=22613
2007-08-23Fix comment on top of fileStephen Fisher1-1/+1
svn path=/trunk/; revision=22611
2007-08-23Fixed drawing of X Axis decimal values: "0. 50" -> "0.050"Stig Bjørlykke1-2/+2
svn path=/trunk/; revision=22610
2007-08-22autoscroll_button is not used if we don't HAVE_LIBPCAP so put it inside the ↵Jeff Morriss1-2/+2
#ifdef svn path=/trunk/; revision=22589
2007-08-22gcc 4 doesn't like my macro for getting the interface description: it says ↵Jeff Morriss1-10/+12
there's an invalid lvalue in it. I don't see what's wrong with it, but replace the macro with a function. Also: don't include the .xpm files in gtk/main.c if we're building without PCAP (as they're not used in that configuration). svn path=/trunk/; revision=22588
2007-08-22Fix bug http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1757 :Jeff Morriss3-28/+47
Try to call get_interface_descriptive_name() as little as possible (storing the result in capture_opts) to avoid a performance hit during live capture (especially if you have lots of interfaces) and to avoid leaking memory. One issue with this is that capture_opts.c cannot (without adding significant dependencies) set the iface_descr so readers of that field (only gtk/main.c and tshark.c) use a macro to (set if not already set and) get the value of that field. svn path=/trunk/; revision=22587
2007-08-18Add #include needed to get defs for PT_PCMU & etcBill Meier1-0/+1
svn path=/trunk/; revision=22549
2007-08-18Use #defines, rather than raw numbers, for RTP payload types.Guy Harris1-5/+15
Note that we should return an error for payload types we don't support, so the user knows we can't handle the audio. svn path=/trunk/; revision=22547
2007-08-17Instead of converting between 802.11 frequencies and channels umpteenGerald Combs3-97/+92
different ways, add a set of common conversion routines. Add a "Frequency/Channel" column and fill it in where we can. Fix RSSI column printing in PPI. Fix up whitespace along the way. svn path=/trunk/; revision=22538
2007-08-16mark some parameters as unusedUlf Lamping1-3/+3
svn path=/trunk/; revision=22532
2007-08-16experimental feature: dissector filtersUlf Lamping3-13/+75
add the possibility, that a dissector writer can provide (usually non-trivial) display filters specific for the protocol in question (with an example in packet-dcerpc-pn-io.c), that will appear in the GUI svn path=/trunk/; revision=22530
2007-08-16fix build problems under Win32Ulf Lamping1-1/+4
svn path=/trunk/; revision=22523