aboutsummaryrefslogtreecommitdiffstats
path: root/capture_info.c
AgeCommit message (Collapse)AuthorFilesLines
2011-05-19Fix the capture info dialog. Reset the EOF state such that theMichael Tüxen1-10/+13
number get actually updated. svn path=/trunk/; revision=37279
2011-04-21Add a new WTAP_ERR_DECOMPRESS error, and use that for errors discoveredGuy Harris1-0/+8
by the gunzipping code. Have it also supply a err_info string, and report it. Have file_error() supply an err_info string. Put "the file" - or, for WTAP_ERR_DECOMPRESS, "the compressed file", to suggest a decompression error - into the rawshark and tshark errors, along the lines of what other programs print. Fix a case in the Netscaler code where we weren't fetching the error code on a read failure. svn path=/trunk/; revision=36748
2011-03-22Rewrote error reporting to avoid using a 2048 bytes stack buffer.Stig Bjørlykke1-4/+4
Coverity 726. svn path=/trunk/; revision=36245
2010-10-12Define some vars & fcns as static;Bill Meier1-146/+146
Also: do some minor reformmating and cleanup of whitespace. svn path=/trunk/; revision=34492
2008-08-12From Alexey Neyman:Anders Broman1-0/+6
Implement dissector for IPMB (DLT_IPMB_LINUX, 209). svn path=/trunk/; revision=25986
2008-06-24Add gtk/capture_globals.h, to declare global_capture_opts, so files thatGuy Harris1-1/+1
don't need global_capture_opts don't need to have it declared and thus don't need capture_options defined. Include gtk/capture_globals in the files in question. Change some more capture_opts references to refer to global_capture_opts. Change some global_capture_opts references in routines with a capture_opts argument to refer to capture_opts. The structure type is capture_options, not capture_opts; fix some references. Include <sys/types.h>, if it's present, in capture_opts.h, so we get gid_t defined. Clean up indentation. svn path=/trunk/; revision=25574
2008-06-24Have capture_info_ui_create() and capture_info_open() take a pointer toGuy Harris1-2/+2
the capture_opts structure as an argument, rather than just a pointer to the interface name. Don't declare a global "capture_opts" pointer, as we don't define it any more. svn path=/trunk/; revision=25570
2007-12-18Fold the Prism and AVS header dissectors into packet-ieee80211.c, andGuy Harris1-2/+0
have them use least some of the radio-information fields, so that the same field name can be used for multiple radio header types. The AVS header can supply the data rate in bits/second, so have that field be in those units, and make it 64 bits to leave room for the future, Just In Case. Display it as Mb/s, however. svn path=/trunk/; revision=23911
2007-10-05If wtap_open_offline() fails, print the errno tooJeff Morriss1-1/+1
svn path=/trunk/; revision=23077
2007-08-30And include packet-wlancap.hStig Bjørlykke1-0/+1
svn path=/trunk/; revision=22752
2007-08-30Count IEEE 802.11 WLAN AVS packets.Stig Bjørlykke1-0/+3
svn path=/trunk/; revision=22750
2007-06-26Add capture counts for PPI.Gerald Combs1-0/+4
svn path=/trunk/; revision=22195
2006-11-05change all file offsets from long to gint64 so we can - theoretically - ↵Ulf Lamping1-1/+1
handle files > 2GB correct. Please distclean Win32 builds! svn path=/trunk/; revision=19814
2006-05-31Tethereal/tethereal -> TShark/tshark.Gerald Combs1-7/+7
svn path=/trunk/; revision=18268
2006-05-28Ethereal->WiresharkAnders Broman1-7/+7
svn path=/trunk/; revision=18235
2006-05-21name changeRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18197
2006-03-01Clean up indentation a bit.Guy Harris1-4/+109
In "capture_input_new_file()", don't call the callbacks unless we succeed in opening the new file. Have "capture_info_new_file()" return a success/failure indication. Improve the message logged when we fail to open the new file if we're only opening it for the quick packet counts. We really should put up an alert box and give up on the capture at that point. svn path=/trunk/; revision=17437
2006-01-23Call capture_radiotap() when capturing on a device supplying RadiotapGuy Harris1-0/+4
headers. Fix capture_radiotap() to check for padding between the 802.11 header and the 802.11 payload and to call different capture routines depending on whether it's present or not, and create capture_ieee80211_datapad() to handle the case where it's present. Fix capture_radiotap() to convert the Radiotap header length from little-endian, and to do some sanity checking of that length. Fix capture_ieee80211_common() to use the offset supplied to it to fetch the frame control field, as that offset isn't necessarily 0. svn path=/trunk/; revision=17083
2005-12-13don't try to close wtap, if we couldn't load the wiretap fileUlf Lamping1-1/+2
svn path=/trunk/; revision=16771
2005-12-06Clean up capture_enc(), export it, and use it in the capture window.Guy Harris1-2/+4
svn path=/trunk/; revision=16709
2005-12-04Declare "capture_info_packet()"'s as static, to match the definition.Guy Harris1-3/+3
Declare the "pd" argument to be "const guchar *", to match the way packet data is declared elsewhere, and so that if the headers "capture_info.c" includes don't define "u_char" it still compiles. svn path=/trunk/; revision=16671
2005-12-04move the complete functionality of the capture info dialog from ↵Ulf Lamping1-17/+97
capture_loop.c to capture_info.c and call it from capture.c (instead of capture_loop.c). This way, the capture child don't need to now any of the packet_counter things (no epan/packet.h and all alike). Currently the capture_info code will always open another wiretap file instance to build it's own counter values. This isn't optimized for now (next step: use data from cf_continue_tail() somehow). svn path=/trunk/; revision=16669
2005-12-03split some parts of the packet counting functions into their own files ↵Ulf Lamping1-0/+146
capture_info(.c/.h), so we can use it from the main program svn path=/trunk/; revision=16668