aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2014-01-08TFShark (Terminal Fileshark) v.001. Bug 9607 ↵Michael Mann22-21/+3189
(https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9607) This is a VERY PRELIMINARY version of tfshark. It's an attempt to jumpstart FileShark and its architecture. Right now it's mostly just a very stripped down version of tshark with all of the necessary build modifications (including now building filetap library since tfshark depends on it) This code has helped me identify what I believe to be all of the necessary layers for a complete fileshark architecture. And those layers will slowly be added in time (patches always welcome!). svn path=/trunk/; revision=54646
2014-01-08Have HAVE_SPANDSP just go over entire file rather than individual functions.Michael Mann2-26/+6
svn path=/trunk/; revision=54645
2014-01-08Need <strsafe.h> for StringCchPrintf().Guy Harris1-0/+1
svn path=/trunk/; revision=54644
2014-01-08Explicitly reject two-pass live capture, it doesn't work anyways.Evan Huus1-0/+8
svn path=/trunk/; revision=54643
2014-01-08Move UAT xton() to wsutil libraryJakub Zawadzki8-70/+51
Use ws_xton() in few more places. svn path=/trunk/; revision=54642
2014-01-07As checkAPIs.pl says, "use StringCchPrintf".Guy Harris1-1/+1
svn path=/trunk/; revision=54641
2014-01-07From Michal Labedzki viaEvan Huus1-3/+81
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9610 USB: Dissect Application-specific Interface Class/Subclass/Protocols svn path=/trunk/; revision=54640
2014-01-07Update documentation to match change in r54630:Jörg Mayer1-1/+1
"The capabilities for dumpcap don't need to be inheritable." svn path=/trunk/; revision=54639
2014-01-07Rework compiler flag detection to be able to handle changedJörg Mayer1-23/+18
order of flags svn path=/trunk/; revision=54638
2014-01-07Remove svn:executable attribute.Jakub Zawadzki4-0/+0
svn path=/trunk/; revision=54637
2014-01-07From Michal Labedzki viaEvan Huus1-1/+7
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9610 USB: Update Standard Descriptor Type numbers to 3.1 Specification svn path=/trunk/; revision=54636
2014-01-07Don't use #defines for errno values, just build the value-string directly. TheyEvan Huus1-274/+134
weren't used and were causing build failures due to redefinition in certain environments. Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9614 svn path=/trunk/; revision=54635
2014-01-07Fix warning when use make packaging on WindowsAlexis La Goutte2-5/+4
warning: unknown variable/constant "{PROGRAM_NAME_PATH_GTK}" detected, ignoring (macro:MUI_FUNCTION_FINISHPAGE:387) svn path=/trunk/; revision=54634
2014-01-07Fix bug #9618: Invalid utf8 causes JSON dissector assertion failure ↵Jakub Zawadzki7-20/+71
"g_utf8_validate" Validate JSON UTF-8 characters, replace with '?' when invalid. svn path=/trunk/; revision=54633
2014-01-07Move defines for helping with UTF-16 surrogate pairs to wsutil/unicode-utils.hJakub Zawadzki3-22/+15
tvbuff version was moved, but with 'or' optimization from packet-json. svn path=/trunk/; revision=54632
2014-01-07The capabilities for dumpcap don't need to be inheritable.Guy Harris1-2/+2
See https://bugzilla.redhat.com/show_bug.cgi?id=1022377 svn path=/trunk/; revision=54630
2014-01-07include config.h at the top of the file.Jörg Mayer2-2/+5
A used parameter was marked unused. svn path=/trunk/; revision=54629
2014-01-07HAVE_PLUGINS was defined twiceJörg Mayer1-3/+0
svn path=/trunk/; revision=54627
2014-01-07Try to get rid of some warnings.Anders Broman2-2/+2
svn path=/trunk/; revision=54626
2014-01-07From Zoltán Lajos Kis:Anders Broman1-1040/+2734
OpenFlow 1.4 dissector: add missing features https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9621 svn path=/trunk/; revision=54625
2014-01-07FixAnders Broman3-10/+0
warning: redundant redeclaration of 'zbee_get_bit_field' warning: redundant redeclaration of 'zbee_aps_cid_names' svn path=/trunk/; revision=54624
2014-01-07Added expired handling to FieldInfo.Stig Bjørlykke3-44/+142
This avoids using free'd pointers (which leads to crash) when assigning FieldInfos to global variables. svn path=/trunk/; revision=54623
2014-01-06Expand a comment.Guy Harris1-2/+2
svn path=/trunk/; revision=54622
2014-01-06In col_fill_in() and col_fill_in_error(), use col_based_on_frame_data()Guy Harris1-105/+73
to determine whether to fill in the column from frame data or not. svn path=/trunk/; revision=54621
2014-01-06Call deciphering and integrity checking appropriately forMartin Mathieson2-6/+30
SecurityModeCommand and SecurityModeResponse. Also show when integrity has been checked and found to be correct. svn path=/trunk/; revision=54620
2014-01-06Try to fix warning: cast discards '__attribute__((const))' qualifier from ↵Anders Broman1-2/+2
pointer target type . svn path=/trunk/; revision=54619
2014-01-06Try to fix warning: initializer element is not computable at load time.Anders Broman1-24/+38
svn path=/trunk/; revision=54618
2014-01-06Fix a typo.Anders Broman1-1/+1
svn path=/trunk/; revision=54617
2014-01-06Try to fix warning: initializer element is not computable at load time.Anders Broman2-20/+35
svn path=/trunk/; revision=54616
2014-01-06Do EEA2 deciphering in-place, from PascalMartin Mathieson1-10/+2
svn path=/trunk/; revision=54615
2014-01-06Omit assignment for not used types.Anders Broman2-239/+72
svn path=/trunk/; revision=54614
2014-01-06Base dissector for fileshark functionality. Intended as the equivalent of ↵Michael Mann4-1/+465
packet-frame for capture files. This is meant as a placeholder for now, so don't take any of the fields/data as being written in stone. svn path=/trunk/; revision=54613
2014-01-05Fix indent (use 4 spaces)Alexis La Goutte1-22/+22
svn path=/trunk/; revision=54612
2014-01-05Fix indent (use 4 spaces) and add modelines and remove trailing whitespaceAlexis La Goutte1-54/+67
svn path=/trunk/; revision=54611
2014-01-05Fix indent (Use tabs) and add modelinesAlexis La Goutte2-45/+68
svn path=/trunk/; revision=54610
2014-01-05Fix indent (use 4 spaces)Alexis La Goutte1-19/+19
svn path=/trunk/; revision=54609
2014-01-05Fix indent (4 spaces) and add modelinesAlexis La Goutte2-44/+68
svn path=/trunk/; revision=54608
2014-01-05Fix build when use PortablesAPPSAlexis La Goutte1-0/+2
svn path=/trunk/; revision=54607
2014-01-05Fix indent (use 4 spaces)Alexis La Goutte1-162/+162
svn path=/trunk/; revision=54606
2014-01-05Enhance NSIS Windows installer (Wireshark Qt support)Alexis La Goutte2-109/+135
* Add Radiobox to choose File Association (Wireshark GTK or Qt) * Add Checkbox to choose Wireshark Qt icon will be installed (Startup, Desktop...) * Fix unistaller (don't remove all icons...) * ... svn path=/trunk/; revision=54605
2014-01-05Enhance NSIS Windows installer (Wireshark Qt support)Alexis La Goutte5-61/+256
* Add Radiobox to choose File Association (Wireshark GTK or Qt) * Add Checkbox to choose Wireshark Qt icon will be installed (Startup, Desktop...) * Fix unistaller (don't remove all icons...) * ... svn path=/trunk/; revision=54604
2014-01-05[Automatic manuf, services and enterprise-numbers update for 2014-01-05]Gerald Combs2-2/+34
svn path=/trunk/; revision=54601
2014-01-05Dissect the remainder of IEC104 integrated totals, including the binary counterEvan Huus1-8/+44
reading and the various flags. Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9596 svn path=/trunk/; revision=54600
2014-01-05use a DVB string for the event text in the short evt descriptorMartin Kaiser1-3/+13
svn path=/trunk/; revision=54599
2014-01-05From Jim Young via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9613Evan Huus1-3/+3
Don't use "rand" as a variable name, it shadows a global in recent MacOSX stdlib.h svn path=/trunk/; revision=54598
2014-01-04Fix a typo.Anders Broman1-1/+1
svn path=/trunk/; revision=54597
2014-01-04Omit assignment for not used types.Anders Broman4-222/+61
svn path=/trunk/; revision=54596
2014-01-04Minor: update 'Conversation' intro to include find_or_create_conversationBill Meier1-4/+4
svn path=/trunk/; revision=54595
2014-01-04(Trivial) explicitely --> explicitlyBill Meier6-11/+11
svn path=/trunk/; revision=54594
2014-01-04Omit assignment for not used types.Anders Broman3-92/+57
svn path=/trunk/; revision=54593