aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/follow_stream.c
AgeCommit message (Collapse)AuthorFilesLines
2011-02-07And even more -DGSEAL_ENABLE cleanup for GTK+ 3.0 preparation...Stephen Fisher1-1/+1
svn path=/trunk/; revision=35849
2011-01-31Use {'0', ...} type initializer for fixed length character arrays.Bill Meier1-1/+1
svn path=/trunk/; revision=35735
2011-01-22Resolve bug #2520 by moving the follow stream direction combo box above theStephen Fisher1-32/+36
buttons to make more room for hostnames. svn path=/trunk/; revision=35625
2010-12-06Revert r35132 so that a better fix can be implemented that doesn't breakStephen Fisher1-3/+4
non-printable non-UTF8 ASCII characters such as in binary streams. svn path=/trunk/; revision=35136
2010-12-06Change isprint() calls in follow_stream.c (shared code that supports FollowStephen Fisher1-4/+3
TCP, UDP and SSL streams) to g_unichar_isprint() so that UTF-8 characters are displayed properly. svn path=/trunk/; revision=35132
2010-11-26Fix the rest of the include paths after the move of native win32 code to ↵Stephen Fisher1-1/+1
win32 and out of the gtk directory in r35032 svn path=/trunk/; revision=35034
2010-01-29Fix various gcc -Wshadow warnings.Bill Meier1-11/+11
svn path=/trunk/; revision=31730
2009-10-05Prototype follow_add_to_gtk_text().Stig Bjørlykke1-4/+4
Made some functions static. svn path=/trunk/; revision=30323
2009-07-02Fix the build.Gerald Combs1-1/+1
svn path=/trunk/; revision=28916
2009-07-01Updates to create_tempfile:Gerald Combs1-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
2009-06-02follow_stream: Enable "check for file overwrite" (if GTK 2.8 or greater);Bill Meier1-0/+3
svn path=/trunk/; revision=28600
2009-06-01follow_stream: rework "save as" slightly:Bill Meier1-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
2009-05-17From Roland Illig via bug 1764:Gerald Combs1-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
2009-04-27follow_stream: Oops: revert making functions static.Bill Meier1-16/+16
svn path=/trunk/; revision=28178
2009-04-27follow_stream: Don't load follow text twice when initially building the window;Bill Meier1-18/+19
Also: Define various internal functions as static; svn path=/trunk/; revision=28177
2009-04-16More Win64 fixes.Gerald Combs1-3/+3
svn path=/trunk/; revision=28062
2009-03-16[Trivial] fix some wording in a commentBill Meier1-1/+1
svn path=/trunk/; revision=27743
2009-03-09Replace use of ("prohibited") tmpnam() with codeBill Meier1-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
2008-06-29Fix some simple cases of GTK2 deprecated API usage by using a renamed or ↵Bill Meier1-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
2008-06-21Removed the usage of topic_available() as we now have all topics.Stig Bjørlykke1-14/+7
svn path=/trunk/; revision=25505
2008-05-23Change references to follow TCP stream to just follow stream to reflectStephen Fisher1-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
2008-05-23Remove backward compability code for GTK 2.2.1 and lower since we onlyStephen Fisher1-8/+0
support GTK 2.4+ now. svn path=/trunk/; revision=25361
2008-05-22Move the file utility functions from wiretap to libwsutil so thatJeff Morriss1-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
2008-04-29Replace an option menu (deprecated as of GTK+ 2.4) with a combo boxStephen Fisher1-46/+32
(GTK+ 2.4+). svn path=/trunk/; revision=25198
2008-04-27Remove all GTK+ < 2.4 code and minimum version checks.Stephen Fisher1-26/+0
svn path=/trunk/; revision=25182
2008-04-13move all code from color.c into color_utils.cUlf Lamping1-1/+1
remove color.c rename colors.h into color_utils.h (hopefully this reduces confusion to /color.h) svn path=/trunk/; revision=24974
2008-04-13use the ending "_win32" for every windows specific fileUlf Lamping1-1/+1
svn path=/trunk/; revision=24972
2008-04-13sort #includes by directoriesUlf Lamping1-12/+13
svn path=/trunk/; revision=24968
2008-04-12move stock icon code from toolbar.c into specific stock_icons file(s)Ulf Lamping1-1/+1
svn path=/trunk/; revision=24921
2008-04-11third round to replace SIGNAL_CONNECT with g_signal_connectUlf Lamping1-25/+24
svn path=/trunk/; revision=24914
2008-04-11replace all appearances of BUTTON_NEW_FROM_STOCK with GTK2's ↵Ulf Lamping1-3/+3
gtk_button_new_from_stock svn path=/trunk/; revision=24904
2008-04-11OBJECT_..._DATA --> g_object_..._dataBill Meier1-11/+11
svn path=/trunk/; revision=24895
2008-04-05Remove GTK1 code.Stephen Fisher1-45/+5
svn path=/trunk/; revision=24776
2008-03-28Fix bug #2286: Folow TCP stream window [needs line wrapping turned back on]Stephen Fisher1-0/+9
wrapped lines svn path=/trunk/; revision=24742
2008-03-26Remove unterminated comment to fix compile Stephen Fisher1-1/+0
svn path=/trunk/; revision=24733
2008-03-26Make the default save format "Raw". Make it easy to change the defaultGerald Combs1-27/+35
format. svn path=/trunk/; revision=24732
2008-03-22Fix bug #1212: Follow SSL/UDP Stream gets direction wrong ...Stephen Fisher1-0/+1
svn path=/trunk/; revision=24715
2008-03-12Fixed server and client packet count in C Array variables inStig Bjørlykke1-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
2007-11-26s/stat/eth_stat/ and s/unlink/eth_unlink/ to avoid non-ASCII filename ↵Jeff Morriss1-1/+1
problems on Windows. svn path=/trunk/; revision=23605
2007-11-03- Future improve/clean up the now generic follow stream codeStephen Fisher1-6/+23
- Add "Follow UDP Stream" feature svn path=/trunk/; revision=23346
2007-09-13Finish the major part of merging duplicate code between follow TCP & SSLStephen Fisher1-2/+134
stream functions. svn path=/trunk/; revision=22869
2007-09-10Some more code merging / cleanup in the Follow TCP & SSL Stream featuresStephen Fisher1-19/+303
svn path=/trunk/; revision=22841
2007-08-23Move follow_infos into folow_stream.c and initialize it.Gerald Combs1-11/+13
svn path=/trunk/; revision=22613
2007-08-16fix build problems under Win32Ulf Lamping1-1/+4
svn path=/trunk/; revision=22523
2007-08-16Initial work on merging common code between follow TCP & SSL stream featuresStephen Fisher1-0/+691
svn path=/trunk/; revision=22520