aboutsummaryrefslogtreecommitdiffstats
path: root/fileset.c
AgeCommit message (Collapse)AuthorFilesLines
2011-04-10Define ws_statb64 to be the appropriate "struct XXX" for aguy1-1/+1
64-bit-file-size-capable stat call, and use it for ws_fstat64(). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36545 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-10Add ws_fstat64(), defined to be fstat on UN*X and _fstati64 on Windows.guy1-1/+1
Use it in some places where we're getting the file size. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36544 f5534014-38df-0310-8fa8-9805f1628bb7
2010-10-12Define some vars & fcns as static;wmeier1-5/+5
Also: do some minor reformmating and cleanup of whitespace. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34492 f5534014-38df-0310-8fa8-9805f1628bb7
2010-08-20When freeing the fileset entries, free the entry itself too.morriss1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33865 f5534014-38df-0310-8fa8-9805f1628bb7
2010-03-02From Hitoshi Irino:etxrab1-11/+11
Displaying value and type of IPFIX reverse PEN elements in data records https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4399 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32082 f5534014-38df-0310-8fa8-9805f1628bb7
2009-11-10Removed some unused assignments.stig1-2/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30920 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-26(FWIW) One step towards including stdio.h & stdlib.h only when req'd.wmeier1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29568 f5534014-38df-0310-8fa8-9805f1628bb7
2009-04-16Fix the last(?) of the Win64 compilation problems.gerald1-3/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28065 f5534014-38df-0310-8fa8-9805f1628bb7
2008-10-27ETH -> WS updates.gerald1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@26570 f5534014-38df-0310-8fa8-9805f1628bb7
2008-05-22Move the file utility functions from wiretap to libwsutil so thatmorriss1-10/+10
libwireshark (and the plugins using those functions) do not depend on wiretap on Windows. While doing that, rename the eth_* functions to ws_*. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25354 f5534014-38df-0310-8fa8-9805f1628bb7
2007-07-14Fix yet more casts of ctype.h macro arguments - and fix some cases whereguy1-1/+1
we were passing an uncasted "char" to those macros. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@22306 f5534014-38df-0310-8fa8-9805f1628bb7
2006-11-30suffix in file set is optionalkukosa1-2/+5
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20023 f5534014-38df-0310-8fa8-9805f1628bb7
2006-08-29fix a minor bug: don't show a single file twice in the fileset dialogulfl1-3/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19078 f5534014-38df-0310-8fa8-9805f1628bb7
2006-05-21name changesahlberg1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18197 f5534014-38df-0310-8fa8-9805f1628bb7
2005-11-07Use eth_dir_open(), not g_dir_open(); g_dir_open() isn't available inguy1-2/+2
GLib 1.2[.x]. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@16412 f5534014-38df-0310-8fa8-9805f1628bb7
2005-11-06replace *a lot* of file related calls by their GLib counterparts. This is ↵ulfl1-33/+9
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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@16403 f5534014-38df-0310-8fa8-9805f1628bb7
2005-08-18while sorting the entries, don't use the file creation date but the filename ↵ulfl1-4/+4
for comparison git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15411 f5534014-38df-0310-8fa8-9805f1628bb7
2005-08-14Some 'no previous declararion' warning fixesjmayer1-4/+4
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15355 f5534014-38df-0310-8fa8-9805f1628bb7
2005-05-18do some code cleanup (from the previous commit) and close the directories ↵ulfl1-23/+36
opened with opendir/g_dir_open git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@14394 f5534014-38df-0310-8fa8-9805f1628bb7
2005-05-18don't crash, if the given filename doesn't contain a dot e.g. 'test123'ulfl1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@14390 f5534014-38df-0310-8fa8-9805f1628bb7
2005-04-30(hopefully) removed various gcc warningsulfl1-0/+4
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@14241 f5534014-38df-0310-8fa8-9805f1628bb7
2005-04-30fix buildbot reported problems (unix related), part 4, more GLib 1.x relatedulfl1-2/+4
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@14240 f5534014-38df-0310-8fa8-9805f1628bb7
2005-04-30fix buildbot reported problems (unix related), part 3, don't use GError with ↵ulfl1-4/+4
GLib 1.x git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@14239 f5534014-38df-0310-8fa8-9805f1628bb7
2005-04-29fix buildbot reported problems (unix related), part 2, add some missing ↵ulfl1-0/+5
#includes git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@14235 f5534014-38df-0310-8fa8-9805f1628bb7
2005-04-29fix buildbot reported problems (unix related), part 1ulfl1-4/+5
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@14234 f5534014-38df-0310-8fa8-9805f1628bb7
2005-04-29add a new feature: list the files of a "File Set" (set of files generated by ↵ulfl1-0/+389
capturing "Multiple Files"/ringbuffer) and jump from one file of it to the next/previous one git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@14231 f5534014-38df-0310-8fa8-9805f1628bb7