aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/follow_stream.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix various gcc -Wshadow warnings.Bill Meier2010-01-291-11/+11
| | | | svn path=/trunk/; revision=31730
* Prototype follow_add_to_gtk_text().Stig Bjørlykke2009-10-051-4/+4
| | | | | | Made some functions static. svn path=/trunk/; revision=30323
* Fix the build.Gerald Combs2009-07-021-1/+1
| | | | svn path=/trunk/; revision=28916
* Updates to create_tempfile:Gerald Combs2009-07-011-3/+4
| | | | | | | - Use g_get_tmp_dir, just like get_tempfile_path. - Don't make the caller worry about the path buffer length. svn path=/trunk/; revision=28915
* follow_stream: Enable "check for file overwrite" (if GTK 2.8 or greater);Bill Meier2009-06-021-0/+3
| | | | svn path=/trunk/; revision=28600
* follow_stream: rework "save as" slightly:Bill Meier2009-06-011-15/+46
| | | | | | | | | | | | - Prevent "dead" save-as window if unable to open file for write or if a directory is entered as the filename; Work-around is to always kill save-as window whether success or an error causing alert-box popup; - Fix a memory leak. - Define certain functions used only in follow_stream.c as static; (Remove declarations for them from follow_stream.h) svn path=/trunk/; revision=28574
* From Roland Illig via bug 1764:Gerald Combs2009-05-171-3/+4
| | | | | | | | | | | | The hexdump of the "Follow TCP Stream" feature creates a file that is about 160 characters wide. That's far beyond the size of my screen. The appended patch suggests a narrower layout. From me: Add a note about prepending each line with "C" or "S" instead. svn path=/trunk/; revision=28386
* follow_stream: Oops: revert making functions static.Bill Meier2009-04-271-16/+16
| | | | svn path=/trunk/; revision=28178
* follow_stream: Don't load follow text twice when initially building the window;Bill Meier2009-04-271-18/+19
| | | | | | Also: Define various internal functions as static; svn path=/trunk/; revision=28177
* More Win64 fixes.Gerald Combs2009-04-161-3/+3
| | | | svn path=/trunk/; revision=28062
* [Trivial] fix some wording in a commentBill Meier2009-03-161-1/+1
| | | | svn path=/trunk/; revision=27743
* Replace use of ("prohibited") tmpnam() with codeBill Meier2009-03-091-8/+28
| | | | | | | | | adapted from print_dlg.c; Also: fix some bugs wherein an incorrect filename could be printed if an error occurred opening/writing/etc an output file. svn path=/trunk/; revision=27680
* Fix some simple cases of GTK2 deprecated API usage by using a renamed or ↵Bill Meier2008-06-291-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | equivalent API gtk_container_border_width() ==> gtk_container_set_border_width() gtk_container_children() ==> gtk_container_get_children() gtk_entry_new_with_max_length() ==> gtk_entry_new(); gtk_entry_set_max_length() gtk_menu_append() ==> gtk_menu_shell_append() gtk_menu_prepend() ==> gtk_menu_shell_prepend() gtk_notebook_set_page() ==> gtk_notebook_set_current_page() gtk_paned_gutter_size() ==> gtk_paned_set_gutter_size() gtk_radio_button_group() ==> gtk_radio_button_get_group() gtk_signal_connect() ==> g_signal_connect() gtk_signal_disconnect() ==> g_signal_handler_disconnect() gtk_signal_emit_by_name() ==> g_signal_emit_by_name() gtk_signal_handler_block_by_data() ==> g_signal_handlers_block_matched() gtk_signal_handler_block_by_func() ==> g_signal_handlers_block_by_func() gtk_signal_handler_unblock_by_data() ==> g_signal-handlers_unblock_matched() gtk_signal_handler_unblock_by_func() ==> g_signal-handlers_unblock_by_func() gtk_spin_button_get_value_as_float() ==> gtk_spin_button_get_value() gtk_toggle_button_set_state() ==> gtk_toggle_button_set_active() svn path=/trunk/; revision=25634
* Removed the usage of topic_available() as we now have all topics.Stig Bjørlykke2008-06-211-14/+7
| | | | svn path=/trunk/; revision=25505
* Change references to follow TCP stream to just follow stream to reflectStephen Fisher2008-05-231-3/+3
| | | | | | | | the multi-purpose nature of the follow_stream.c code (you can also follow SSL and UDP streams with it.) svn path=/trunk/; revision=25363
* Remove backward compability code for GTK 2.2.1 and lower since we onlyStephen Fisher2008-05-231-8/+0
| | | | | | | support GTK 2.4+ now. svn path=/trunk/; revision=25361
* Move the file utility functions from wiretap to libwsutil so thatJeff Morriss2008-05-221-6/+6
| | | | | | | | | libwireshark (and the plugins using those functions) do not depend on wiretap on Windows. While doing that, rename the eth_* functions to ws_*. svn path=/trunk/; revision=25354
* Replace an option menu (deprecated as of GTK+ 2.4) with a combo boxStephen Fisher2008-04-291-46/+32
| | | | | | | (GTK+ 2.4+). svn path=/trunk/; revision=25198
* Remove all GTK+ < 2.4 code and minimum version checks.Stephen Fisher2008-04-271-26/+0
| | | | svn path=/trunk/; revision=25182
* move all code from color.c into color_utils.cUlf Lamping2008-04-131-1/+1
| | | | | | | remove color.c rename colors.h into color_utils.h (hopefully this reduces confusion to /color.h) svn path=/trunk/; revision=24974
* use the ending "_win32" for every windows specific fileUlf Lamping2008-04-131-1/+1
| | | | svn path=/trunk/; revision=24972
* sort #includes by directoriesUlf Lamping2008-04-131-12/+13
| | | | svn path=/trunk/; revision=24968
* move stock icon code from toolbar.c into specific stock_icons file(s)Ulf Lamping2008-04-121-1/+1
| | | | svn path=/trunk/; revision=24921
* third round to replace SIGNAL_CONNECT with g_signal_connectUlf Lamping2008-04-111-25/+24
| | | | svn path=/trunk/; revision=24914
* replace all appearances of BUTTON_NEW_FROM_STOCK with GTK2's ↵Ulf Lamping2008-04-111-3/+3
| | | | | | gtk_button_new_from_stock svn path=/trunk/; revision=24904
* OBJECT_..._DATA --> g_object_..._dataBill Meier2008-04-111-11/+11
| | | | svn path=/trunk/; revision=24895
* Remove GTK1 code.Stephen Fisher2008-04-051-45/+5
| | | | svn path=/trunk/; revision=24776
* Fix bug #2286: Folow TCP stream window [needs line wrapping turned back on]Stephen Fisher2008-03-281-0/+9
| | | | | | | wrapped lines svn path=/trunk/; revision=24742
* Remove unterminated comment to fix compile Stephen Fisher2008-03-261-1/+0
| | | | svn path=/trunk/; revision=24733
* Make the default save format "Raw". Make it easy to change the defaultGerald Combs2008-03-261-27/+35
| | | | | | format. svn path=/trunk/; revision=24732
* Fix bug #1212: Follow SSL/UDP Stream gets direction wrong ...Stephen Fisher2008-03-221-0/+1
| | | | svn path=/trunk/; revision=24715
* Fixed server and client packet count in C Array variables inStig Bjørlykke2008-03-121-4/+3
| | | | | | | Follow TCP/UDP/SSL Stream. This error was introduced when merging duplicate code between TCP & SSL stream functions, r22869. svn path=/trunk/; revision=24610
* s/stat/eth_stat/ and s/unlink/eth_unlink/ to avoid non-ASCII filename ↵Jeff Morriss2007-11-261-1/+1
| | | | | | problems on Windows. svn path=/trunk/; revision=23605
* - Future improve/clean up the now generic follow stream codeStephen Fisher2007-11-031-6/+23
| | | | | | | - Add "Follow UDP Stream" feature svn path=/trunk/; revision=23346
* Finish the major part of merging duplicate code between follow TCP & SSLStephen Fisher2007-09-131-2/+134
| | | | | | | stream functions. svn path=/trunk/; revision=22869
* Some more code merging / cleanup in the Follow TCP & SSL Stream featuresStephen Fisher2007-09-101-19/+303
| | | | svn path=/trunk/; revision=22841
* Move follow_infos into folow_stream.c and initialize it.Gerald Combs2007-08-231-11/+13
| | | | svn path=/trunk/; revision=22613
* fix build problems under Win32Ulf Lamping2007-08-161-1/+4
| | | | svn path=/trunk/; revision=22523
* Initial work on merging common code between follow TCP & SSL stream featuresStephen Fisher2007-08-161-0/+691
svn path=/trunk/; revision=22520