aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/export_object_smb.c
AgeCommit message (Collapse)AuthorFilesLines
2011-07-11Remaining GLIB_CHECK_VERSION and GTK_CHECK_VERSION in the gtk directory.Gerald Combs1-26/+0
svn path=/trunk/; revision=37973
2011-05-17Make some routines static that aren't used outside the source file inGuy Harris1-1/+1
which they're defined. Include some header files that declare functions in the source files that define the functions. Declare packet_list_get_type() in gtk/packet_list_store.h, as it defines a macro that uses that function. svn path=/trunk/; revision=37223
2011-05-17This ain't C++; you have to put "void" in as the argument list ofGuy Harris1-1/+1
functions that take no arguments, otherwise the function is treated as a crufty old C function with undeclared arguments. svn path=/trunk/; revision=37211
2011-05-03From Jose Pico via bug #5884: Corrected export_object smb segmentationStephen Fisher1-35/+10
fault svn path=/trunk/; revision=36979
2011-04-21Removed some unneeded assignments.Stig Bjørlykke1-2/+0
svn path=/trunk/; revision=36778
2011-01-24Fix crash when doing File ! Export ! Objects ! SMB.Bill Meier1-146/+125
[Essentially: simplify the code used to test for duplicate packets]. Fixes Bug #5337: http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5337 Also: - Fix "divide by 0" which caused garbage for display of a percent value; - Remove some unneeded #includes; svn path=/trunk/; revision=35638
2010-10-12Define some fcns & vars as static;Bill Meier1-4/+7
Rename g_capture_in_progress to gbl_capture_in_progress (capture_if_dlg.c) Do some whitespace cleanup. svn path=/trunk/; revision=34490
2010-10-05Add (a copy of) glib's g_strv_length() if we have glib < 2.6Jeff Morriss1-31/+57
svn path=/trunk/; revision=34380
2010-10-04From Jose Pico via bug 5272:Stig Bjørlykke1-2/+4
Export Object SMB functionality fixes. svn path=/trunk/; revision=34365
2010-06-17Don't refer to file-static variables as extern (my gcc didn't like it).Martin Mathieson1-5/+0
svn path=/trunk/; revision=33241
2010-06-16Go back to 64-bit sizes, but, before passing those sizes toGuy Harris1-9/+27
g_try_malloc() or g_try_realloc(), check whether they fit in a gsize and: if not, just pretend the allocation failed; if so, cast them to gsize to squelch compiler warnings. svn path=/trunk/; revision=33239
2010-06-16Use gsize for file sizes.Stig Bjørlykke1-4/+4
svn path=/trunk/; revision=33235
2010-06-15From David Perez & Jose Pico from Taddong S.L. via bug 4451:Stig Bjørlykke1-0/+453
This functionality keeps track of all SMB objects contained in a capture, and is able to export to a file a full or partial captured file that has been transfered through the SMB protocol. In a partial capture, the holes produced by the non-captured information are filled out with zeros. It includes the needed modifications of the SMB dissector in the way it keeps track of the opened SMB files and also to feed the eo_smb tap listener. svn path=/trunk/; revision=33227