aboutsummaryrefslogtreecommitdiffstats
path: root/file.c
AgeCommit message (Expand)AuthorFilesLines
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
2014-02-25Fix file.c: Dereference of null pointer (clang analyzer)Hadriel Kaplan1-4/+4
2014-02-25Wireshark: Add option to choose format type of capture fileMichal Labedzki1-5/+5
2014-02-07Replace "svn" with "git" all over the place.Gerald Combs1-1/+1
2014-01-22Don't write out packets that have a "captured length" bigger than we'reGuy Harris1-4/+31
2014-01-21Check the return of wtap_dump_close() even if we've gotten a read error;Guy Harris1-3/+10
2014-01-13Fix crash when exporting to CSV filePascal Quantin1-1/+1
2014-01-02No seek-read routines use the length argument, so eliminate it fromGuy Harris1-2/+1
2013-12-05int -> gbooleanMartin Kaiser1-1/+1
2013-11-24Rmove packet_info argument from packet_list_append(), never used.Jakub Zawadzki1-1/+1
2013-11-17Move the epan/filesystem.c routines to wsutil; they're not specific toGuy Harris1-1/+1
2013-11-10Add missing includes in order to remove exceptions.h from proto.h (next commit).Jakub Zawadzki1-0/+1
2013-11-08The "file types" we have are actually combinations of types andGuy Harris1-11/+12
2013-10-20Try to fix recent test failures (wild guess, can't reproduce).Jakub Zawadzki1-8/+6
2013-10-20wireshark: use epan_dissect_reset(), rawshark: fix missing epan_dissect_clean...Jakub Zawadzki1-101/+156
2013-10-11cf_start_tail() is (now) just a wrapper around cf_open(). Get rid of it and ...Jeff Morriss1-9/+0
2013-10-09g_list_prepend() is faster.Anders Broman1-1/+1
2013-09-22Get rid of struct addrinfo, use the hastables for name resolution instead.Anders Broman1-5/+4
2013-09-05Try to fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9106 :Pascal Quantin1-0/+1
2013-08-14Global variables considered harmful.Guy Harris1-53/+41
2013-08-13Only rescan packets if we have packets to rescan. Fixes at least the surfaceEvan Huus1-1/+3
2013-08-07It's not necessary to call epan_free() in cf_open(): cf_close() (which isJeff Morriss1-2/+3
2013-08-01use explicit cast to squelch compiler warningMartin Kaiser1-1/+1
2013-08-01Remove fdata->opt_comment, add pkt_comment to pinfoJakub Zawadzki1-20/+106
2013-07-30Remove interface_id, pack_flags from frame_data structure.Jakub Zawadzki1-4/+4
2013-07-23Make a routine not used outside file.c static.Guy Harris1-1/+1
2013-07-22Abuse epan_t more: add callback to get interface name.Jakub Zawadzki1-1/+2
2013-07-21Fix file.c:112:1: error: ‘static’ is not at beginning of declarationEvan Huus1-1/+1
2013-07-21Replace relative timestamp with reference frame number. Saves 16B per frame.Jakub Zawadzki1-15/+15
2013-07-21Add helper function to epan_session which can be used to get absolute timesta...Jakub Zawadzki1-4/+36
2013-07-21Some work on multi file dissectionJakub Zawadzki1-22/+21
2013-07-16Move merge.{h,c} into wiretap: these modules use wiretap to merge files.Jeff Morriss1-13/+14
2013-07-12Move the print modules into epan.Jeff Morriss1-2/+3
2013-07-11Move some more modules into epan.Jeff Morriss1-1/+0
2013-07-11packet dissection now takes pointer to tvb instead of guint8 dataJakub Zawadzki1-13/+14
2013-06-29Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-4/+0
2013-06-26Move tempfile.{h,c} into wsutil.Jeff Morriss1-1/+1
2013-06-25Fix build with packet editor enabled. (Fix a typo while we're at it.)Guy Harris1-1/+2
2013-06-20inform expert info layer about the current number of packet commentsMartin Kaiser1-0/+3
2013-06-19Allow for column headers not to be printed in order to make it possible to ex...Chris Maynard1-3/+7
2013-06-16Have the seek-read routines take a Buffer rather than a guint8 pointerGuy Harris1-19/+39
2013-04-13Don't take the shortcut of moving/copying the existing file if we have a nameEvan Huus1-14/+44
2013-04-02Rename cf_not_saved() to cf_has_unsaved_data() to clarify what itGuy Harris1-1/+1
2013-04-01Add routines to file.c to indicate whether:Guy Harris1-5/+93
2013-04-01Add a wtap_dump_can_write() routine that indicates whether WiretapGuy Harris1-14/+8
2013-04-01Define a collection of bits for different types of capture file comments.Guy Harris1-4/+10
2013-03-27From Hadriel Kaplan via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8223Evan Huus1-12/+1
2013-03-21Make internal functions static.Anders Broman1-1/+1
2013-03-20 From beroset:Bill Meier1-4/+4
2013-03-15Fix the leaking of packet comments, i.e. the rest ofEvan Huus1-4/+2