aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/gui_utils.c
AgeCommit message (Collapse)AuthorFilesLines
2005-11-06replace *a lot* of file related calls by their GLib counterparts. This is ↵Ulf Lamping1-3/+1
necessary for the switch to GTK 2.6 (at least on WIN32). to do this, I've added file_util.h to wiretap (would file_compat.h be a better name?), and provide compat_macros like eth_open() instead of open(). While at it, move other file related things there, like #include <io.h>, definition of O_BINARY and alike, so it's all in one place. deleted related things from config.h.win32 As of these massive changes, I'm almost certain that this will break the Unix build. I'll keep an eye on the buildbot so hopefully everything is working again soon. svn path=/trunk/; revision=16403
2005-10-06fix a packet_list_freeze / thaw pair, if a return comes in it's wayUlf Lamping1-0/+11
add a g_warning() call if an error occured while reading from capture file (while doing a live update), usually shouldn't happen but is difficult to debug *if* it happens add a new log domain LOG_DOMAIN_MAIN and the standard log handler for it add some (partly commented out) g_log() calls, useful for GUI sequence debugging svn path=/trunk/; revision=16136
2005-10-03major Win32 bugfix: when getting messages from the capture slave, only one ↵Ulf Lamping1-23/+40
message was processed every 200ms (UNIX handles this differently). If more messages were initiated from the slave, they stacked up. This slowed down the display update and slowed down stopping the capture as a lot of messages had to be processed before the close really finished ... Now the timer callback function will call the pipe read function up to 5 times to avoid this, but won't do this more often to prevent "endless blocking". svn path=/trunk/; revision=16091
2005-08-20Explain in more detail the split between the stuff in ui_util.h and inGuy Harris1-2/+4
gtk/gui_utils.h. svn path=/trunk/; revision=15482
2005-08-20- Declare some functions staticJörg Mayer1-1039/+1039
- Add plugins_dlg.h - Include .h files in their respective .c files - Include .h and remove extern declarations in .c files - set eol-style and keywords on gui_utils.[hc] svn path=/trunk/; revision=15471
2005-08-20renamed ui_util.c/.h to gui_utils.c/.h to prevent confusion with identical ↵Ulf Lamping1-0/+1039
named ui_util.h in / dir svn path=/trunk/; revision=15465