aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
AgeCommit message (Collapse)AuthorFilesLines
2006-09-21Include "rtp_player.h" in "voip_calls.c" if we're supporting the RTPGuy Harris3-2/+8
player, so that we get declartions of rtp_player_init() and add_rtp_packet(). Constify the first argument to add_rtp_packet(), as it's passed a pointer to a const value. svn path=/trunk/; revision=19272
2006-09-18Fix protocol reference link URL.Gerald Combs1-1/+1
svn path=/trunk/; revision=19256
2006-09-15Use the same caption in the Win32 version as in the GTK dialogs: "Wireshark: ↵Ulf Lamping1-1/+1
Select a capture file" -> "Wireshark: Open Capture File" svn path=/trunk/; revision=19238
2006-09-12Move the PortAudio stuff to from version_info.c to gtk/main.c, so it canGuy Harris1-1/+17
use Pa_GetVersionText(). (The word-wrapping stuff appears to work.) svn path=/trunk/; revision=19222
2006-09-12various nmake related build file cleanupsUlf Lamping3-21/+10
svn path=/trunk/; revision=19198
2006-09-10From Alejandro Vaquero:Anders Broman1-2/+2
Need to use HAVE_LIBPORTAUDIO instead of PORTAUDIO_DIR in voip_calls.c And build the windows version with Port audio. svn path=/trunk/; revision=19187
2006-09-10minor cleanup for making codecsBill Meier1-1/+0
svn path=/trunk/; revision=19184
2006-09-05rtp_player.c will now compile with the new API, although it will notJörg Mayer1-3/+72
actually do something useful except to print that the new API is not supported. Adapt acinclude.m4 to provide PORTAUDIO_API_1 and add back the check_message to indicate *why* we are checking for the type. svn path=/trunk/; revision=19148
2006-09-05Move the include of rtp_player.h after the include of stuff it needs,Guy Harris1-6/+7
and include rtp_analysis.h as well, as it declares something else rtp_player.h needs. svn path=/trunk/; revision=19146
2006-09-04Comment #endifs so you can tell what they match.Guy Harris1-2/+2
svn path=/trunk/; revision=19144
2006-09-04Build with rtp_player.c.Guy Harris1-0/+1
svn path=/trunk/; revision=19143
2006-09-04Correct some typos and add some comments.Anders Broman2-7/+7
svn path=/trunk/; revision=19135
2006-09-04The previous way of (not) including portaudio support didn'tJörg Mayer3-8/+8
work reliably (at least it didn't work on my system). Change it to just wrap the rtp_player.[hc] files into a #if defined(...) #endif. svn path=/trunk/; revision=19134
2006-09-03Ad $Id: § and reorder and reformat some comments in the header.Jörg Mayer1-43/+53
svn path=/trunk/; revision=19127
2006-09-02Fix path and name.Anders Broman1-2/+0
svn path=/trunk/; revision=19120
2006-09-02Squelch compiler warnings, and get rid of unused variables andGuy Harris2-29/+25
declarations. Define functions with no arguments as such. Clean up white space. Declare tables in the codec .h files. svn path=/trunk/; revision=19118
2006-09-02Move the codecs into a top-level "codecs" subdirectory; there's noGuy Harris11-215/+4
guarantee that all programs using the codecs will necessarily be using GTK+. svn path=/trunk/; revision=19117
2006-09-01- Add svn:ignoreJörg Mayer1-30/+32
- Replace the completely wrong Makefile.am (was a copy of makefile.nmake) by the version the author sent. As I needed to retrieve it from the ML archives, it may be different from the originally sent version. If someone still has the original version in his inbox, please send it to me. svn path=/trunk/; revision=19107
2006-08-31move value_strings from expert_dialogs into expert.c to remove duplicatesUlf Lamping2-34/+0
keep the highest severity level of the current file (experimental) svn path=/trunk/; revision=19104
2006-08-31dont include config.nmake in the codecs makefile it appears it is not neededRonnie Sahlberg1-1/+1
dont link with libcodec.a 1, this should be a shared library not a static one? 2, its not built on unix so it is missing making unix/linux build work again svn path=/trunk/; revision=19101
2006-08-31the commands for a rule in a amkefile must in classical makefiles start with ↵Ronnie Sahlberg1-3/+3
a TAB not with spaces. svn path=/trunk/; revision=19100
2006-08-31Remove trailing backslash from CFLAGSJaap Keuter1-1/+1
svn path=/trunk/; revision=19099
2006-08-30From Alejandro Vaquero:Anders Broman4-11/+92
- Change the "listen_rtp" to "rtp_player" - Change from a plugin to be part of the core - By default it will not compile with the rtp_player. In order to compile it is necessary to: + For windows: uncomment the line "PORTAUDIO_DIR=$(WIRESHARK_LIBS)\portaudio_v18_1" in config.nmake + For linux: using the "--with-portaudio=yes" svn path=/trunk/; revision=19094
2006-08-30From Alejandro Vaquero:Anders Broman2-0/+1871
- Change the "listen_rtp" to "rtp_player" - Change from a plugin to be part of the core - By default it will not compile with the rtp_player. In order to compile it is necessary to: + For windows: uncomment the line "PORTAUDIO_DIR=$(WIRESHARK_LIBS)\portaudio_v18_1" in config.nmake + For linux: using the "--with-portaudio=yes" svn path=/trunk/; revision=19093
2006-08-30From Alejandro Vaquero:Anders Broman8-0/+203
The "codecs" svn path=/trunk/; revision=19092
2006-08-30Remove a lot of XXX:Ulf Lamping1-23/+102
- add help buttons to the dialogs - the read filter fields are now working (the filter button still not) - PDML export don't need "Packet Format" settings, grey them out - fix a bug in the filter fields coloring function (g_alloc space was too small) svn path=/trunk/; revision=19091
2006-08-30have only one Export/File menu entry for the Win32 dialog, instead of 5 ↵Ulf Lamping1-0/+5
entries leading to exactly the same dialog (with a single setting - the file type - set different) we might want the Unix/GTK version work the same way, as this is how other programs I know work as well ... and making the documentation easier by desribing only one way how it's working svn path=/trunk/; revision=19090
2006-08-30add some file dialog related help pagesUlf Lamping3-4/+48
use file related instead of print related help pages for the export dialogs svn path=/trunk/; revision=19089
2006-08-30seems the height offset 16 seems a bit too small to prevent a scrollbar, ↵Ulf Lamping1-1/+1
using 20 instead svn path=/trunk/; revision=19088
2006-08-30Add SIP response code 494 from RFC 3329Martin Mathieson1-0/+4
svn path=/trunk/; revision=19085
2006-08-29sort the u3.c file into the list alphabeticallyUlf Lamping1-1/+1
svn path=/trunk/; revision=19081
2006-08-29fix #331: add a scrollbar to the dialog. If a fileset contains more than 18 ↵Ulf Lamping1-9/+28
files, use that scrollbar. These 18 files should be displayable even on a 800*600 display. svn path=/trunk/; revision=19080
2006-08-29add u3.h to the distribution files (hopefully this fixes ubuntu buildbot ↵Ulf Lamping1-0/+1
distcheck) svn path=/trunk/; revision=19079
2006-08-28fix #1061: the logic to search for a specific protocol page was missing the ↵Ulf Lamping1-2/+7
changes of the scrollable window indirection svn path=/trunk/; revision=19069
2006-08-27Fixa a typo.Anders Broman1-1/+1
svn path=/trunk/; revision=19055
2006-08-27fix #707: "It's not possible to print each packet on a new page"Ulf Lamping1-37/+55
Win32: detect "form feed" char and create a new page in that case svn path=/trunk/; revision=19054
2006-08-27squelch some compiler warningsUlf Lamping1-1/+1
svn path=/trunk/; revision=19052
2006-08-27fix a warning by removing now unused codeUlf Lamping3-29/+0
svn path=/trunk/; revision=19051
2006-08-26Go back to setting the capture filter to an empty string when we start;Guy Harris1-4/+2
that obviates the need to check for a null capture filter string, and fixes bug 1055. Keep track of whether it was set from the command line, though, so we can catch attempts to set the filter more than once, and attempts to set it when we're not capturing. Clean up white space. svn path=/trunk/; revision=19047
2006-08-26U3 packaging, utility and Wireshark modifications that allows Wireshark to ↵Graeme Lunt5-1/+158
be run from a U3 USB device. For more details see packaging/u3/win32/README.txt svn path=/trunk/; revision=19046
2006-08-26Clean up indentation.Guy Harris1-11/+13
Only define cap_air_w if we have AirPcap. svn path=/trunk/; revision=19041
2006-08-26Get rid of aun unused routine.Guy Harris1-33/+0
svn path=/trunk/; revision=19040
2006-08-26Get rid of unused variable.Guy Harris1-3/+0
svn path=/trunk/; revision=19039
2006-08-25don't show the "Wireless Settings" button if HAVE_AIRPCAP isn't definedUlf Lamping1-6/+8
svn path=/trunk/; revision=19031
2006-08-25don't put "..." in front of a menu itemUlf Lamping1-2/+2
svn path=/trunk/; revision=19030
2006-08-25fix bug #1057: remove "start" completelyUlf Lamping1-5/+0
svn path=/trunk/; revision=19029
2006-08-25ugly workaround for bug #699 (Up/Down buttons don't work properly)Ulf Lamping1-9/+25
After experimenting a bit, this is a GTK bug IMHO, I don't see a better way to simply use the GTK1.x code for now, which is working ok. GTK2.4 was working properly, GTK2.6 and 2.8 has this bug, hopefully GTK2.10 will fix it again. svn path=/trunk/; revision=19025
2006-08-24add WinPcap 4.0 beta 1 to the list of known and tested versionsUlf Lamping1-1/+3
svn path=/trunk/; revision=19021
2006-08-24capture interfaces dialog: use capture stock icons instead of plain text buttonsUlf Lamping7-15/+54
capture info dialog: add a "Help" and use stock buttons svn path=/trunk/; revision=19020
2006-08-23fix #927: Win32: delete an existing file, if the user want's to overwrite a ↵Ulf Lamping2-2/+9
file and confirmed this already svn path=/trunk/; revision=19008