aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2012-10-17"Wireshark", in this context, mainly means "libwireshark"; preferencesGuy Harris1-8/+1
should be shared by TShark and Wireshark, so the preference directory path should be independent of the program name. Program-specific or GUI-toolkit-specific preferences should be kept in separate files, or ignored but preserved by programs to which they don't apply. svn path=/trunk/; revision=45618
2012-10-17Cleanup:Bill Meier1-119/+105
- Revmove 'if (tree...)'; col_...() shouldn't be called under same; - Add an XXX comment; - Remove not req'd #include <epan/prefs.h>; - Address cppcheck msg: "Clarify calculation precedence for >> and ?"; - Localize certain variables & remove unneeded initializers; - Do some whitespace changes. svn path=/trunk/; revision=45617
2012-10-17(Trivial) remove trailing whitespace.Bill Meier1-9/+9
svn path=/trunk/; revision=45616
2012-10-17Read the program name rather than hardcoding it.Anders Broman1-1/+8
svn path=/trunk/; revision=45615
2012-10-17fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7869Martin Kaiser1-1/+1
make tpiLen a guint such that it can store 2 + tvb_get_guint8(...) without overflow svn path=/trunk/; revision=45614
2012-10-17Fix some UM sequence analysis issues.Martin Mathieson1-22/+22
svn path=/trunk/; revision=45613
2012-10-17#include <gtk/gtk.h> not req'd; Fixes compile errorsBill Meier2-2/+0
svn path=/trunk/; revision=45612
2012-10-17The first 4 bytes of the Prism header are, apparently, a "message code",Guy Harris1-66/+89
and it apparently either has the value 0x00000044 or 0x00000041. If those bytes aren't the magic number for an AVS header and aren't one of those "message code" values, assume there's no Prism header, just an 802.11 frame - that fixes at least one capture where some packets have AVS radio headers and other packets have no radio header. Note that this might also let us handle big-endian Prism headers (see which byte order the message code is in, and assume everything else is in the same byte order). Display the message code in hex, not decimal. svn path=/trunk/; revision=45609
2012-10-16Change the "Bytes" column to "Size" and make its values human readable.Gerald Combs1-4/+8
svn path=/trunk/; revision=45608
2012-10-16Set svn:eol-style property to LF.Bill Meier0-0/+0
It seems that cppcheck requires the includes file have *nix stle line-endings. (It also appears that this is *not* required for the suppressions list file). svn path=/trunk/; revision=45607
2012-10-16Move the DICOM, HTTP, and SMB object export code to the ui directory.Gerald Combs11-89/+147
svn path=/trunk/; revision=45606
2012-10-16Use local variable, local one is also used later by epan_dissect_run().Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=45605
2012-10-16Don't try to use a non-existant pseudo_header variable.Evan Huus1-1/+1
svn path=/trunk/; revision=45604
2012-10-16Second try to fix wslua building.Jakub Zawadzki1-2/+3
svn path=/trunk/; revision=45603
2012-10-16Try to fix building wslua.Jakub Zawadzki1-1/+2
svn path=/trunk/; revision=45602
2012-10-16Add wtap_pseudo_header union to wtap_pkthdr structure.Jakub Zawadzki77-360/+369
Use pkthdr instead of pseudo_header as argument for dissecting. svn path=/trunk/; revision=45601
2012-10-16Add dissection of ENVELOPE event download and timer expirationPascal Quantin1-1/+8
svn path=/trunk/; revision=45600
2012-10-16fix some more cases where tvb_length_remaining() is assignedMartin Kaiser1-3/+3
to an unsigned int svn path=/trunk/; revision=45599
2012-10-16make the variable that holds tvb_length_remaining() a signed integerMartin Kaiser1-1/+1
svn path=/trunk/; revision=45598
2012-10-16Dissect a few more command qualifiersPascal Quantin1-0/+26
svn path=/trunk/; revision=45597
2012-10-16Add an include.Gerald Combs1-0/+2
svn path=/trunk/; revision=45596
2012-10-16Fix dissection of BER-TLV and COMPREHENSION-TLV length and COMPREHENSION-TLV tagPascal Quantin2-8/+45
svn path=/trunk/; revision=45595
2012-10-16Use topic_action instead of topic_cb for the Windows file dialogs. MoveGerald Combs10-87/+63
the common Qt help code to wireshark_application.cpp. svn path=/trunk/; revision=45594
2012-10-16Remove svn:executable propertyBill Meier2-0/+0
svn path=/trunk/; revision=45593
2012-10-16Change svn:mime-type to image/pngBill Meier0-0/+0
svn path=/trunk/; revision=45592
2012-10-16General cleanup:Bill Meier1-650/+648
- Calls to expert...() and col_...() should not be under 'if (tree)' - Move proto_reg_handoff...() to the end of the file as per convention; - Localize a few variables - Fix some whitespace (e.g., convert what appear to be '4 space tabs' to spaces) svn path=/trunk/; revision=45591
2012-10-16Remove some no-longer-needed SSL dummy routines.Gerald Combs1-20/+0
svn path=/trunk/; revision=45590
2012-10-16Move common SSL key export routines to ui/ssl_key_export.[ch]. Make theGerald Combs10-89/+224
exported keys a gchar *. Implement SSL key exports in the Qt UI. Remove some no-longer-necessary packet-ssl*.h includes. Change lastOpenDir().absolutePath() to .canonicalPath(). Get rid of the "Export As PostScript" action. svn path=/trunk/; revision=45589
2012-10-16Fix a copy/paste errorPascal Quantin1-7/+7
svn path=/trunk/; revision=45588
2012-10-16Add value_string for PDP TypePascal Quantin1-1/+10
svn path=/trunk/; revision=45587
2012-10-16From "msp":Anders Broman1-2/+4
'*' wildcard in the 'Src IP' or 'Dest IP' field of the ESP SA dialog does not work https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7866 svn path=/trunk/; revision=45585
2012-10-16Enhancements to DNP3.0 Control Code Dissection ↵Michael Mann1-9/+11
(https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7865) minor updates to checked in patch (from rev 45583) svn path=/trunk/; revision=45584
2012-10-16From Benjamin Stocks:Anders Broman1-31/+54
Enhancements to DNP3.0 Control Code Dissection. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7865 svn path=/trunk/; revision=45583
2012-10-16- Use PROGRAM_NAME in the unistaller too.Anders Broman2-19/+25
- Make it possible to set PROGRAM_NAME in environment. - Update the comment about setting program name it *should* work now. svn path=/trunk/; revision=45582
2012-10-16Merge AUTHORS entry for Paul Erkkila.Jakub Zawadzki1-4/+1
svn path=/trunk/; revision=45581
2012-10-16Fix dissection of Text String data objectPascal Quantin1-7/+19
svn path=/trunk/; revision=45577
2012-10-16Use PROGRAM_NAME in more places.Anders Broman1-0/+1
Missing fro previous commit. svn path=/trunk/; revision=45576
2012-10-16Use PROGRAM_NAME in more places.Anders Broman2-32/+31
svn path=/trunk/; revision=45575
2012-10-16Fix In file included from export_dissection_dialog.cpp:24:0: ↵Alexis La Goutte1-0/+1
export_dissection_dialog.h:66:34: error: field 'export_type_map_' has incomplete type export_dissection_dialog.cpp: In constructor 'ExportDissectionDialog::ExportDissectionDialog(QWidget*, capture_file*, export_type_e)': export_dissection_dialog.cpp:80:5: error: 'export_type_map_' was not declared in this scope export_dissection_dialog.cpp: In member function 'void ExportDissectionDialog::exportTypeChanged(QString)': export_dissection_dialog.cpp:214:20: error: 'export_type_map_' was not declared in this scope Missing <QMap> include in export_disssection_dialog.h (in my Ubuntu Box with Qt 4.7.4 ?) svn path=/trunk/; revision=45574
2012-10-16Remove spurious trailing '%' in format [-Werror=format]Anders Broman1-1/+1
svn path=/trunk/; revision=45573
2012-10-16replace proto_tree_add_text with filterable items and expert info to get a ↵Michael Mann6-463/+568
few dissectors off of the checkAPIs.pl "naughty" list svn path=/trunk/; revision=45572
2012-10-16Include config.h so that the necessary HAVE_HEADER_H macros are defined on theEvan Huus1-0/+2
appropriate platforms. svn path=/trunk/; revision=45571
2012-10-16Comment out some more unused code to fix a few gcc errors.Evan Huus1-3/+5
svn path=/trunk/; revision=45570
2012-10-16Use $${INSTALL_DIR} instead of wireshark-gtk2.Gerald Combs1-1/+1
svn path=/trunk/; revision=45569
2012-10-16Fix includes.Gerald Combs1-1/+6
svn path=/trunk/; revision=45568
2012-10-16Add "Export Packet Bytes".Gerald Combs5-7/+164
svn path=/trunk/; revision=45567
2012-10-15(try to) fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7862Martin Kaiser1-2/+8
tvb_length_remaining() may return -1 if that happens in dissect_rdp_fields(), return an error the caller that calls dissect_rdp_fields() from a for loop detects the error and exits (others should handle the error as well, this is missing for now) svn path=/trunk/; revision=45566
2012-10-15From Alexander KoeppeMartin Kaiser1-32/+44
use inet_pton() for address parsing in FTP's EPRT command support IPv6 addresses https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7729 svn path=/trunk/; revision=45565
2012-10-15Add help buttons. Ifdef out some code on Windows.Gerald Combs8-9/+64
svn path=/trunk/; revision=45564
2012-10-15Dissect more Application Toolkit commandsPascal Quantin1-7/+219
svn path=/trunk/; revision=45563