aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2013-02-07Check for QtCore instead of Qt.Jeff Morriss1-1/+1
svn path=/trunk/; revision=47543
2013-02-07Add addition test to reduce false positives for 'ERROR: NO ARRAY: 'Bill Meier1-4/+46
Essentially: Detect when an hf_... var is effictively initialized via the use of proto_registrar_get_id_byname() or proto_get_id_by_filter_name() (instead of proto_register_field_array()). svn path=/trunk/; revision=47542
2013-02-07Use proto_registrar_get_id_byname() instead of proto_registrar_get_byname();Bill Meier2-43/+17
The code is slightly cleaner and the use of proto_registrar_get_id_byname() enables an additional checkhf test to reduce false positives. Also: comment out 2 unused hf_... vars in packet-smb-sidsnooping.c (found by checkhf) svn path=/trunk/; revision=47541
2013-02-07Add 'proto_registrar_get_id_byname()' accessor.Bill Meier2-4/+22
svn path=/trunk/; revision=47540
2013-02-07Add note re 'no problems to date' with VS2012 (VC11).Bill Meier1-0/+2
svn path=/trunk/; revision=47539
2013-02-07Use a variable for the package name we're querying.Jeff Morriss3-29/+31
Add SVN Id. svn path=/trunk/; revision=47538
2013-02-07QPropertyAnimation is needed for Qt builds and isn't present until Qt 4.6.0.Jeff Morriss2-3/+63
Add a (crude) check for the Qt version, making 4.6.0 the minimum. The existing checks in configure.ac should be moved into into this new module. svn path=/trunk/; revision=47537
2013-02-07Add a hack to fix false positive 'unused ...' related to use of ..._add_oui().Bill Meier1-0/+32
svn path=/trunk/; revision=47536
2013-02-07Add proto_tree_set_visible. Also, sort.Chris Maynard1-121/+122
(Ref: http://www.wireshark.org/lists/wireshark-dev/201302/msg00048.html) Q. Should the addition of proto_tree_set_visible be backported to 1.8? svn path=/trunk/; revision=47535
2013-02-07There is no longer any need to link wireshark.desktop and wireshark.png into ↵Jeff Morriss1-2/+1
the rpm/SOURCES directory. svn path=/trunk/; revision=47534
2013-02-07Minor tweaks ...Bill Meier1-1/+3
svn path=/trunk/; revision=47533
2013-02-07Fix a few minor bugs;Bill Meier1-15/+15
Do some small tweaks for readability & consistency. svn path=/trunk/; revision=47532
2013-02-07Perl is required to build Wireshark, add it to BuildRequires.Jeff Morriss1-3/+3
svn path=/trunk/; revision=47531
2013-02-07Add MIME types for more capture file formats Wireshark understands:Jeff Morriss2-2/+31
- AIX iptrace - Novell LANalyzer - HP-UX nettl The magic matching comes from Fedora's magic file, the file extensions from wiretap. (Yes, I just made the application/x-* MIME types up.) svn path=/trunk/; revision=47530
2013-02-07Add magic matching to PCAP, PCAPNG, and snoop files (based on Fedora's magicJeff Morriss1-0/+20
file). That way your files don't need to be named (e.g.) *.pcap for your file manager to know that they should be opened with Wireshark. Add *.ntar to the list of patterns for PCAPNG files. svn path=/trunk/; revision=47529
2013-02-07Overhaul to make this file more useful/up to date. Many changes are based onJeff Morriss1-22/+214
Fedora's .spec file. Changes include: - Create a separate wireshark-gnome package (like Redhat). - Control some things with variables set at the top of the file. - Allow the user to configure how dumpcap is installed. - Allow the user to choose some options including GTK2 or GTK3. - Greatly expand the BuildRequires entries; get the minimum versions of some things from 'configure'. - Install freedesktop files for better (free)desktop integration. svn path=/trunk/; revision=47528
2013-02-06Remove more unnecessary defintions.Gerald Combs2-6/+0
svn path=/trunk/; revision=47527
2013-02-06Remove some unnecessary definitions.Gerald Combs1-3/+0
svn path=/trunk/; revision=47526
2013-02-06C++-ize filter_expressions.h.Gerald Combs1-0/+8
svn path=/trunk/; revision=47525
2013-02-06Fix missing hf field array entries:Bill Meier1-43/+64
- In two cases, add missing entries to hf[]; - Other cases: 'if 0' the packages referring to the missing entries. See https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4842 ERROR: NO ARRAY: packet-h248_annex_e.c: Fixed: hf_h248_pkg_ct hf_h248_pkg_nt Packages 'if 0'd out: hf_h248_pkg_dd hf_h248_pkg_root svn path=/trunk/; revision=47524
2013-02-06Add filter expressions frame entries.Gerald Combs3-0/+9
svn path=/trunk/; revision=47523
2013-02-06Add Filter Expressions^WButton^WShortcut^WBookmark preferences. Gerald Combs25-90/+753
Add comments noting that - We might want to do something different when the bookmark button is pressed. - The display filters (dfilters file) and gui.filter_expressions preferences should be merged. - Many buttons on Qt4 + OS X + unifiedTitleAndToolBarOnMac makes the main window really wide. Add a qstring_strdup convenience routine. Add "disabled" display filter edit icons. Fix up whitespace and descriptions in a couple of places. svn path=/trunk/; revision=47522
2013-02-06Update a comment.Bill Meier1-1/+1
svn path=/trunk/; revision=47521
2013-02-06From Stefan Allers viaEvan Huus1-13/+163
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8282 Extended Negotiation support for the DICOM dissector. svn path=/trunk/; revision=47520
2013-02-06From Pontus Fuchs:Anders Broman1-1/+1
If a monitor interface exists but is down the Wireless toolbar fails to bring it up. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8251 svn path=/trunk/; revision=47519
2013-02-06From Tyson Key:Anders Broman1-4/+36
Support for dissection of MiFare command payloads in PN532 InDataExchange packets. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8291 svn path=/trunk/; revision=47518
2013-02-06From Guy Davies:Anders Broman1-2/+8
Update for RADIUS dictionary for Juniper Networks ERX https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8300 svn path=/trunk/; revision=47517
2013-02-06-Werror needs to be applied only to clean files, not to, for example,Guy Harris1-3/+6
Flex-generated files. Comment it out for now. svn path=/trunk/; revision=47516
2013-02-06Add -Werror if enabled.Guy Harris1-1/+5
Sort EXTRA_DIST. svn path=/trunk/; revision=47515
2013-02-06Only remove Flex-generated files with "nmake distclean", not allGuy Harris1-9/+9
generated files. Remove all generated files with "nmake maintainer-clean". svn path=/trunk/; revision=47514
2013-02-06Don't bother setting XXX_FILES to empty strings.Guy Harris1-16/+0
svn path=/trunk/; revision=47513
2013-02-06strtod() is locale-dependent; use g_ascii_strtod() instead.Guy Harris1-2/+2
If the intent is that floating-point representations be locale-dependent, change this and somehow arrange that this not fail the API test. However, I doubt anybody's actually done anything that uses this code path, given that... ...it was comparing a value against itself. Fix it to use op->v. svn path=/trunk/; revision=47512
2013-02-06Don't run Lemon-generated header files through checkAPI, either (theyGuy Harris3-4/+7
don't have an RCS ID, and they just define a pile of tokens). svn path=/trunk/; revision=47511
2013-02-06Get rid of extra blank line at the end.Guy Harris1-1/+0
svn path=/trunk/; revision=47510
2013-02-06Lemon-generated files get API warnings as well.Guy Harris1-2/+3
Do, however, run the support files through checkAPI. svn path=/trunk/; revision=47509
2013-02-06Fix installation of wireshark.desktop (create the directory first)Jeff Morriss1-2/+2
svn path=/trunk/; revision=47507
2013-02-06Do a bit more splitting and combining of file names, so that we canGuy Harris4-109/+142
avoid running the checkAPI stuff on Flex-generated files. svn path=/trunk/; revision=47506
2013-02-05Rename 'hf_h248_package_3GUP' to 'proto_h248_package_3GUP'Bill Meier1-4/+4
in keeping with the usual convention for naming the variable used to store the return value from proto_register_protocol(). (Fixes checkhf false positive). svn path=/trunk/; revision=47505
2013-02-05mate_parser.obj depends on mate_grammar.h, as it's built fromGuy Harris1-1/+6
mate_parser.c and mate_parser.c includes mate_grammar.h, so we need to make sure mate_grammar.h is built before we try to compile mate_parser.c. However, mate_parser.obj isn't built by trying to compile mate_grammar.h, so don't use $? in the $(CC) line, as that will cause it to try to compile *all* the dependencies. Add a comment to explain why mate_parser_lex.h depends on mate_parser.c. svn path=/trunk/; revision=47504
2013-02-05Comment out code which will never be executed in its current state.Bill Meier1-5/+6
svn path=/trunk/; revision=47503
2013-02-05Put NODIST_ at the beginning of macros containing NODIST, parallelingGuy Harris5-51/+203
the nodist_ convention for Automake variables. Regularize the lists of source files, dividing them according to several attributes. Build composite lists in a plugins/Makefile.common.inc file, to be included by plugin Makefile.common files, and use the composite lists as appropriate in Makefile.am and Makefile.nmake. svn path=/trunk/; revision=47502
2013-02-05remove some unnecessary if(tree) checksMartin Kaiser1-52/+36
svn path=/trunk/; revision=47501
2013-02-05Remove an unneeded set of parens in a macro definition;Bill Meier1-1/+1
Fixes checkhf false positive (when scanning the preprocessed dissector source file). svn path=/trunk/; revision=47500
2013-02-05a DVB-CI session number is not globally unique, it's only unique perMartin Kaiser2-6/+9
transport connection, so it's not a good choice for a circuit id use (session number|transport connection id) as circuit id svn path=/trunk/; revision=47499
2013-02-05Export dissect_japan_isup_additonal_user_cat()Anders Broman2-1/+2
svn path=/trunk/; revision=47497
2013-02-05Export TBCD-STRING.Anders Broman3-51/+53
svn path=/trunk/; revision=47496
2013-02-05Add missing hf[] entries found by checkhf.Bill Meier1-1/+19
ERROR: NO ARRAY: packet-fmp_notify.c, hf_fmp_extentList_len ERROR: NO ARRAY: packet-fmp_notify.c, hf_fmp_extent_state ERROR: NO ARRAY: packet-fmp_notify.c, hf_fmp_numBlks ERROR: NO ARRAY: packet-fmp_notify.c, hf_fmp_startOffset ERROR: NO ARRAY: packet-fmp_notify.c, hf_fmp_volID svn path=/trunk/; revision=47494
2013-02-05Add missing hf[] entries found by checkhf.Bill Meier1-0/+9
ERROR: NO ARRAY: packet-9p.c, hf_9P_dm_exec_group ERROR: NO ARRAY: packet-9p.c, hf_9P_dm_read_group ERROR: NO ARRAY: packet-9p.c, hf_9P_dm_write_group svn path=/trunk/; revision=47493
2013-02-05According to 3GPP TS 32.299 version 10.7.0 Release 10 AVP 846 isAnders Broman1-2/+2
7.2.36 CG-Address AVP The CG-Address AVP (AVP code 846) is of type Address and holds the IP-address of the charging gateway. svn path=/trunk/; revision=47492
2013-02-05Don't forget the .c files that we *don't* distribute.Guy Harris1-1/+8
svn path=/trunk/; revision=47491